Skip to content

Instantly share code, notes, and snippets.

@mesmacosta
Last active December 11, 2020 17:02
Show Gist options
  • Select an option

  • Save mesmacosta/def91939e7192da6d8cd3068916ef5c4 to your computer and use it in GitHub Desktop.

Select an option

Save mesmacosta/def91939e7192da6d8cd3068916ef5c4 to your computer and use it in GitHub Desktop.
CREATE FUNCTION credit_mask(input varchar(19)) RETURNS output VARCHAR(19)
LANGUAGE SQLSCRIPT
AS
BEGIN
output = LEFT(:input,4) || '-XXXX-XXXX-' || RIGHT(:input,4);
END;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment