I have following function which returns Table .
create Function FN(@Str varchar(30))
returns
@Names table(name varchar(25))
as
begin
while (
You can execute it just as you select a table using SELECT
clause. In addition you can provide parameters within parentheses.
Try with below syntax:
SELECT * FROM yourFunctionName(parameter1, parameter2)
A TVF (table-valued function) is supposed to be SELECTed FROM. Try this:
select * from FN('myFunc')