我需要 ansi sql 中这个等价物的配置单元语法
insert into tablea
(id)
select id
from tableb
where id not in (select id from tablea)
所以 tablea 不包含重复项,只插入来自 tableb 的新 id。
我需要 ansi sql 中这个等价物的配置单元语法
insert into tablea
(id)
select id
from tableb
where id not in (select id from tablea)
所以 tablea 不包含重复项,只插入来自 tableb 的新 id。