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 datetime 列,但是我只想查询 datetime 列的时间组件,但是我相信使用函数 HOUR() MINUTES() 等会创建全表扫描。因此使用下面的查询不是最佳的。
SELECT datetime_col FROM articles WHERE TIME(datetime_col) > "09:00:00" && TIME(datetime_col) < "13:00:00"
查询时间组件的最佳方法是什么?