Question : Select the statement about the ORDER BY clause which is not correct. 1. When using the ORDER BY clause, it always appears as the last clause in a SELECT statement. 2. The ORDER BY clause may appear in a SELECT statement that does not contain a WHERE clause. 3. Access Mostly Uused Products by 50000+ Subscribers 4. Positional sorting is accomplished by specifying the numeric position of a column as it appears in the SELECT list, in the ORDER BY clause.
Question : If a table is created without specifying a schema, in which schema will it be? 1. It will be an orphaned table, without a schema. 2. The creation will fail. 3. Access Mostly Uused Products by 50000+ Subscribers 4. It will be in the PUBLIC schema.
Question : How can you delete the values from one column of every row in a table? (Choose the best answer.) 1. Use the DELETE COLUMN command. 2. Use the TRUNCATE COLUMN command. 3. Access Mostly Uused Products by 50000+ Subscribers 4. Use the DROP COLUMN command.
1. SELECT E.EMPLOYEE_ID, J.JOB_ID PREVIOUS_JOB, E.JOB_ID CURRENT_JOB FROM JOB_HISTORY J CROSS JOIN EMPLOYEES E ON (J.START_DATE=E.HIRE_DATE); 2. SELECT E.EMPLOYEE_ID, J.JOB_ID PREVIOUS_JOB, E.JOB_ID CURRENT_JOB FROM JOB_HISTORY J JOIN EMPLOYEES E ON (J.START_DATE=E.HIRE_DATE); 3. Access Mostly Uused Products by 50000+ Subscribers 4. None of the above