使用mysql的disctinct group by查询不重复记录
程序员文章站
2023-11-04 19:29:04
有个需求,一直没有解决,在google上找了半天,给出的方案没有一个能用了,最后鬼使神差搞定了。 是这样的,假设一个表: id &nb...
有个需求,一直没有解决,在google上找了半天,给出的方案没有一个能用了,最后鬼使神差搞定了。
是这样的,假设一个表:
id f_id value
1 2 a
2 2 b
3 5 c
4 9 c
5 9 a
6 6 d
id f_id value
1 2 a
2 2 b
3 5 c
4 9 c
5 9 a
6 6 d
id是主键,f_id是外键,我需要获得不重复的外键f_id的数据,如果用group by 或者distinct很容易搞定
select f_id from table group by f_id
select distinct f_id from table
但如果再想在结果中得到id值的话,不管怎么都会乱。比如我想在结果中用id进行排序,诸如”select distinct f_id, id from table order by id desc”完全白费。在google上看了大量的例子,发现需要在select中对id做手脚,让mysql知道除了f_id外,对id应该进行如何的操作。诸如max, min, avg,sun..都是可以的,于是变成以下的代码就搞定了……
select f_id, max(id) as id from table group by f_id order by id desc
搞定,网上有个文章很接近答案,但是他没有”as id”,导致在我的mysql中执行结果有误,呵呵。
是这样的,假设一个表:
id f_id value
1 2 a
2 2 b
3 5 c
4 9 c
5 9 a
6 6 d
id f_id value
1 2 a
2 2 b
3 5 c
4 9 c
5 9 a
6 6 d
id是主键,f_id是外键,我需要获得不重复的外键f_id的数据,如果用group by 或者distinct很容易搞定
select f_id from table group by f_id
select distinct f_id from table
但如果再想在结果中得到id值的话,不管怎么都会乱。比如我想在结果中用id进行排序,诸如”select distinct f_id, id from table order by id desc”完全白费。在google上看了大量的例子,发现需要在select中对id做手脚,让mysql知道除了f_id外,对id应该进行如何的操作。诸如max, min, avg,sun..都是可以的,于是变成以下的代码就搞定了……
select f_id, max(id) as id from table group by f_id order by id desc
搞定,网上有个文章很接近答案,但是他没有”as id”,导致在我的mysql中执行结果有误,呵呵。
上一篇: 抗日名将李品仙为什么不受人喜欢 为什么说李品仙是墙头草
下一篇: AE结合Ps打造梦幻的烟雾光线效果
推荐阅读
-
使用mysql的disctinct group by查询不重复记录
-
使用distinct在mysql中查询多条不重复记录值的解决办法
-
mysql为什么不推荐在大数据量的情况下使用join连接查询
-
MySQL递归查询_函数语法检查_GROUP_CONCAT组合结果集的使用
-
使用mysql的disctinct group by查询不重复记录
-
MySQL高级查询 之 与 Group By 集合使用的函数 和 关键字_MySQL
-
mysql一个简单查询中的group by和order by的使用_MySQL
-
MySQL高级查询 之 与 Group By 集合使用的函数 和 关键字_MySQL
-
使用distinct在mysql中查询多条不重复记录值的解决办法
-
MySQL高级查询之与Group By集合使用的函数和关键字_MySQL