Created
October 13, 2014 03:27
-
-
Save gabanox/55900d22caa9824f2d53 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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