- 新建一个表并备份旧表数据
create table table_new select * from table_old
- 获取两个表之间的差集
select * from table_1 where id not in (select id from table_2 )
欢迎分享,转载请注明来源:内存溢出
create table table_new select * from table_old
select * from table_1 where id not in (select id from table_2 )
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)