欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL模糊查询报:ORA-00909:参数个数无效问题的解决

程序员文章站 2022-07-01 09:04:46
用oracle数据库进行模糊查询时,控制台报错如下图所示:原因是因为敲的太快,语法写错了正确的写法是pd.code like concat(concat('%',#{keyword}),'%')jav...

用oracle数据库进行模糊查询时,

控制台报错如下图所示:

SQL模糊查询报:ORA-00909:参数个数无效问题的解决

原因是因为敲的太快,语法写错了

正确的写法是

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

java.sql.sqlsyntaxerrorexception: ora-00909: 参数个数无效

用mybatis进行多参数模糊查询的时候遇到这个异常,看了下打印日志,发现异常出在预编译之后,插入实参的时候。

==> 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)

异常提示:参数个数无效。检查了下sql语句

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

发现问题出现在concat上,concat是连接两个字符串的函数,这里连接了三个,把sql改成两个concat嵌套的

<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>

运行成功。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持!