我有点难以理解为什么我的输出条款无法奏效。我做傻事吗?我一直收到错误," '输出'附近的语法不正确。"
--Create the table to insert into, with identity
create table #testtab(
businessno int identity(1,1),
businessname varchar(100),
businessref varchar(50),
moduser varchar(10),
moddate datetime,
modtype char(1)
);
--Insert statement with output to capture inserted id numbers
insert into #testtab (businessname, businessref, moduser, moddate, modtype)
output inserted.businessno,inserted.businessref
values('asd','asd','asd',getdate(),'x');
这是在2008R2。
谢谢, 丹
答案 0 :(得分:3)