当我尝试在搜索时选择特定月份和年份的记录时,我找到了一半的解决方案
select *
from thetable
where monthname(date_field) = 'February'
然后我修改它如下
select *
from payments
where monthname(date) = 'February' and EXTRACT(date )='2011';
但它显示错误什么是在我的表中选择mounth和year的正确方法我将日期存储为 2011-2-4