vote up 0 vote down star

When working with MySQL, how can I fetch all rows where the name column is all uppercase?

Since equality is case insensitive, I'm not quite sure how to do this.

flag

2 Answers

vote up 3 vote down

If your column collation is case insensitive, you can override it in your query:

SELECT * FROM my_table WHERE my_column COLLATE latin1_bin = UPPER(my_column);

COLLATE clause syntax.

link|flag
vote up 1 vote down

SELECT * FROM my_table REGEXP '^[[:upper:]]+$';

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.