从数据库表中查询日期最新的记录
Posted 就是小鱼儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从数据库表中查询日期最新的记录相关的知识,希望对你有一定的参考价值。
select a.* from data_subtaskregionschedule a inner join(select subregionid,max(updatetime) maxupdatetime
from data_subtaskregionschedule group by subregionid) b on a.subregionid=b.subregionid and a.updatetime
=b.maxupdatetime;
实测可行
以上是关于从数据库表中查询日期最新的记录的主要内容,如果未能解决你的问题,请参考以下文章
如何查询 sql 以获取最新的记录日期,但如果记录有消息返回该 reocrd [关闭]