Question

In SQL Query Analyzer, the statement used to calculate the number of clients from each NH zip code, labeled "Zip Clients", would be which of the following?
a) Select zipcode, Count(email) From client Group by zipcode Where state != "NH"
b) Select zipcode, Count(email) As "Zip Clients' From client Group by zipcode
c) Select zipcode, Count(email) As "Zip Clients' From client Group by zipcode Where state = "NH"
d) Select zipcode, Count(email) As "Zip Clients' From client Group by zipcode Where state Is "NH"

Answer

This answer is hidden. It contains 1 characters.