Question: 1
View the Exhibit and examine the data in the PROMOTIONS table.
PROMO_BEGIN_DATE is stored in the default date format, dd-mon-rr.
You need to produce a report that provides the name, cost, and start date of all promos in the POST category that were launched before January 1, 2000.
Which SQL statement would you use?
Question: 2
Which two statements are true regarding views? (Choose two.)
Question: 3
View the Exhibit and examine the structure of CUSTOMERS table.
Evaluate the following query:
Which statement is true regarding the above query?
Question: 4
Evaluate the following CREATE SEQUENCE statement:
CREATE SEQUENCE seq1
START WITH 100
INCREMENT BY 10
MAXVALUE 200
CYCLE
NOCACHE;
The sequence SEQ1 has generated numbers up to the maximum limit of 200. You issue the following SQL statement:
SELECT seq1.nextval FROM dual;
What is displayed by the SELECT statement?
Question: 5
Which three statements indicate the end of a transaction? (Choose three.)