Question: 1
Which three arithmetic operations can be performed on a column by using a SQL function that is built into Oracle database? (Choose three.)
Question: 2
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. (Choose two.)
Question: 3
You must create a SALES table with these column specifications and data types:
SALESID: Number
STOREID: Number
ITEMID: Number
QTY: Number, should be set to 1 when no value is specified
SLSDATE: Date, should be set to current date when no value is specified
PAYMENT: Characters up to 30 characters, should be set to CASH when no value is specified
Which statement would create the table? (Choose the best answer.)
Answer : D
Show Answer
Hide Answer
Question: 4
View the Exhibit and examine the details of the PRODUCT_INFORMATION table. (Choose two.)
Evaluate this SQL statement:
SELECT TO_CHAR(list_price,'$9,999')
From product_information;
Which two statements are true regarding the output? (Choose two.)
Question: 5
Which statement is true about SQL query processing in an Oracle database instance? (Choose the best answer.)