Is there a way to do a query on PostgreSQL that will ignore accents on the columns?
SELECT * FROM people WHERE name ILIKE 'ivan'
I want a query like the one above to return records whose name
is 'Iván', for example.
Is there a way to do a query on PostgreSQL that will ignore accents on the columns?
SELECT * FROM people WHERE name ILIKE 'ivan'
I want a query like the one above to return records whose name
is 'Iván', for example.
You might find either of these solutions useful: