Skip to content

Instantly share code, notes, and snippets.

@kaja47
Created October 29, 2012 04:50
Show Gist options
  • Save kaja47/3971590 to your computer and use it in GitHub Desktop.
Save kaja47/3971590 to your computer and use it in GitHub Desktop.
Daily dose of MySQL hackery
-- rather slow
select * from posts
where text rlike '[[:<:]](pic|picture|image|photo)[[:>:]].*related'
-- much much faster
select * from posts
where text like '%related%'
and text rlike '[[:<:]](pic|picture|image|photo)[[:>:]].*related'
@paranoiq
Copy link

:]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment