READ Free Dumps For Oracle- 1z0-001
Question ID 1522 | Click on the EXHIBIT button and examine the table instance chart for the employee table. |
Option A | A. SELECT hire_date ('fmDD "of" MONTH YYYY') "Date Hired" FROM employee; |
Option B | B. SELECT TO_CHAR(hire_date, 'DDspth of MONTH YYYY') "DATE HIRED" FROM employee; |
Option C | C. SELECT hire_date ('DD "of" MONTH YYYY') "Date Hired" FROM employee; |
Option D | D. SELECT TO_CHAR(hire_date, 'fmDD "of" Month YYYY') DATEHIRED FROM employee; |
Correct Answer | D |
Question ID 1523 | You have decided to permanently remove all the data from the STUDENT table, and you need the table structure in the future. Which single command performs this? |
Option A | A. DELETE * FROM student KEEP STRUCTURE; |
Option B | B. TRUNCATE TABLE student KEEP STRUCTURE; |
Option C | C. DROP TABLE student; |
Option D | D. DELETE * FROM student; |
Option E | E. TRUNCATE TABLE student; |
Correct Answer | E |