从单个表格的不同行中选择一个不同的值

时间:2019-07-29 01:20:45

标签: mysql sql database

如何获取mysql中的最新日期?

在图像中我只想获取MEMB_N,LAST_M和ID = 655369,2019-7-29下的最新日期。

img

1 个答案:

答案 0 :(得分:2)

如果要查找一行,请使用order bylimit

select t.*
from t
where t.printdate is not null
order by t.printdate desc
limit 1;