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.
我的表中有一个字段,其中包含以下格式的注册日期
2013 年 8 月 26 日,上午 5 点 48 分 17 秒
以这种格式在日期之间搜索的最佳方法是什么?
只需使用 BETWEEN
SELECT * FROM table1 WHERE date BETWEEN Curdate() AND Curdate() - INTERVAL 1 DAY
注意,边界被包括在内。它也适用于时间戳。