Friends,
I have a Function to returns a table. I can execute a function like following:
SELECT *
FROM dbo.FN_Function(1)
I Want to Know if i can call a function in other select. For example:
SELECT ID_Table,
dbo.FN_Function(ID_Table)
FROM [Table]
I need to do this but I can't.
Someone can help me?