0

我正在尝试在我的表中进行多重插入,但出现错误。

我的查询是:

insert into tbl_temp(e_id, t_id, status, type)
select id from tbl_basicinfo where emp_id = 91 and employee_id <> 7119, 289, 1, 2

它给出了错误:

消息 102,级别 15,状态 1,第 2 行 ',' 附近的语法不正确。

问题是什么?

谢谢。

4

1 回答 1

5
insert into tbl_temp(e_id, t_id, status, type)
select id, 289, 1, 2 from tbl_basicinfo where emp_id = 91 and employee_id <> 7119
于 2012-08-17T18:59:38.657 回答