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.
我的表中有一个名为 date 的字段,它通过 NOW() 函数存储添加条目的日期。
我只需要查询数据库以查找最近 30 天内的条目。
这可能在单个查询中吗?
当然。创建一个时间窗口,您可以限制该日期
$time = time() - (86400 * 30); // 86400 seconds in one day $sql = 'SELECT * FROM table WHERE datefield > "' . date('Y-m-d H:i:s', $time) . '"';
这应该会在过去 30 天内为您提供记录