In Postgresql how to achieve separate search result with and without accent using like/ilike, something like this:
The record names are: cafe, café, cafeteria
If I use
select name from cafe-table where name like '%cafe%';
then the result will becafe, café, cafeteria
But If I select with
%café%
(with the accent) I just want the result iscafé
I've already tried unaccent
but it makes the result the same for 2 queries.
You can use the unaccent module:
Install:
Then your query could look like this: