1z0-071 Exam Question 201
View the Exhibit and examine the structure of the EMPLOYEES and JOB_HISTORY tables.

Examine this query which must select the employee IDs of all the employees who have held the job SA_MAN at any time during their employment.
SELECT EMPLOYEE_ID
FROM EMPLOYEES
WHERE JOB_ID = 'SA_MAN'
-------------------------------------
SELECT EMPLOYEE_ID
FROM JOB_HISTORY
WHERE JOB_ID = 'SA_MAN';
Choose two correct SET operators which would cause the query to return the desired result.

Examine this query which must select the employee IDs of all the employees who have held the job SA_MAN at any time during their employment.
SELECT EMPLOYEE_ID
FROM EMPLOYEES
WHERE JOB_ID = 'SA_MAN'
-------------------------------------
SELECT EMPLOYEE_ID
FROM JOB_HISTORY
WHERE JOB_ID = 'SA_MAN';
Choose two correct SET operators which would cause the query to return the desired result.
1z0-071 Exam Question 202
Use HR has CREATE SESSION, CREATE ANY TABLE and UNLIMITED TABLESPACE privileges.
User SCOTT has CREAT SESSION, CREATE TABLE and UNLIMITED TABLESPACE Privileges HR successfully executes this statement:

Which will execute successfully?
User SCOTT has CREAT SESSION, CREATE TABLE and UNLIMITED TABLESPACE Privileges HR successfully executes this statement:

Which will execute successfully?
1z0-071 Exam Question 203
Which statements is true about using functions in WHERE and HAVING?
1z0-071 Exam Question 204
The CUSTOMERS table has a CUST_CREDT_LIMIT column of data type number.
Which two queries execute successfully?
Which two queries execute successfully?
1z0-071 Exam Question 205
Which three queries use valid expressions?