SQL server里面如何过滤掉去年以前的数据
where year(时间)>=year(getdate())
where date >= add_months(sysdate,-12)
加where条件啊 where left(日期, 4) >= left(convert(varchar, dateadd(year, -1, getdate()), 112), 4)