Search with Turkish characters
问题 I have problem on db search with like and elastic search in Turkish upper and lower case. For example I have posts table which contains post titled 'DENEME YAZI' . If I run this query: select * from posts where title like '%deneme%'; or: select * from posts where title like '%YAZI%'; I get correct result but if I run: select * from posts where title like '%yazı%'; it doesn't return any record. My database encoding is tr_TR.UTF-8 . How can I get correct results without entering exact word? 回答1