最后出现GROUP BY - MySQL

时间:2018-03-14 16:47:18

标签: mysql group-by

假设我们有这张表

select * from table group by brand

当我在品牌( id brand date 1 audi .... 2 toyota ..... )上使用group by时,它会返回第一次出现

GROUP BY

是否可以使用id子句获得最后一次出现。 Mwith上次出现我的意思是最新的date id brand date 5 audi .... 3 toyota ..... 就像

一样
new NotificationChannel("ID", "Channel Name", NotificationManager.IMPORTANCE_HIGH);

1 个答案:

答案 0 :(得分:2)

select brand, max(date) from table group by brand;