0

我正在尝试执行 OLE DB 命令,仅当同一个表中不存在主键字段时才向我的表中添加行。这是我到目前为止所拥有的:

insert into employee
   (employee_id, first_name, middle_initial, last_name)   /*fields of the employee table*/
   values (employeedID, firstName, mInitial, lastName)    /*columns from my input       */

 /* only insert into the table where employee_ID is not already in the table */
 where ((select employee_id from employee where employee_id = employeeID) = NULL);  

基本上我想要的只是一个条件插入语句。

谢谢!

4

1 回答 1

1

我不确定您的包是如何设置的,但您可能会考虑使用没有任何约束的临时表。首先将所有记录插入其中,然后在最后做出如下声明:

insert into employee (employee_id, first_name, middle_initial, last_name) 
select t.employee_id, t.first_name, t.middle_initial, t.last_name
from temp_employee AS t
left join employee ON t.employee_id = employee.employee_id
where employee.employee_id is null
于 2012-06-15T13:20:09.917 回答