Examine the description of the PRODUCT_INFORMATION table:
Which query retrieves the number of products with a null list price?
Examine the description of the PRODUCT_INFORMATION table:
Which query retrieves the number of products with a null list price?
To retrieve the number of products with a null list price, the correct SQL syntax checks for null values directly. The query should use `COUNT(list_price)` along with the condition `WHERE list_price IS NULL`, as this correctly counts only the rows where `list_price` is null. This makes option C correct.
A is correct
A is correct.
A is correct
A is correct. Need to convert to not NULL first.
A is correct