The CUSTOMERS table has these columns:<br /> <img src="https://nimg.ppkao.com/2018-08/yiyu/2018080116294948484.jpg?sign=4a6174a02b11d62c7dec3a7cab677141&t=62d369ee" /><br /> The CUSTOMER_ID column is the primary key for the table.Which two statements find the number of customers? ()
A、SELECT TOTAL(*) FROM customers;
B、SELECT COUNT(*) FROM customers;
C、SELECT TOTAL(customer_id) FROM customers;
D、SELECT COUNT(customer_id) FROM customers;
E、SELECT COUNT(customers) FROM customers;
F、SELECT TOTAL(customer_name) FROM customers;