Which command will cause an automatic commit to occur?
-
CONNECT
-
RENAME
-
INSERT
-
DELETE
B
Correct answer
Explanation
In SQL databases, DDL (Data Definition Language) commands like RENAME typically cause an automatic commit of the current transaction. DML commands like INSERT and DELETE don't auto-commit unless autocommit mode is enabled. CONNECT establishes a session but doesn't commit anything.