Mysql

关注公众号 jb51net

关闭
首页 > 数据库 > Mysql > mysql设置某字段不能重复

mysql设置某字段不能重复问题

作者:I like study.

这篇文章主要介绍了mysql设置某字段不能重复问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

mysql设置某字段不能重复

alter table novel.novelsort add unique(name);

novel是数据库 novelsort是表名 name是字段名

mysql查询某个字段不重复的所有记录

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

或者

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

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文