Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumSQLtransactions BEGIN COMMITSingle-choice MCQ

What is the effect of ROLLBACK TO SAVEPOINT in PostgreSQL?

BEGIN; INSERT INTO t VALUES (1); SAVEPOINT sp1; INSERT INTO t VALUES (2); ROLLBACK TO SAVEPOINT sp1; INSERT INTO t VALUES (3); COMMIT;