Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Combining 2 queries 2

Status
Not open for further replies.

Zen216

MIS
Jul 13, 2006
616
US
Hello All,
I am an extreme newbie in SQL so sorry in advance if this is real easy..

I have a couple of simple queries to count the total number of clients in a certain state with sertain status, but I need to get total of more than one status..

ie.
SELECT COUNT(*) as total
WHERE state = 'PA' and status = 'A'

returns 50


SELECT COUNT(*) as total
WHERE state = 'PA' and status = 'B'

returns 150,

there are 4 main statuses,, how would I combine the two top querires to give me the total of all accounts with a status A or B? (total would be 200)

Thanks Again..

(SQL 2000 on win 2003 std)
 
Duh.. sorry,, I forgot part of the queirie...lol

SELECT COUNT(*) as total
FROM CUSTOMER
WHERE state = 'PA' and status = 'B'
 
Code:
Select Status, Count(*) as Total
Where State = 'PA'
Group By Status
 
Code:
SELECT COUNT(*) as total
WHERE state = 'PA' and 
      status IN ('A', 'B')

Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
 
Jbenson,

Thanks so much, that has helped emensly.

the only problem now for me is, that there is about 40 statusses, and I need to get a total of 2 or 3.. this gives mee all of the statusses and the total of each,,, and I can add the 2 or 3 that I am looking for together,, however I was hoping to get it in one query...

Thanks again
 
bborissov

Thank You VERY MUCH!!!! that is exactly whaty I was looking for
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top