Created
February 12, 2018 09:41
-
-
Save zxsanny/7abfd74c0bed30d4fcee5acb0e4505e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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