Which two statements are true about conditional INSERT ALL?
Which statements is true about using functions in WHERE and HAVING?
Which two are true about multiple table INSERT statements?
Which three statements are true about Oracle synonyms?
In your session NLS_ DATE_ FORMAT is set to DD–MON_RR.
Which two queries display the year as four digits?
Examine this query:
SELECT employee_id,first_name,salary
FROM employees
WHERE hire_date>'&1';
Which two methods should you use to prevent prompting for a hire date value when this query is executed?
Which two statements are true about truncate and delete?
Which two statements are true about Oracle synonyms?
Which three are true about system and object privileges
Evaluate the following SQL statement
SQL>SELECT promo_id, prom _category FROM promotions
WHERE promo_category=’Internet’ ORDER BY promo_id
UNION
SELECT promo_id, promo_category FROM Pomotions
WHERE promo_category = ‘TV’
UNION
SELECT promoid, promocategory FROM promotions WHERE promo category=’Radio’
Which statement is true regarding the outcome of the above query?