SyntaxFix
Write A Post
Hire A Developer
Questions
To improve James' excellent answer:
It's better to put BINARY in front of the constant instead:
BINARY
SELECT * FROM `table` WHERE `column` = BINARY 'value'
Putting BINARY in front of column will prevent the use of any index on that column.
column