Solved

Which Query Will Return the Number of Rows from the Customers

Question 26

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions