Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active February 9, 2020 03:18
Show Gist options
  • Save uncoded-ro/5dccc7c97036db1feab8fe6aad66a64b to your computer and use it in GitHub Desktop.
Save uncoded-ro/5dccc7c97036db1feab8fe6aad66a64b to your computer and use it in GitHub Desktop.
USE sakila;
DROP PROCEDURE IF EXISTS get_actors;
DELIMITER |
CREATE PROCEDURE get_actors()
BEGIN
SELECT actor_id, first_name, last_name
FROM actor
ORDER BY actor_id ASC
LIMIT 5;
END |
DELIMITER ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment