本文介绍了如何筛选不在日期范围内的项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个表格发票,它有Itemcode和saledate列
i想要获得自去年以来未在交易中的项目代码
如何使用sql语句执行此操作
谢谢
I Have a table call Invoice and it has Itemcode and saledate Columns
i want to get itemcodes which are not in transaction since last two year
how to do this using sql statement
Thanks
推荐答案
SELECT ItemCode FROM Invoice
GROUP BY ItemCode
HAVING MAX(SaleDate) < DATEADD(year, -2, GETDATE())
这篇关于如何筛选不在日期范围内的项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!