Which query will return the number of rows where the State field is 'AZ' from the table Customers?
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;