mysql设置某字段不能重复问题
吾爱主题
阅读:154
2024-04-01 23:21:39
评论:0
mysql设置某字段不能重复
?1 | alter table novel.novelsort add unique ( name ); |
novel是数据库 novelsort是表名 name是字段名
mysql查询某个字段不重复的所有记录
?1 2 3 | select a.id,a.ip,a.creationTime from myTable a right join ( select max (id) id from myTable group by ip) b on b.id = a.id where a.id is not null |
或者
?1 2 3 | select a.* from myTable a right join ( select max (id) id from myTable group by ip) b on b.id = a.id where a.id is not null |
表名为myTable
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/rj2017211811/article/details/88755932
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。