How do you select a field that contains only uppercase character in mysql or a field that doesn\'t contain any lower case character?
This worked for me. It found all user emails with uppercase character:
SELECT * FROM users WHERE mail REGEXP BINARY '[A-Z]';