I have a query like this :
Select distinct keyword from keyword_table
With two keywords : cafe, café
. That query only choose one. I want it only distinct two keyword cafe
( not café
) . How can I do? Column's collation is utf8_unicode_ci
.
I have a query like this :
Select distinct keyword from keyword_table
With two keywords : cafe, café
. That query only choose one. I want it only distinct two keyword cafe
( not café
) . How can I do? Column's collation is utf8_unicode_ci
.