MySQL Case Sensitive WHERE IN Clause

MySQL WHERE IN case sensitive select clause.

SELECT
    *
FROM
    `table`
WHERE
    CAST(`column` AS BINARY) NOT IN ('Foo', 'Bar', 'Baz');
View this page on GitHub.
Posted .

Comments

Leave a Reply