How to pass parameters to Table Valued Function

后端 未结 3 1096
甜味超标
甜味超标 2021-02-05 04:57

I want to do something like

select * from tvfHello(@param) where @param in (Select ID from Users)
相关标签:
3条回答
  • 2021-02-05 04:59

    You need to use CROSS APPLY to achieve this

    select 
        f.* 
    from 
        users u
        cross apply dbo.tvfHello(u.ID) f
    
    0 讨论(0)
  • 2021-02-05 05:05

    That looks ok to me, except that you should always prefix your functions with their schema (usually dbo). So the query should be:

    SELECT * FROM dbo.tvfHello(@param) WHERE @param IN (SELECT ID FROM Users)
    
    0 讨论(0)
  • 2021-02-05 05:21

    The following works in the AdventureWorks database:

    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)
    

    EDIT

    Based on Kristof expertise I have updated this sample if your trying to get multiple values you could for example do:

    select * 
    from HumanResources.Employee e
    CROSS APPLY  EmployeeById(e.EmployeeId)
    WHERE e.EmployeeId in (5,6,7,8)
    
    0 讨论(0)
提交回复
热议问题