怎么获取最新时间的数据,如果通过现在的时间戳和数据中的时间戳对比的话,不知怎么拿适合对比的对象,因为数据一拿就一大堆。
PHP中文网2017-04-10 15:40:37
建议同一张表,进行联合查询。
eg:
select name from user a where 0 = ( select count(*) from user where id = a.id and createTime > a.createTime ) order a.createTime desc
大体思路就是一张表先降序,然后另外一张表与这张表时间做比较,看count值,确定是否是最新数据。
最新的一条数据就出来了