Examine this SQL statement: Which two are true? A. All existing rows in the ORDERS table are updated B. The subquery is executed for every updated row in the ORDERS table C. The subquery is executed before the UPDATE statement…

Examine the description of the PRODUCTS table: Which three queries use valid expressions? (Choose three.) A. SELECT product_id, (expiry_date – delivery_date) * 2 FROM products; B. SELECT product_id, unit_price | | 5 "Discount", unit_price + surcharge – discount FROM products;…