add unique index 注意事项

网友投稿 580 2022-10-10

add unique index 注意事项

add unique index 注意事项

给业务添加唯一索引之前,必须核对当前的数据是否违反唯一索引约束:

检测:

select count( distinct app_id,count_date,cluster,priority) from events ; select count( *) from events ; select app_id,count_date,cluster,priority ,count(*) from events group by app_id,count_date,cluster,priority having count(*) >1 limit 20;

违反约束:

alter table events add unique index uk_app(app_id,count_date,cluster,priority); ERROR 1062 (23000): Duplicate entry '2882303761517233197-2020-09-21-ALL-1' for key 'uk_id'

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:int(5)
下一篇:karafka 基于Apache Kafka的Ruby和Rails应用程序开发框架
相关文章

 发表评论

暂时没有评论,来抢沙发吧~