sqlserver写法:
今年:
where left(字段名,4)=year(getdate())
去年:
where left(字段名,4)=year(getdate())-1
--今年 select * from 表 where left(数据库字段名,4)='${year(today())}' --去年 select * from 表 where left(数据库字段名,4)='${year(today())-1}'