mysql去重,不用distinct和group by
程序员文章站
2022-05-17 22:40:12
...
select * from t_risk_log t where claim_no='0000626040'
根据claim_no和response_time去重,sql如下
select * from t_risk_log t ,(select claim_no,max(response_time) response_time from t_risk_log where claim_no='0000626040' group by claim_no ) m
where t.response_time=m.response_time and t.claim_no=m.claim_no
上一篇: Redis架构——有哨兵的主从模式
推荐阅读
-
Mysql中distinct与group by的去重方面的区别
-
Hive中的去重 :distinct,group by与ROW_Number()窗口函数
-
Java8-Stream流操作List去重distinct、和指定字段去重(完整实例讲解)
-
MySQL去重该使用distinct还是group by?
-
distinct在sqlserver中不能解决的去重问题max groupby_MySQL
-
distinct在sqlserver中不能解决的去重问题max groupby_MySQL
-
mysql distinct 单表多字段去重统计不重复个数
-
Oracle中distinct和group by去重性能的比较
-
mysql distinct和group by以及having用法
-
mysql去重,不用distinct和group by