如何在Mysql中获取特定类别的最后一项

时间:2013-09-01 17:46:04

标签: mysql database row fetch

我有一张桌子如下。我想获取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 | 

1 个答案:

答案 0 :(得分:1)

最简单的方法:

select t.*
from t
where category = 320
order by id desc
limit 1