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)
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)