Skip to content

Instantly share code, notes, and snippets.

@J2112O
Created June 9, 2021 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save J2112O/5121516045c04823aaf0ea3aab434467 to your computer and use it in GitHub Desktop.
Save J2112O/5121516045c04823aaf0ea3aab434467 to your computer and use it in GitHub Desktop.
VAR max_fname_len NUMBER;
BEGIN
SELECT MAX(LENGTH(FIRST_NAME)) INTO :max_fname_len
FROM FRIENDS;
END;
/
print max_fname_len;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment