Linked Questions
29 questions linked to/from How to conduct an Accent Sensitive search in MySql
1 vote
1 answer
786 views
Search the French Accents in MySql [duplicate]
Possible Duplicate: How to conduct an Accent Sensitive search in MySql I have a MySQL database which consists of list of words which contain both French and English Letters in a table. Ex : Datas ...
2 votes
1 answer
206 views
Select query mysql results 'û' appears when I search for 'u' [duplicate]
My query is: SELECT * FROM enwiki.page where title_text = 'drug'; One of the results I got has the tilte_text = 'Drûg'. How can I prevent that?
1 vote
1 answer
311 views
mysql select distinct statement (strict version?) [duplicate]
I'm running: MySQL Software version: 5.5.25 - Source distribution I have a table like this: Region | City ----------------- quebec | montreal _________________ quebec | montréal The cities are ...
0 votes
0 answers
36 views
MYSQL wrong results for search by umlaut [duplicate]
I setup an InnoDB in mysql 5.7.26. The characterset is utf8mb4, but now i found out some wrong behaviour when filtering by umlauts. Setup: mysql> SHOW VARIABLES WHERE Variable_name RLIKE '^(...
0 votes
0 answers
37 views
Special characters sensitive sql query [duplicate]
I am using a pdo connection to my mysql database (utf8_general_ci) and the connection sets charset to charset=utf8: public function connect() { $dsn = 'mysql:host=' . $this->host . ';dbname=' . ...
1 vote
0 answers
13 views
Which MySQL Collation to use so that queries match the word exactly and not its accents? [duplicate]
I have a column which has values like 'fur' and 'für'. Now if I write the query select * from table where text = 'fur'; it gives me both 'fur' and 'für' and I want it to only return 'fur'. Which ...
6 votes
4 answers
901 views
mysql accent insensitive and dotted insensitive search
The Problem: I am trying to implement a search algorithm that shows the results even when dotted chars are provided. In other words: SELECT 'über' = 'uber' or SELECT 'mas' = 'maş' these results will ...
0 votes
1 answer
5k views
MySQL Collate Latin1_General_CI_AI Problem
I have the following select statement where I'm trying to search for a players first and last name that may contain accents in it. $sql = " SELECT * FROM player WHERE player.player_first ...
1 vote
3 answers
2k views
MySQL LIKE doesn't work with "â"
I am running a MySQL 5.6.26 on Windows 2012R2, in mysql.ini everything is configured to use UTF-8 Unicode (utf8). [mysqld] collation-server = utf8_unicode_ci init-connect='SET NAMES utf8' character-...
2 votes
1 answer
2k views
php, mysql: compare strings - accent sensitive and case insensitive
i need to perform a name search in the database based on a set of keywords. the result should be accent sensitive and case insensitive. following the solution i found here plus few modifications to ...
1 vote
1 answer
2k views
Doctrine2 accents-insensitive search in DQL
I didn't find anything good on that topic. Im currently implementing simple search function with will use LIKE to find requested records. But I wan't to make "accents-free" search. For example: ...
0 votes
2 answers
728 views
MySQL - How to use SELECT to get only special characters in UTF8
I'am trying to SELECT a cloumn in the table which contains only vowels. It works fine till I try to select entries with german umlauts (special chars like ä,ö,ü), then the query makes no difference ...
2 votes
1 answer
697 views
how to create index with accent in MySQL
I have a database which I manage with phpMyAdmin. I have a table to save the verb tense and the verb. It looks like it follows: Column | Type | Collation | Attributes | Null | Default ...
0 votes
2 answers
664 views
MySQL query returns wrong data when column contains utf-8 characters
I have some MySQL table with column 'title' which type is varchar(255), character set is utf8mb4 and collation is utf8mb4_general_ci. Lets say I have few records with title and those titles contain (...
1 vote
1 answer
808 views
mysql collation and grouping: how to ungroup lower, uppercased and accents?
select count(answer1) as total, questionsResults.answer1 from questionsResults WHERE correct=1 GROUP by answer1 My problem is that this groups lowercases and uppercases and even removes ...