我有表二级销售。其中我有Cust_Code
,Transaction_Date
之类的列。
在最近三个月中,我想找出哪个Cust_code
很常见。
如果我运行此查询
select distinct Stockist_Code
from ZSecondarySales
where Tran_date = '2018-12-31' and Tran_date ='2019-01-31' and Tran_date = '2019-02-28';
那我得到了132条记录。
但可以有cust_code
之类的In dec 100 cust_code
。 In Jan 110 cust_code
。 In Feb 115 cust_code
。
我只想找到普通的客户编号,而不是整个客户编号。