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 に答える