Created
June 3, 2019 14:59
-
-
Save prof3ssorSt3v3/d3dc5b85dfd3c82463d4716e521cb3ad 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
CREATE FUNCTION full_name(first_nm CHAR(20), last_nm CHAR(30) ) | |
RETURNS CHAR(60) DETERMINISTIC | |
RETURN CONCAT(first_nm, ' ', last_nm); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment