Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active April 7, 2021 11:38
Show Gist options
  • Save uncoded-ro/f2ae0ab133004dce4941ae1aa9cad159 to your computer and use it in GitHub Desktop.
Save uncoded-ro/f2ae0ab133004dce4941ae1aa9cad159 to your computer and use it in GitHub Desktop.
SELECT *
FROM sakila.actor
ORDER BY last_update DESC
LIMIT 5;
SELECT @@SESSION.autocommit;
SET autocommit = 0;
SELECT @@SESSION.autocommit;
INSERT INTO sakila.actor (first_name, last_name)
VALUES ("BRUCE", "JOHNSON");
SELECT *
FROM sakila.actor
ORDER BY last_update DESC
LIMIT 5;
connect
SELECT *
FROM sakila.actor
ORDER BY last_update DESC
LIMIT 5;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment