Free 1Z0-071 Exam Dumps

Question 26

View the exhibit and examine the description of the DEPARTMENTS and EMPLOYEES tables.
1Z0-071 dumps exhibit
The retrieve data for all the employees for their EMPLOYEE_ID, FIRST_NAME, and DEPARTMENT NAME, the following SQL statement was written:
SELECT employee_id, first_name, department_name FROM employees
NATURAL JOIN departments;
The desired output is not obtained after executing the above SQL statement. What could be the reason for this?

Correct Answer:D
Natural join needs only one column to be the same in each table. The EMPLOYEES and DEPARTMENTS tables have two columns that are the same (Department_ID and Manager_ID)

Question 27

Evaluate the following CRTEATE 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) ); Why would the ORD_ITEMS table not get created?

Correct Answer:A

Question 28

Which three arithmetic operations can be performed on a column by using a SQL function that is built into Oracle database? (Choose three.)

Correct Answer:ACE

Question 29

Which two statements are true regarding constraints?

Correct Answer:BE

Question 30

Examine the structure of the PROMOTIONS table: (Choose the best answer.)
1Z0-071 dumps exhibit
Management requires a report of unique promotion costs in each promotion category. Which query would satisfy this requirement?

Correct Answer:A