影子博客

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

insert into tableA
select * from tableB b where not exists(select 1 from tableA a where a.id = b.id)

insert into tableA
select * from tableB b
left join tableA a on a.id = b.id
where a.id is null

posted on 2016-05-26 13:51  影子博客  阅读(410)  评论(0编辑  收藏  举报