Question: 1
Which two statements are true regarding the SQL GROUP BY clause? (Choose two.)
Question: 2
You issue this command which succeeds:
SQL> DROP TABLE products;
Which three statements are true? (Choose three.)
Question: 3
You execute the SQL statement:
What is the outcome?
Question: 4
Evaluate the following CREATE TABLE commands:
CREATE_TABLE orders
(ord_no NUMBER (2) CONSTRAINT ord_pk PRIMARY KEY,
ord_date DATE,
cust_id NUMBER (4) );
CREATE TABLE ord_items
(ord _no NUMBER (2),
item_no NUMBER(3),
qty NUMBER (3) CHECK (qty BETWEEEN 100 AND 200),
expiry_date date CHECK (expiry_date> SYSDATE),
CONSTRAINT it_pk PRIMARY KEY (ord_no, item_no),
CONSTARAINT ord_fk FOREIGN KEY (ord_no) REFERENCES orders (ord_no) );
The above command fails when executed. What could be the reason?
Question: 5
Examine the structure of the PROGRAMS table:
Which two SQL statements would execute successfully? (Choose two.)