Which statement is true regarding the COALESCE function
It can have a maximum of five expressions in a list B
It returns the highest NOT NULL value in the list for all rows C
It requires that all expressions in the list must be of the same data type D
It requires that at least one of the expressions in the list must have a NOT NULL value Answer: C 2
View the Exhibit and examine the structure of the PROMOTIONS table
Which SQL statements are valid
(Choose all that apply
SELECT promo_id, DECODE (NVL(promo_cost,0), promo_cost, promo_cost * 0
25, 100) "Discount" FROM promotions; B
SELECT promo_id, DECODE (promo_cost, 10000, DECODE (promo_category, 'G1', promo_cost *
25, NULL), NULL) "Catcost" FROM promotions; C SELECT promo_id, DECODE(NULLIF(promo_cost, 10000), NULL