-
-
Save anonymous/1d8e842965b56087f2dc 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
SELECT CONVERT(CONVERT(name USING BINARY) USING latin1) AS latin1, | |
CONVERT(CONVERT(name USING BINARY) USING utf8) AS utf8 | |
FROM users | |
WHERE CONVERT(name USING BINARY) RLIKE CONCAT('[', UNHEX('80'), '-', UNHEX('FF'), ']') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment