|
#67. Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key
FIRST_NAME VARCHAR2(25)
LAST_NAME VARCHAR2(25)
HIRE_DATE DATE You issue these statements: CREATE TABLE new_emp ( employee_id NUMBER, name VARCHAR2(30)); INSERT INTO new_emp SELECT employee_id , last_name FROM employees; SAVEPOINT s1; UPDATE new_emp SET name = UPPER(name); SAVEPOINT s2; DELETE FROM new_emp; ROLLBACK TO s2; DELETE FROM new_emp WHERE employee_id =180; UPDATE new_emp SET name = 'James'; ROLLBACK TO s2; UPDATE new_emp SET name = 'James' WHERE employee_id =180; ROLLBACK;
At the end of this transaction, what is true?
Show comments for this question (1)
Add comments
Link to this question
|