当前位置:   article > 正文

mybatis查询PostgreSQL报错:无法确定参数 $1 的数据类型_错误: 无法确定参数 $1 的数据类型

错误: 无法确定参数 $1 的数据类型

错误信息

  1. ### Cause: org.postgresql.util.PSQLException: 错误: 无法确定参数 $1 的数据类型
  2. ; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: 错误: 无法确定参数 $1 的数据类型] with root cause
  3. org.postgresql.util.PSQLException: 错误: 无法确定参数 $1 的数据类型

Mapper.xml配置

  1. where 1=1
  2. <if test="name != null and name != ''">
  3. AND name like concat('%', #{name} , '%')
  4. </if>

问题

   排查发现是第一个if条件中的like参数出现无法识别数据类型的异常,将其强转一下类型即可

方式一修改

  1. where 1=1
  2. <if test="name != null and name != ''">
  3. AND name like concat('%', #{name}::text , '%')
  4. </if>

方式二修改

  1. where 1=1
  2. <if test="name != null and name != ''">
  3. AND name like '%'||#{name}||'%'
  4. </if>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/972479
推荐阅读
相关标签
  

闽ICP备14008679号