Last active
December 14, 2015 05:59
-
-
Save salgua/5038995 to your computer and use it in GitHub Desktop.
with this MySQL query you can extract rows that contain in the field "textfield1" only uppercase words
This file contains hidden or 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
#with this query you can extract rows that contain in the field "textfield1" only uppercase words | |
SELECT * FROM t1 WHERE BINARY textfield1 = ucase(textfield1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment