I want to be able to make a query that does a count of something from one table and then does another count of something from the same table. So I need two counts done in the same query. Any ideas?
Ex. Select count(*) as counter from table where wo = 'Erica'
Select count(*) as counter2 from table where co = 'Erica'
(I need these to be part of the same query so when I see the results there right next to each other).
Thanks!
Erica Thanks!
Erica
Ex. Select count(*) as counter from table where wo = 'Erica'
Select count(*) as counter2 from table where co = 'Erica'
(I need these to be part of the same query so when I see the results there right next to each other).
Thanks!
Erica Thanks!
Erica