Multiple Choice
Which query will return the number of rows from the Customers table where the State field is 'AZ'?
A) SELECT FROM Customers WHERE State='AZ' COUNT(*) ;
B) SELECT COUNT(*) FROM Customers WHERE State='AZ';
C) SELECT FROM Customers COUNT(*) WHERE State='AZ';
D) SELECT COUNT(*) WHERE State='AZ' FROM Customers;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q21: Which SQL keyword can you use to
Q22: Explain the requirements of two sets of
Q23: In an Access query, a "group" of
Q24: Based on the SQL shown, which query
Q25: Based on the SQL shown, which query
Q27: When you create a query using SQL
Q28: Which part of a SQL query specifies
Q29: In what type of SQL operation must
Q30: When a SQL statement consists of two
Q31: How can you improve your SQL skills?<br>A)Practice