En procedur kan inte returnera en tabell som sådan. Du kan dock välja från en tabell i en procedur och dirigera den till en tabell (eller tabellvariabel) så här:
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