Commands- COMMIT,ROLLBACK and SAVEPOINT comes under which SQL command ? *
Answers
Answered by
0
Answer:
COMMIT command
COMMIT command is used to permanently save any transaction into the database.
When we use any DML command like INSERT, UPDATE or DELETE, the changes made by these commands are not permanent, until the current session is closed, the changes made by these commands can be rolled back.
To avoid that, we use the COMMIT command to mark the changes as permanent.
Following is commit command's syntax,
Similar questions