insert into table_a a
select * from table_b b
left join table_a a2 on b.id=a2.id
where a2.id is null
增量采集
最新推荐文章于 2025-02-21 15:28:00 发布
insert into table_a a
select * from table_b b
left join table_a a2 on b.id=a2.id
where a2.id is null