Question from the Oracle Database test

What happens after executing this code in Oracle?

Medium

What happens after executing the following code ?

BEGIN;
INSERT INTO clients (id, name) VALUES (1, 'Alice');
SAVEPOINT sp1;
INSERT INTO clients (id, name) VALUES (2, 'Bob');
ROLLBACK TO sp1;
COMMIT;
Author: Koala rareStatus: PublishedQuestion passed 4 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!