J
jsdj007
Unregistered / Unconfirmed
GUEST, unregistred user!
我想将SELECT语句作为参数传递给存储过程中的临时表,语句如下:
declare @a varchar(100)
set @a='select * from Units_Info'
select * into #table from + @a
执行报错:第 3 行: '+' 附近有语法错误。
请教各位高手,应如何编写这个SQL语句,谢谢!
declare @a varchar(100)
set @a='select * from Units_Info'
select * into #table from + @a
执行报错:第 3 行: '+' 附近有语法错误。
请教各位高手,应如何编写这个SQL语句,谢谢!