
Ultimate access to all questions.
How can you determine the number of null values in the alternate_email column of an existing Delta table named customers?_
A
SELECT count_if(alternate_email IS NULL) AS missing_alternate_emails FROM customers
B
SELECT count(alternate_email IS NULL) AS missing_alternate_emails FROM customers_
C
SELECT count_when(alternate_email IS NULL) AS missing_alternate_emails FROM customers
D
SELECT count_where(alternate_email IS NULL) AS missing_alternate_emails FROM customers
E
SELECT count_only(alternate_email IS NULL) AS missing_alternate_emails FROM customers