Summary of MySQL database like statement wildcard fuzzy query

Summary of MySQL database like statement wildcard fuzzy query

MySQL error: Parameter index out of range (1 > number of parameters, which is 0)——Summary of MySQL database like statement wildcard fuzzy query

Introduction Today, when using MySQL statements to perform add, delete, modify and query operations, the console reported the following error: Parameter index out of range (1 > number of parameters, which is 0). Translated, it means: the result data is 1, the true value should be 0, the parameter is out of bounds, and an error occurs. This also makes it clear where we made a mistake - the parameter, that is, the handling of the wildcard "?". This article analyzes the errors encountered when executing common SQL statements and using the like statement for wildcard fuzzy queries, and provides solutions.

insert image description here


1. Analyze SQL statements

1. Query analysis of common SQL statements

First, let's analyze the SQL statement I used before:

String sql = "select count(*) from tab_route where cid = ?";

Note : We directly use the wildcard "?" to replace the parameter and use the Spring framework's JdbcTemplate to perform add, delete, modify and query operations. There is no problem here.

2. How to process common SQL query statements

If an error occurs here, please resolve it as follows:

Check the format of the wildcard "?" . Note that it is entered in the English input method, not the Chinese question mark. Check the SQL statement. The parameters passed using the wildcard are not quoted. For example, the following is wrong:

String sql = "select count(*) from tab_route where cid = '?'";

3. Use the like wildcard fuzzy query statement analysis

Similarly, we still use the above method to perform fuzzy query operations and take a look at the SQL statement that fails:

String sql = "select count(*) from tab_route where rname like '%?%';

The execution result is an error : Parameter index out of range (1 > number of parameters, which is 0) .

Result analysis : The result data is 1, the true value should be 0, the parameter is out of bounds, and an error occurs.

We make it clear that there is no problem with the following statement:

String sql = select * from tab_route where rname like '%张%';

This also makes it clear where we made a mistake - the parameter, that is, the handling of the wildcard "?" in the like statement .

2. Analysis of fuzzy query using wildcards in like statements

1. Application scenarios of like statements

Using the like wildcard to perform fuzzy queries is something we often encounter in projects, such as fuzzy queries for data in the search box.

2. Fuzzy query analysis

It is not possible to parse '%?%' directly in the SQL statement, so we need to process the connected string, use the dynamic concatenation concat() method to connect the contents of '%?%' , and then perform the add, delete, modify and query operations.

concat(str1, str2, str3...) will generate a new string

3. Correct sentences

String sql = "select count(*) from tab_route where rname like concat('%',?,'%')";

3. MyBatis like fuzzy query and keyword distinction

When using like fuzzy query in MyBatis, please note that the keyword is: #{str} and the query clause is:

select * from table where name like concat('%',#{name},'%');

If you add a sort field, please note that the keyword is: ${str} and the query clause is:

select * from table where name like concat('%',#{name},'%') order by ${id};

Summary This article analyzes the errors encountered when executing ordinary SQL statements and using like statements for wildcard fuzzy queries, and gives corresponding solutions. At the same time, the operation of fuzzy query in MyBatis and the distinction between different keywords are supplemented. The road to coding is long, so I hope you will be careful.

insert image description here

This is the end of this article about the summary of MySQL database like statement wildcard fuzzy query. For more relevant MySQL fuzzy query like content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL fuzzy query usage (regular, wildcard, built-in function)
  • Mysql | Detailed explanation of fuzzy query using wildcards (like,%,_)
  • A brief discussion on the implementation of fuzzy query using wildcards in MySQL
  • A brief discussion on wildcard escape in MySQL fuzzy query
  • MYSQL Must-know Reading Notes Chapter 8: Using Wildcards for Filtering
  • Things to note when using wildcards in MySQL
  • Detailed introduction to the use of MySql like fuzzy query wildcards
  • mysql regular expression LIKE wildcard
  • mysql wildcard (sql advanced filtering)

<<:  Analysis of 2 Token Reasons and Sample Code in Web Project Development

>>:  Some suggestions for improving Nginx performance

Recommend

Details of 7 kinds of component communication in Vue3

Table of contents 1. Vue3 component communication...

MySQL/MariaDB Root Password Reset Tutorial

Preface Forgotten passwords are a problem we ofte...

Detailed explanation of the usage of 5 different values ​​of CSS position

The position property The position property speci...

Docker network mode and configuration method

1. Docker Network Mode When docker run creates a ...

How to export mysql table structure to excel

The requirements are as follows Export the table ...

Nginx compiled nginx - add new module

1. View existing modules /usr/local/nginx/sbin/ng...

Some tips for writing high-performance HTML applications

How can you improve web page performance? Most de...

Summary of data interaction between Docker container and host

Preface When using Docker in a production environ...

How to use CSS3 to implement a queue animation similar to online live broadcast

A friend in the group asked a question before, th...

A brief analysis of JS original value and reference value issues

Primitive values ​​-> primitive types Number S...

Linux Autofs automatic mount service installation and deployment tutorial

Table of contents 1. Introduction to autofs servi...

JS implements simple calendar effect

This article shares the specific code of JS to ac...

Some methods to optimize query speed when MySQL processes massive data

In the actual projects I participated in, I found...

Detailed explanation of nginx forward proxy and reverse proxy

Table of contents Forward Proxy nginx reverse pro...

Reasons and methods for Waiting for table metadata lock in MySQL

When MySQL performs DDL operations such as alter ...