我有一张桌子
表A
id value
__ _____
1 a
2 b
3 c
4 d
5 e
我想只获取表格中的最新条目(即)最后一个值 => id,值为5,e
你可以告诉我这个问题。答案 0 :(得分:1)
使用order by
和limit
:
select t.*
from t
order by id desc
limit 1;
答案 1 :(得分:1)
使用以下选择查询
SELECT * FROM tablea where ID IN (SELECT MAX(ID) FROM tablea);
答案 2 :(得分:1)
Select id, value
from tablea
order by id desc
limit 1