I have a table valued function that returns a table. When I try to JOIN
the table-valued function with another table I don't get any results, but when I copy the result of the function into an actual table and do the same join, then I get expected results.
The query looks something like this:
Select *
From myTable
INNER JOIN fn_function(@parm1, @param2)
ON ....
All up I have about 4 such queries and each one has slighly different function, but all the functions produce the same table but different data. For some of these queries the INNER JOIN
works, but for others it does not.
Any suggesting why this happens?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…