Viewing post 1 (of 2 total)
Find the solution. Can do the same using functions:
CREATE FUNCTION test_0 ()
RETURNS @t table (ID int)
as
begin
insert into @t values (1),(2),(3)
RETURN
end
go
CREATE FUNCTION test_1 ()
RETURNS @t1 table (ID int)
insert...
June 9, 2011 at 7:23 am
#1336272