My application have members with fields with accented (spanish) characters. Example:
m.lastname = "Fernández"
I want to find this member using the PostgreSQL LIKE operator like this:
SELECT * FROM members WHERE lastname LIKE '%rna%';
But, because 'a' and 'á' are different characters, that doesn't work. Any help on this?