SQL fuzzy query report: ORA-00909: invalid number of parameters solution

SQL fuzzy query report: ORA-00909: invalid number of parameters solution

When using Oracle database for fuzzy query,

The console error is shown in the following figure:

The reason is that I typed too fast and the grammar was wrong.

The correct way to write it is

pd.code like concat(concat('%',#{keyword}),'%')

java.sql.SQLSyntaxErrorException: ORA-00909: invalid number of parameters

I encountered this exception when using MyBatis for multi-parameter fuzzy query. I looked at the print log and found that the exception occurred after pre-compilation and when inserting actual parameters.

==> Preparing: select role_id, role_name, note from t_role where role_name like concat('%', ?, '%') and note like concat('%', ?, '%')
2018-12-13 20:24:28,567 DEBUG [com.ss.learn.chapter3.mapper.RoleMapper.getRolesByIdAndNote] - ==> Parameters: 1(String), 1(String)

Exception message: The number of parameters is invalid. Checked the SQL statement

select role_id, role_name, note from t_role
where role_name like concat('%', ?, '%') and note like concat('%', ?, '%')

I found that the problem occurred in concat. concat is a function that connects two strings. Here, three are connected. Change the SQL to two nested concats.

<select id="getRolesByIdAndNote" parameterType="map" resultType="role">
        select role_id, role_name, note from t_role 
        where role_name like concat(concat('%', #{roleName}), '%')
        and note like concat(concat('%', #{note}), '%')
    </select>

Summarize

The operation was successful! The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM!

You may also be interested in:
  • About SQL fuzzy query
  • How to handle special characters in fuzzy query in SqlServer
  • Summary of common methods of SQL Server fuzzy query
  • What to do if Mybatis cannot retrieve results when entering Chinese characters using MySQL fuzzy query

<<:  Docker builds Redis5.0 and mounts data

>>:  Detailed explanation of flex layout in CSS

Recommend

A brief analysis of the basic concepts of HTML web pages

What is a web page? The page displayed after the ...

Source code reveals why Vue2 this can directly obtain data and methods

Table of contents 1. Example: this can directly g...

Example of how to use CSS3 to layout elements around a center point

This article introduces an example of how CSS3 ca...

Detailed explanation of table return and index coverage examples in MySQL

Table of contents Index Type Index structure Nonc...

A brief discussion on React native APP updates

Table of contents App Update Process Rough flow c...

Two solutions for Vue package upload server refresh 404 problem

1: nginx server solution, modify the .conf config...

Example code for CSS pseudo-classes to modify input selection style

Note: This table is quoted from the W3School tuto...

Vue uses WebSocket to simulate the chat function

The effect shows that two browsers simulate each ...

MySQL 5.7.17 installation and configuration method graphic tutorial

This article shares the installation and configur...

CSS3 creates 3D cube loading effects

Brief Description This is a CSS3 cool 3D cube pre...

Realize three-level linkage of year, month and day based on JavaScript

This article shares the specific code for JavaScr...

Problems with using wangeditor rich text editing in Vue

wangEditor is a web rich text editor developed ba...