Reputation: 1202
I have a problem. When I have this code SELECT FIRST_NAME FROM CONTACT WHERE FIRST_NAME LIKE '%ñ%'
why is it returning all FIRST_NAME
that has n
without ñ
. Im expecting only those that have ñ
. Thanks in advance.
Upvotes: 11
Views: 7915
Reputation: 263843
SELECT FIRST_NAME
FROM CONTACT
WHERE FIRST_NAME LIKE '%ñ%' COLLATE utf8_spanish_ci
Upvotes: 14