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.
|
|
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.
|
|||
|
|
|
|
If your column collation is case insensitive, you can override it in your query:
COLLATE clause syntax. |
||
|
|
|
|
|
||
|
|