Một thủ tục không thể trả về một bảng như vậy. Tuy nhiên, bạn có thể chọn từ một bảng trong một thủ tục và hướng nó vào một bảng (hoặc biến bảng) như sau:
create procedure p_x
as
begin
declare @t table(col1 varchar(10), col2 float, col3 float, col4 float)
insert @t values('a', 1,1,1)
insert @t values('b', 2,2,2)
select * from @t
end
go
declare @t table(col1 varchar(10), col2 float, col3 float, col4 float)
insert @t
exec p_x
select * from @t