內的所有記錄。當我試圖選擇特定的月份和年份的記錄,當我搜索我發現半個解決方案選擇年份和月份
mysql: select all entries from a particular month using PHP
select *
from thetable
where monthname(date_field) = 'February'
然後我修改以下
select *
from payments
where monthname(date) = 'February' and EXTRACT(date)='2011';
但它顯示錯誤什麼是正確的方式來選擇mounth和 在我的表中我的商店日期爲2011-2-4
繼從你鏈接到的問題開始,你能不能使用'year()'方法嗎? – SeeSharp
是'DATE'數據類型或'VARCHAR'的'日期'列嗎? –