一个独特的" callNumber"多少次?记录相同的" CallReasonName"

时间:2014-04-06 09:49:27

标签: mysql sql sql-server

我需要就下面的案例得到你的帮助。我有一个包含两列“CallingNumber”的表,其中包含不同的冗余电话号码和“CallReason”,这是他们录制原因的原因。

 then i need a query to generate 
     => how many times a unique "callingNumber" is recorded for the same "CallReasonName".

1 个答案:

答案 0 :(得分:1)

我不知道我是否理解你,但我认为这是一个简单的查询

Select callingNumber, CallReasonName, count(1) as Cnt
from table
Group by callingNumber, CallReasonName