Skip to content

Instantly share code, notes, and snippets.

@pawiromitchel
Created March 15, 2021 16:00
Show Gist options
  • Save pawiromitchel/203dfe34ab0f5e82fe484c3233410dcd to your computer and use it in GitHub Desktop.
Save pawiromitchel/203dfe34ab0f5e82fe484c3233410dcd to your computer and use it in GitHub Desktop.
Replace in mysql function
CREATE DEFINER=`root`@`%` FUNCTION `REPLACE_SYMBOLS_WITH_TEXT`(field text) RETURNS text CHARSET utf8mb4
RETURN REPLACE(REPLACE(field, '!', '[uitroepteken]'), '#', '[hashtag]')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment