READ Free Dumps For Oracle- 1z0-007
Question ID 1716 | Click the Exhibit button to examine the structures of the EMPLOYEES, DEPARTMENTS, and TAX tables. |
Option A | A. to list the name, job_id, and manager name for all the employees |
Option B | B. to find the name, salary, and the department name of employees who are not working with Smith |
Option C | C. to display name, salary, manager ID, and department name of all the employees, even if the employees do not have a department ID assigned |
Option D | D. to find the number of employees working for the Administrative department and earning less than 4000 |
Option E | E. to find the tax percentage for each of the employees |
Correct Answer | E |
Question ID 1717 | Which three SELECT statements display 2000 in the format "$2,000.00"? (Choose three.) |
Option A | A. SELECT TO_CHAR(2000, '$N,NNN.NN') FROM dual; |
Option B | B. SELECT TO_CHAR(2000, '$9,999.00') FROM dual; |
Option C | C. SELECT TO _CHAR(2000, '$#,###.##') FROM dual; |
Option D | D. SELECT TO_CHAR(2000, '$9,999.99') FROM dual; |
Option E | E. SELECT TO_CHAR(2000, '$0,000.00') FROM dual; |
Option F | F. SELECT TO_CHAR(2000, '$2,000.00') FROM dual; |
Correct Answer | B,D,E |