簡體   English   中英

如何從mysql中的datetime數據類型中選擇時間

[英]how to select time from datetime datatype in mysql

我試圖選擇下午2點以后發貨的訂單,此代碼給我錯誤的結果

select order_id, ship_date from orders where ship_date >= '%y-%m-%d 14%-%-%';

嘗試這個:

select order_id, ship_date from orders where HOUR(ship_date) >= 14

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM