今天在做一个模糊查询的时候,因为使用了预编译,一个冲突没法解决,在网上找了半天也没有找到解决的方法,最后自己解决的,决定记录下来。
在预编译中,报错如下: Parameter index out of range (1 > number of parameters, which is 0).
简单的解释就是:
找到了0个问号,却插入了1个值,导致参数越界.
当时,我的sql如下:
select id,name,age from people where address LIKE '%?%' order by id desc
其实我是用的是mybatis,但是,这里我就直接给出sql,方便说明。
我们看到‘%?%’ ,对,没错,这里的意思一个%?%的字符串,所以,不会被当做一个参数解析,那怎麽办呢。我要预编译,就必须要用到?,但是这样写是错误的:
select id,name,age from people where address LIKE %?% order by id desc
,好吧,直接给出解决方法,用sql的concat字符串连接函数,改成下面的样子就可以了。
select id,name,age from people where address LIKE concat('%',?,'%') order by id desc
这样就可以了,在mybatis中,直接把问号换成参数,也是一样的,比如:
select id,name,age from people where address LIKE concat('%',#{key,jdbcType=VARCHAR},'%') order by id desc
这样完美解决,不知道还有没有更好的方法,反正我不知道 了。