Have a problem doing select queries on our MySql database.
This query is working fine:
SELECT name FROM products WHERE brand = 'nike'
This one doesn't:
SELECT name FROM products WHERE brand = 'tøj'
There are 1,000+ products with brand = 'tøj', so I guess the problem is related to the non-english character.
Strange thing is that it's only when running the query via Wordpress/PHP that things doesn't work. If I run SELECT name FROM products WHERE brand = 'tøj'
through SQLYog, I get the results that I expect.
Does anyone know how to fix this?
Thanks!