In MySQL, I can specify the collation if I have a standard WHERE clause like this:
SELECT * FROM myTable WHERE email_address = '[email protected]' COLLATE utf8_general_ci;
However the following fails if I have multiple email addresses in a WHERE-IN clause
SELECT * FROM myTable WHERE email_address IN ('[email protected]', '[email protected]') COLLATE utf8_general_ci;
What am I missing to get this to work? Mysql 5.5.
Thanks!