我有一张桌子如下。我想获取320类的最后一项。
id | category | city |
1 | 320 | paris |
2 | 320 | london |
3 | 330 | stock. |
4 | 320 | brussel|
5 | 340 | fifu |
我想获得320类的最后一项
id | category | city |
4 | 320 | brussel |
答案 0 :(得分:1)
最简单的方法:
select t.*
from t
where category = 320
order by id desc
limit 1