SQL多插入

时间:2012-08-17 18:57:35

标签: sql-server-2008

我正在尝试在我的表格中多次插入,但收到错误。

我的查询是:

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

它给出错误:

Msg 102,Level 15,State 1,Line 2 ','。

附近的语法不正确

问题是什么?

感谢。

1 个答案:

答案 0 :(得分: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