奥礼网
新记
怎么样在存储过程中声明一个临时表,然后在从另一张表中查询数据后依次插入新表中
如题所述
举报该文章
相关建议 2009-06-22
用全局临时表
create procedure P
as
if object_id('Tempdb..##') is not null
drop table ##
create table ##(ID int)
go
exec p
insert ## select 1
select * from ##
温馨提示:内容为网友见解,仅供参考
当前网址:
https://aolonic.com/aa/a513ggw4d.html
其他看法
第1个回答 2009-06-22
像你这样,不需要先声明,再使用,直接可以用,比如:
select * into #tmp from tb
第2个回答 2009-06-22
这是完全可以的,非常正常的
有问题hi我
第3个回答 2009-06-22
不可以
相似回答
大家正在搜