我想根據日期在sql(mysql)上查詢。根據日期查詢mysql
喜歡的東西:
Select * from table_name where e_date > 2001-12-30;
什麼是正確的查詢?
我不能記下我的問題,並從谷歌得到正確的迴應。
我想根據日期在sql(mysql)上查詢。根據日期查詢mysql
喜歡的東西:
Select * from table_name where e_date > 2001-12-30;
什麼是正確的查詢?
我不能記下我的問題,並從谷歌得到正確的迴應。
試試這個:
Select *
from table_name
where e_date > DATE('2001-12-30');
剛上你的約會增添收盤報價。
Select * from table_name where e_date > '2001-12-30'
檢查下面的鏈接:
Date and Time Functions in MYsQL
本網站將幫助你關於日期時間函數
問候
你到底要與此查詢做什麼?這似乎是正確的報價。 – Lion 2012-03-01 00:09:53