Examine the description of the EMPLOYEES table:
Which query is valid?
Which two statements are true about CURRENT_TIMEITAMP?
Which three statements are true about performing DML operations on a view with no INSTEAD OF triggers defined?
View the Exhibits and examine the structure of the COSTS and PROMOTIONS tables.
You want to display PROD IDS whose promotion cost is less than the highest cost PROD ID in a pro
motion time interval.
Examine this SQL statement:
SELECT prod id
FROM costs
WHERE promo id IN
(SELECT promo id
FROM promotions
WHERE promo_cost < ALL
(SELECT MAX (promo cost)
FROM promotions
GROUP BY (promo_end date-promo_begin_date)) );
What will be the result?