READ Free Dumps For Oracle- 1z0-007
Question ID 7901 | Examine the structure of the STUDENTS table: STUDENT_ID NUMBER NOT NULL, Primary Key STUDENT_NAME VARCHAR2(30) COURSE_ID VARCHAR2(10) NOT NULL MARKS NUMBER START_DATE DATE FINISH_DATE DATE You need to create a report of the 10 students who achieved the highest ranking in the course INT SQL and who completed the course in the year 1999. Which SQL statement accomplishes this task? |
Option A | SELECT student_ id, marks, ROWNUM "Rank" FROM students WHERE ROWNUM <= 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks DESC; |
Option B | SELECT student_id, marks, ROWID "Rank" FROM students WHERE ROWID <= 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks; |
Option C | SELECT student_id, marks, ROWNUM "Rank" FROM (SELECT student_id, marks FROM students WHERE ROWNUM <= 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks DESC); |
Option D | SELECT student_id, marks, ROWNUM "Rank" FROM (SELECT student_id, marks FROM students ORDER BY marks DESC) WHERE ROWNUM <= 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course _ id ='INT _ SQL'; |
Correct Answer | D |
Question ID 7902 | Which four statements correctly describe functions that are available in SQL? (Choose four) |
Option A | INSTR returns the numeric position of a named character |
Option B | NVL2 returns the first non-null expression in the expression list. |
Option C | TRUNCATE rounds the column, expression, or value to n decimal places. |
Option D | DECODE translates an expression after comparing it to each search value. |
Option E | TRIM trims the heading of trailing characters (or both) from a character string. |
Option F | G. NULLIF compares twp expressions and returns null if they are equal, or the first expression if they are not equal. |
Correct Answer | ADEG |