Home > Database > Mysql Tutorial > body text

Why Do `Harligt` and `Härligt` Return the Same Results in MySQL?

Linda Hamilton
Release: 2024-10-25 08:50:02
Original
555 people have browsed it

Why Do `Harligt` and `Härligt` Return the Same Results in MySQL?

MySQL's Treatment of Unicode Characters: Ä, Ö, and Ü

It is puzzling to encounter identical query results when searching for both "Harligt" and "Härligt" in MySQL. This behavior stems from MySQL's default collation settings that equate certain Unicode characters.

MySQL's non-language-specific Unicode collations, such as utf8_general_ci and utf8_unicode_ci, treat certain characters as equivalent, namely:

  • Ä = A
  • Ö = O
  • Ü = U

As a result, the two queries perceive all three characters as identical, thus yielding matching results.

To resolve this issue, there are two options:

  1. Change Collation: Switch to a collation that does not perform this character equating, such as utf8_bin. However, this decision may have wider implications on data processing.
  2. Override Collation for Specific Queries: For individual queries, it is possible to override the default collation by explicitly specifying the desired one. For example:
<code class="sql">select * from topics where name='Harligt' COLLATE utf8_bin;</code>
Copy after login

This approach allows for case-sensitive searches without the automatic character conversion.

If a case-insensitive search is desired but without the character conversion, MySQL does not currently provide a suitable collation. However, there are ongoing discussions and potential solutions within the community.

The above is the detailed content of Why Do `Harligt` and `Härligt` Return the Same Results in MySQL?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!