日期:2014-05-18 浏览次数:20347 次
insert into t2 select * from t1 not exists (select 1 from t2)
------解决方案--------------------
insert t2 select * from t1 except select * from t2 --该种写法 两表字段数量必须相等(如果有自增ID ,最好将具体的列 列出) --或者 insert t2 select * from t1 not exists ( select * from t2 where t2.订单号=t1.订单号 and t2.金额=t1.金额 and t2.流水号=t1.流水号)
------解决方案--------------------
excepte这个关键字你到联机丛书查查能不能用。not exists的效率没这个好。具体用法忘了