如何解决“在不存在的地方插入”是否包括在同一插入处插入的记录
表1-ID,名称,地址,项目,日期,价格...
表2-ID,名称,项目
表2不能有重复的行(而表1可能有一些)。
通过使用“在不存在的地方插入”,插入其中的包含行本身会插入吗?
insert into table2 (id,name,item)
select id,item
from table1
where not exists
(select 1 from table2 where table2.id=table1.id and table2.name=table1.name and table2.item=table1.item)
解决方法
不。可以使用select distinct
处理此问题:
insert into table2 (id,name,item)
select distinct id,item
from table1
where not exists
(select 1 from table2 where table2.id=table1.id and table2.name=table1.name and table2.item=table1.item) ;
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。