Skip to content

Instantly share code, notes, and snippets.

@J2112O
Created June 9, 2021 21:39
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/dbc860db37ccf20c2acd15b0537e5e44 to your computer and use it in GitHub Desktop.
Save J2112O/dbc860db37ccf20c2acd15b0537e5e44 to your computer and use it in GitHub Desktop.
SELECT
RPAD(first_name,
CASE WHEN LENGTH(first_name) < :max_fname_len THEN :max_fname_len - LENGTH(first_name) + LENGTH(first_name) ELSE :max_fname_len END, '*') AS padded_fname
FROM friends;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment