Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zxsanny/7abfd74c0bed30d4fcee5acb0e4505e3 to your computer and use it in GitHub Desktop.
Save zxsanny/7abfd74c0bed30d4fcee5acb0e4505e3 to your computer and use it in GitHub Desktop.
set @token = 'OrderBy';
SELECT *
FROM
(
SELECT replace( substring(settings, position(@token in settings) + length(@token) + 2,
locate(',', settings, position(@token in settings) + length(@token) + 2) - (position(@token in settings) + length(@token) + 2)),
'"','') as field
FROM widgets
) t
WHERE t.field != 'null';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment