Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 mysql 表,其中有一列 date_modified 和一个设置了当前时间戳默认值的时间戳。当我插入表格时,我得到一个时间戳。在 php 脚本中显示记录时,如何按最新时间戳排序?
您的 SQL 查询将使用ORDER BY语句。然后,您的 PHP 脚本可以正常循环它们,以正确的顺序显示它们。
ORDER BY
按时间顺序显示它们:
ORDER BY date_modified ASC
最近的第一:
ORDER BY date_modified DESC