我做了如下插入声明:
Insert into table2 (host, ip, domain, statusnew)
select hostname, ip, domain, "True" from table1 t1, table2 t2
where t1.status = "Done"
and t2.statusnew not regexp "True"
limit 10
;
我已经补充了声明 t2.statusnew not regexp "True"
只是为了确保没有重复插入。但是,它正在添加重复的行。
如何确保没有重复条目?
2条答案
按热度按时间bakd9h0s1#
您好您可以使用忽略关键字,以避免重复记录。比如:
在雇员(姓、名)值('rinku','gohel')中插入ignore;
jmp7cifd2#