In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces examples to compare strings and numbers in MySQL. The content of the article is carefully selected and edited by the author. It has certain pertinence and is of great reference significance to everyone. Let's learn about the following examples to compare strings and numbers in MySQL.
In projects, we often use fuzzy search, but if we compare string types and number types incorrectly, sometimes the search results are not what we expect. Examples are as follows:
The xml statement in mybatis is as follows:
AND (name like concat("%",#{criteria},"%") OR id = #{criteria})
When searching, we enter "884 test" and the result will contain records with id=884, but no name matches. This is the pitfall of MySQL string and number comparisons: the comparison converts string types to integer types, starting with the first letter and ending with non-numeric types.
A few examples:
SELECT "abc"=1; Result: 0SELECT "1abc"=1; Result: 1SELECT "abc"=0; Result: 1SELECT "a2bc"=2; Result: 0
So how to solve this problem, in fact, only need to do a type conversion can be, as follows:
SELECT "2bc"=cast(2 as CHAR); Result: 0
After reading the above examples about comparing MySQL strings and numbers, many readers must have some understanding, if you need to get more industry knowledge information, you can continue to pay attention to our industry information column.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.