Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RodrigoDornelles/aae1882bc29ca67bb521196a2181a51d to your computer and use it in GitHub Desktop.
Save RodrigoDornelles/aae1882bc29ca67bb521196a2181a51d to your computer and use it in GitHub Desktop.
simple slugfy sql command with regex
UPDATE page SET slug = regexp_replace(title, '[^a-z]+', '-', 'g');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment