Examine this SQL statement: DELETE FROM employees e WHERE EXISTS (SELECT'dummy' FROM emp_history WHERE employee_id = e.employee_id) Which two are true?
You execute these commands successfully: CREATE GLOBAL TEMPORARY TABLE invoices _ gtt ( customer id INTEGER, invoice_ total NUMBER (10, 2) ) ON COMMIT PRESERVE ROWS; INSERT INTO invoices_ gtt VALUES (1, 100); COMMIT; Which two are true?