Skip to content

Instantly share code, notes, and snippets.

@gabanox
Created October 13, 2014 03:27
Show Gist options
  • Save gabanox/55900d22caa9824f2d53 to your computer and use it in GitHub Desktop.
Save gabanox/55900d22caa9824f2d53 to your computer and use it in GitHub Desktop.
DELIMITER //
CREATE FUNCTION getFirstNameById(in_id INT)
RETURNS VARCHAR(60)
BEGIN
RETURN (SELECT first_name FROM CONTACT WHERE id = in_id);
END //
DELIMITER ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment