MySQL用YEAR() 函数获取年份,比如一张销售明细表saledetail,其中销售日期字段名是saledate,数据类型是DATETIME,现在要提取2021年的销售数据,就可以这么写:
select * from saledetail where year(saledate)=2021