READ Free Dumps For Oracle- 1z0-001
Question ID 8073 | The employee table contains these columns. LAST_NAME VARCHAR2(25) FIRST_NAME VARCHAR2(25) DEPT_ID NUMBER(9) You need to display the names of the employees that are not assigned to the department. Evaluate this SQL statement. SELECT last_name, first_nameFROM employee WHERE dept_id is NULL Which change should you make to achieve the desired result? |
Option A | Create an outer join. B. Change the column in |
Option B | Change the column in the where condition. |
Option C | Change the operator in the where condition |
Option D | Add a second condition to the where condition |
Correct Answer | C |
Question ID 8074 | Which statement about SQL is true? |
Option A | Null values are displayed last in the ascending sequences. |
Option B | Data values are displayed in descending order by default. |
Option C | You cannot specify a column alias in an ORDER BY clause. |
Option D | You cannot sort query results by a column that is not included in the SELECT list. |
Option E | The results are sorted by the first column in the SELECT list, if the ORDER BY clause is not provided. |
Correct Answer | A |