Popular Posts

SQLblog.com - The SQL Server blog spot on the web

Monday, November 27, 2017

pass table param

SQLServerCentral » Latest topics
pass table param
How do you pass a table like this?
[code language="sql"];WITH TestTbl AS
(
    SELECT * FROM myTable
)

CREATE FUNCTION Ex( TestTbl TableType READONLY)
RETURNS VARCHA

No comments: