Home  >  Q&A  >  body text

javascript - 怎么获取最新的数据

怎么获取最新时间的数据,如果通过现在的时间戳和数据中的时间戳对比的话,不知怎么拿适合对比的对象,因为数据一拿就一大堆。

PHPzPHPz2772 days ago228

reply all(1)I'll reply

  • PHP中文网

    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值,确定是否是最新数据。

    最新的一条数据就出来了

    reply
    0
  • Cancelreply