Question: 1
You execute these commands:
CREATE TABLE customers (customer_id INTEGER, customer_name VARCHAR2 (20) )
TNSERT INTO customers VALUES (1, 'Customer 1 ' ) ;
SAVEPOTNT post_insert;
INSERT INTO customers VALUES (2, 'Customer 2');
SELECT COUNT(*) FROM customers;
Which two, used independently, can replace so the query returns 1?
Question: 2
BOOK_SEQ is an existing sequence in your schema.
Which two CREATE TABLE commands are valid?
A)

B)

C)

D)

E)

Question: 3
Examine these statements which execute successfully:
ALTER SESSION SET NLS_DATE_FORMAT = 'DD-MON-YYY HH24 :MT:SS;'
ALTER SESSION SET TIME-ZONE = '-5:00;:
Examine the result:

If LOCALTIMESTAMP was selected at the same time, what would it return?
Question: 4
Examine this query and its output:

Examine this query with an incomplete was WHERE clause:

Which two are true about operators that can be used In the WHERE clause?