SQL模糊查询报:ORA-00909:参数个数无效问题的解决
用oracle数据库进行模糊查询时,
控制台报错如下图所示:
文章图片
原因是因为敲的太快,语法写错了
正确的写法是
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('%', ?, '%')异常提示:参数个数无效。检查了下SQL语句
2018-12-13 20:24:28,567 DEBUG [com.ss.learn.chapter3.mapper.RoleMapper.getRolesByIdAndNote] - ==> Parameters: 1(String), 1(String)
select role_id, role_name, note from t_rolewhere role_name like concat('%', ?, '%') and note like concat('%', ?, '%')
发现问题出现在concat上,concat是连接两个字符串的函数,这里连接了三个,把SQL改成两个concat嵌套的
select role_id, role_name, note from t_role where role_name like concat(concat('%', #{roleName}), '%')and note like concat(concat('%', #{note}), '%')
总结 【SQL模糊查询报:ORA-00909:参数个数无效问题的解决】运行成功啦!以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家!
推荐阅读
- 关于QueryWrapper|关于QueryWrapper,实现MybatisPlus多表关联查询方式
- mybatisplus如何在xml的连表查询中使用queryWrapper
- mybatisplus|mybatisplus where QueryWrapper加括号嵌套查询方式
- MybatisPlus使用queryWrapper如何实现复杂查询
- py连接mysql
- 2019-01-18Mysql中主机名的问题
- MySql数据库备份与恢复
- mysql|InnoDB数据页结构
- 数据库|SQL行转列方式优化查询性能实践
- mysql中视图事务索引与权限管理