Click here to Skip to main content
15,892,480 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
We have a table having field.--Name ,ContactStatus(it may be Call Disconnected, Contact Again, Engaged, Successful Contact)
I want to count total No of Attend Call. and how much call Successful Contact in a single query
Posted
Comments
Sergey Alexandrovich Kryukov 4-Nov-12 14:24pm    
We don't know your database schema and other detail. Is is already stored in database? If so, what could be a problem? If it is not stored, you need to store it, and this is already non-query statement; also -- what's a problem?
--SA

1 solution

this statment get count of all and every type

SQL
select
 COUNT(*) [total No of Attend Call]
 ,SUM(case when ContactStatus='Successful Contact' then 1 else 0 end)[Successful Contact count]
 ,SUM(case when ContactStatus='Engaged' then 1 else 0 end)[Engaged count]
 ,SUM(case when ContactStatus='Contact Again' then 1 else 0 end)[Contact Again count]
 ,SUM(case when ContactStatus='Disconnected' then 1 else 0 end)[Disconnected count]
 from tableName
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900