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.
我想通过在 PHP 文件中的特定日期在 MYSQL 表中创建的 ID 来获取条目的范围。如何做到这一点?如果需要,假设数据库中有一个列列出了创建条目的日期。
是的,您可以执行如下查询:
SELECT MIN(id), MAX(id) FROM tablex WHERE entrydate = 'YYYY-MM-DD'