Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created June 3, 2019 14:59
Show Gist options
  • Save prof3ssorSt3v3/d3dc5b85dfd3c82463d4716e521cb3ad to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/d3dc5b85dfd3c82463d4716e521cb3ad to your computer and use it in GitHub Desktop.
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