发布网友 发布时间:2022-04-30 08:10
共6个回答
懂视网 时间:2022-04-30 12:31
into #t from dbo.Split(‘12,12,1,2‘,‘,‘)然后用 临时表 #t 关联 相应的表
select * into #t2 from Loanee as a left join #t b on a.applicationid=b.name
select * from #t2
sql存储过程传入ID集合,和临时表的使用
标签:
热心网友 时间:2022-04-30 09:39
可以使用如下方法:
declare @sql varchar(2000)其中#tmp就是临时表,整段代码的意思就是将student表的数据全部插入到#tmp这个临时表中。
热心网友 时间:2022-04-30 10:57
在存储过程中 是不可以创建临时表的...热心网友 时间:2022-04-30 12:32
sql server:热心网友 时间:2022-04-30 14:23
在SQL SERVER中热心网友 时间:2022-04-30 16:31
--申明