I have function that have been colled in stored procedure. The function returns a table and have to fill another table. Maybe this queistion might be seems a little naive but im a newer in T-SQL. Thank you in advance.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Just use the function as though it was a table. You can:

Select * From dbo.MyFunction()

If you need to pass a value from the outer query into the UDF, use Cross Apply

like this:

 Select * From sys.dm_exec_requests ser 
 Cross Apply sys.dm_exec_sql_text(ser.sql_handle)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.