假设我们有这张表
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);
答案 0 :(得分:2)
select brand, max(date) from table group by brand;