How to execute Table valued function

前端 未结 2 1536
醉梦人生
醉梦人生 2020-12-28 11:18

I have following function which returns Table .

create Function FN(@Str varchar(30))
  returns
  @Names table(name varchar(25))
  as 
  begin 

      while (         


        
2条回答
  •  感动是毒
    2020-12-28 11:58

    A TVF (table-valued function) is supposed to be SELECTed FROM. Try this:

    select * from FN('myFunc')
    

提交回复
热议问题