私は何かしたいです
select * from tvfHello(@param) where @param in (Select ID from Users)
これを行うには、CROSS APPLYを使用する必要があります
select
f.*
from
users u
cross apply dbo.tvfHello(u.ID) f
以下は、AdventureWorksデータベースで機能します。
CREATE FUNCTION dbo.EmployeeByID(@employeeID int)
RETURNS TABLE
AS RETURN
(
SELECT * FROM HumanResources.Employee WHERE EmployeeID = @employeeID
)
GO
DECLARE @employeeId int
set @employeeId=10
select * from
EmployeeById(@employeeId)
WHERE @EmployeeId in (SELECT EmployeeId FROM HumanResources.Employee)
クリストフの専門知識に基づいて、たとえば次のような複数の値を取得しようとしている場合は、このサンプルを更新しました。
select *
from HumanResources.Employee e
CROSS APPLY EmployeeById(e.EmployeeId)
WHERE e.EmployeeId in (5,6,7,8)
それは私には大丈夫に見えますが、常にあなたの関数の前にスキーマ(通常はdbo)を付けるべきです。したがって、クエリは次のようになります。
SELECT * FROM dbo.tvfHello(@param) WHERE @param IN (SELECT ID FROM Users)