"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Does MySQL Handle Case Sensitivity in SELECT Queries?

How Does MySQL Handle Case Sensitivity in SELECT Queries?

Published on 2025-01-29
Browse:822

How Does MySQL Handle Case Sensitivity in SELECT Queries?

MySQL: Case Sensitivity in SELECT Queries

While MySQL SELECT statements are generally case-insensitive by default, this behavior can be overridden for specific use cases.

Default Case-Insensitive Behavior

When executing a SELECT query, MySQL defaults to case-insensitive comparison for most data types, including strings. This means that queries like:

SELECT * FROM `table` WHERE `Value` = "iaresavage"

Will return results even if the actual value of Value in the database is IAreSavage.

Case-Sensitive Comparison

However, if you need case-sensitive comparison, you can use a binary comparison operator. In MySQL, this is the BINARY operator. For example:

SELECT * FROM `table` WHERE BINARY `Value` = "iaresavage"

With this comparison, the query will only return results if the value in the database is exactly iaresavage.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3