2011/05/10

[T-SQL] 將預存程序 (Stored Procedure) 撈出來的資料指定給 table 變數

今天不小心把這篇文章刪掉,重新寫一次

declare @MyTable table
(
@SeqNo int
@Name nvarchar(200)
)

insert into @MyTable exec dbo.usp_SpName @Param1,@Param2


也可以這樣寫
select A.*
into #mytable
from (select * from ProductTable) as A

0 Comments:

張貼留言