Hello All,
I'm using SQL Server7.0 and having trouble using COUNT().
What I want to do is get a count of Female Users and a count of Male users per state:
Have tried several different ways, but just can't get it,
Thanks in Advance,
Michael
I'm using SQL Server7.0 and having trouble using COUNT().
Code:
tblAddresses
Add_referenceID = USER ID
Add_Region = STATE
tblContacts
Cnt_referenceID = USER ID
Cnt_Gender = 'M' or 'F'
Code:
State Male Female
AK 46 54
AZ 32 45
FL 20 12
Ect...
Thanks in Advance,
Michael