标签: mysql sql database
如何获取mysql中的最新日期?
在图像中我只想获取MEMB_N,LAST_M和ID = 655369,2019-7-29下的最新日期。
答案 0 :(得分:2)
如果要查找一行,请使用order by和limit:
order by
limit
select t.* from t where t.printdate is not null order by t.printdate desc limit 1;