Skip to content

Instantly share code, notes, and snippets.

@paperdarwin
Created January 30, 2014 13:42
Show Gist options
  • Save paperdarwin/8708530 to your computer and use it in GitHub Desktop.
Save paperdarwin/8708530 to your computer and use it in GitHub Desktop.
teamskeet scenes with non ansi characters in description
SELECT * FROM updates WHERE NOT HEX(mdesc) REGEXP '^([0-7][0-9A-F])*$';
@paperjayar
Copy link

 SELECT mid,mname,mdesc,mstory FROM updates WHERE NOT HEX(mname) REGEXP '^([0-7][0-9A-F])*$' OR NOT HEX(mdesc) REGEXP '^([0-7][0-9A-F])*$' OR NOT HEX(mstory) REGEXP '^([0-7][0-9A-F])*$';

edited your code to look also in mname and mstory

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