A. The indexed column is declared as NOT NULL. B. The indexed columns are used in the FROM clause. C. The indexed columns are part of an expression. D. The indexed column contains a wide range of values.
The EMPLOYEES table contains these columns: EMPLOYEE_ID NUMBER(4) LAST_NAME VARCHAR2 (25) JOB_ID VARCHAR2(10) You want to search for strings that contain 'SA_' in the JOB_ID column. Which SQL statement do you use?()
A. SELECT employee_id, last_name, job_id FROM employees WHERE job_id LIKE '%SA\_%'ESCAPE'\'; B. SELECT employee_id, last_name, job_id FROM employees WHERE job_id LIKE '%SA_'; C. SELECT employee_id, last_name, job_id FROM employees WHERE job_id LIKE '%SA_'ESCAPE'\'; D. SELECT employee_id, last_name, job_id FROM employees WHERE job_id '%SA_';
Examine the structure of the EMPLOYEES table: You issue these statements: At the end of this transaction, what is true?()
A. You have no rows in the table. B. You have an employee with the name of James. C. You cannot roll back to the same savepoint more than once. D. Your last update fails to update any rows because employee ID 180 was already eleted.