我需要就下面的案例得到你的帮助。我有一个包含两列“CallingNumber”的表,其中包含不同的冗余电话号码和“CallReason”,这是他们录制原因的原因。
then i need a query to generate
=> how many times a unique "callingNumber" is recorded for the same "CallReasonName".
答案 0 :(得分:1)
我不知道我是否理解你,但我认为这是一个简单的查询
Select callingNumber, CallReasonName, count(1) as Cnt
from table
Group by callingNumber, CallReasonName