Which three statements are true about performing DML operations on a view with no Instead of triggers defined?
Examine this query which executes successfully;
Select job,deptno from emp
Union all
Select job,deptno from jobs_history;
What will be the result?
Examine this statement which executes successfully:
Which statement will violate the CHECK constraint?
Which three statements are true about performing DML operations on a view with no INSTEAD OF triggers defined?
Examine the description of the transactions table:
Which two SQL statements execute successfully?
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?