我正在尝试在我的表格中多次插入,但收到错误。
我的查询是:
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 ','。
附近的语法不正确问题是什么?
感谢。
答案 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