我想要完成的是找到过去有销售但在过去 2 年内没有从我们这里购买过的所有客户(SYSDATE - INTERVAL '2' YEAR)
这是我目前的代码。
select invc.company
, invc.customer_id
, to_char(invc.invdate, 'mm/dd/yyyy') as date
, invc.name
, invc.address1
, invc.address2
, invc.city
, invc.state
, invc.zip_code
, invc.country
, invc.region_code
, invc.site
, sum(invc.sales) as SlsAmnt
from ifsinfo.hb_invoicing_all invc
where **THIS IS THE PART IM STUCK AT**
group by invc.company
, invc.customer_id
, invc.creation_date
, invc.name
, invc.address1
, invc.address2
, invc.city
, invc.state
, invc.zip_code
, invc.country
, invc.region_code
, invc.site
我基本上是在寻找一个查询,该查询将返回 2 年或更长时间未从我们这里购买过的客户列表。
SUM(SALES) = 0
在过去 2 年内+
过去两年没有销售意味着: