DEVFYI - Developer Resource - FYI

TRUNCATE TABLE EMP; DELETE FROM EMP; Will the outputs of the above two commands differ?

PL/SQL Interview Questions and Answers


(Continued from previous question...)

35. TRUNCATE TABLE EMP;
DELETE FROM EMP;
Will the outputs of the above two commands differ?

Both will result in deleting all the rows in the table EMP..

(Continued on next question...)

Other Interview Questions