在MySQL 中選擇日期/時間範圍內的資料
查詢:
查詢:試試時要使用MySQL 的Between運算子檢索指定日期範圍內的數據,確保值的格式正確至關重要提供。
範例:select * from hockey_stats where game_date between '11/3/2012 00:00:00' and '11/5/2012 23:59:00' order by game_date desc;
儘管在指定時間範圍內有數據,但查詢沒有回傳結果。這是因為「from」和「to」欄位中的值的日期時間格式不正確。
解決方案:select * from hockey_stats where game_date between '2012-03-11 00:00:00' and '2012-05-11 23:59:00' order by game_date desc;
以上是為什麼我無法在 MySQL 中選擇日期/時間範圍內的資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!