sql command
commands
name VARCHAR(50),
age INT,
department VARCHAR(50)
);
UPDATE employees
WHERE id = 1;
COMMIT;
ROLLBACK;
SAVEPOINT before_update;
ROLLBACK TO before_update;