How do you force mysql LIKE to be case sensitive? 201 Use LIKE BINARY: mysql> SELECT 'abc' LIKE 'ABC'; -> 1 mysql> SELECT 'abc' LIKE BINARY 'ABC';