In the SQL like statement, for example SELECT * FROM user WHERE username LIKE '%luchi%' SELECT * FROM user WHERE username LIKE '_luchi_',
But when the field to be queried by like contains %, how do we check: At this time, you need to specify that the '%' in the field is not used as a wildcard; test: Here we use this table Before escaping: SELECT * FROM user WHERE username LIKE '%%%'; Here you will find that the three % signs are all treated as wildcards; After escaping: SELECT * FROM user WHERE username LIKE '%1%%' ESCAPE '1'; Query successful Note:
Tips and Suggestions:MySQL wildcards are very useful. This functionality comes at a cost, however: wildcard searches generally take longer to process than the other searches discussed previously. Here are some tips to remember when using wildcards.
This is the end of this article on how to use MySQL like to query fields containing '%' (ESCAPE usage). For more information about MySQL like query %, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Native JS to achieve blinds special effects
>>: Solution to Nginx SSL certificate configuration error
1. The catalina.bat must be set to UTF-8. If I do...
Ping www.baidu.com unknown domain name Modify the...
1. Under 800*600, if the width of the web page is...
1. Make sure the system has the required libaio s...
View the IP address of the Container docker inspe...
As shown below: select a1,a2,a1+a2 a,a1*a2 b,a1*1...
Install Make sure your user has permission to ins...
1: Throughput (Requests per second) A quantitativ...
Arrange by functionNN : Indicates which earlier ve...
Table of contents Importing JavaScript 1. Interna...
Table of contents Parsers and preprocessors Query...
Table of contents Error message Cause Error demon...
Hash Join Hash Join does not require any indexes ...
The question is referenced from: https://www.zhih...
Docker Features 1) Quick to get started It only t...