mysql 查询表中 字段没有重复值的数据

dxlqiu 2012-08-30 04:42:48
比如说 有个表
id title time
1 a 20120304
2 a 20121314
3 b 20121314
4 c 20121111
5 d 20121221
6 c 20121111


第一种想要的结果:
想查出title没有重复的数据 有没有办法
想要结果 为
id title time
3 b 20121314
5 d 20121221


第二种想要的结果
第一种多加个条件,如果title相同 但是time也相同 那也显示出这条数据(仅一条)
id title time
3 b 20121314
4 c 20121111

5 d 20121221

大家有没有好的办法
...全文
174 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
dxlqiu 2012-08-30
  • 打赏
  • 举报
回复
Ok 谢谢 各位 大侠们
not exists效率确实挺高的
比not in好多了。好了 结贴了
wwwwb 2012-08-30
  • 打赏
  • 举报
回复
1
select * from tt a where not exists(select 1 from tt where a.title=title and a.id<>id)
2



select * from tt a where exists(select 1 from tt where a.title=title and a.time=time and a.id<id)
union
select * from tt a where not exists(select 1 from tt where ((a.title=title and a.id<>id)
or
(a.title=title and a.time=time and a.id<id)))
dxlqiu 2012-08-30
  • 打赏
  • 举报
回复
谢谢楼上的两位。。 本来我是用字段not in 来查询的 但是 发现速度太慢了 2W多条数据 就花了1秒多了
貌似用not exists 加个select 的话 速度是不是很会很慢呀。。
foolbirdflyfirst 2012-08-30
  • 打赏
  • 举报
回复
这类问题似乎此版很多,你不妨搜索下

mysql> select * from tb;
+----+-------+----------+
| id | title | time |
+----+-------+----------+
| 1 | a | 20120304 |
| 2 | a | 20121314 |
| 3 | b | 20121314 |
| 4 | c | 20121111 |
| 5 | d | 20121221 |
| 6 | c | 20121111 |
+----+-------+----------+
6 rows in set (0.00 sec)

mysql> select * from tb a where not exists(select id from tb b where b.title=a.title and b.id<>a.id);
+----+-------+----------+
| id | title | time |
+----+-------+----------+
| 3 | b | 20121314 |
| 5 | d | 20121221 |
+----+-------+----------+
2 rows in set (0.00 sec)

mysql> select * from tb a where not exists(select id from tb b where b.title=a.title and b.id<>a.id and b.time<>a.time) group by a.title;
+----+-------+----------+
| id | title | time |
+----+-------+----------+
| 3 | b | 20121314 |
| 4 | c | 20121111 |
| 5 | d | 20121221 |
+----+-------+----------+
3 rows in set (0.00 sec)

dxlqiu 2012-08-30
  • 打赏
  • 举报
回复
有么有帮忙的呀。。。。。
小小小小周 2012-08-30
  • 打赏
  • 举报
回复
root@localhost : test 04:59:19>select * from tes;
+------+-------+----------+
| id | title | time |
+------+-------+----------+
| 1 | a | 20120304 |
| 2 | a | 20121314 |
| 3 | b | 20121314 |
| 4 | c | 20121111 |
| 5 | d | 20121221 |
| 6 | c | 20121111 |
+------+-------+----------+
6 rows in set (0.00 sec)

root@localhost : test 04:59:22>select a.* from tes a,(select title,count(*) from tes group by title having count(*)=1) b where a.title=b.title;
+------+-------+----------+
| id | title | time |
+------+-------+----------+
| 3 | b | 20121314 |
| 5 | d | 20121221 |
+------+-------+----------+
2 rows in set (0.00 sec)

root@localhost : test 04:59:47>select id,title,time from tes group by title,time;
+------+-------+----------+
| id | title | time |
+------+-------+----------+
| 1 | a | 20120304 |
| 2 | a | 20121314 |
| 3 | b | 20121314 |
| 4 | c | 20121111 |
| 5 | d | 20121221 |
+------+-------+----------+
5 rows in set (0.00 sec)

56,679

社区成员

发帖
与我相关
我的任务
社区描述
MySQL相关内容讨论专区
社区管理员
  • MySQL
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧