The CUSTOMERS table has these columns:<br /> CUSTOMER_ID NUMBER(4) NOT NULL<br /> CUSTOMER_NAME VARCHAR2(100) NOT NULL<br /> STREET_ADDRESS VARCHAR2(150)<br /> CITY_ADDRESS VARCHAR2(50)<br /> STATE_ADDRESS VARCHAR2(50)<br /> PROVINCE_ADDRESS VARCHAR2(50)<br /> COUNTRY_ADDRESS VARCHAR2(50)<br /> POSTAL_CODE VARCHAR2(12)<br /> CUSTOMER_PHONE VARCHAR2(20)<br /> The CUSTOMER_ID column is the primary key for the table.<br /> You need to determine how dispersed your customer base is. Which expression finds the number of different countries represented in the CUSTOMERS table?()
A、COUNT(UPPER(country_address))
B、COUNT(DIFF(UPPER(country_address)))
C、COUNT(UNIQUE(UPPER(country_address)))
D、COUNT DISTINCT UPPER(country_address)
E、COUNT(DISTINCT (UPPER(country_address)))