您好,登录后才能下订单哦!
本文小编为大家详细介绍“MyBatis模糊查询的实现方式有哪些”,内容详细,步骤清晰,细节处理妥当,希望这篇“MyBatis模糊查询的实现方式有哪些”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。
student_name like concat('%',#{studentName},'%')
student_name like '%${studentName}%'
student_name like concat('%','${studentName}','%')
student_name like '%'||#{studentName}||'%'
分析: (1)${}:表示拼接sql串,将接收到参数的内容不加任何修饰拼接在sql中,可能引发sql注入。 (2)#{ }是预编译处理,MyBatis在处理#{ }时,它会将sql中的#{ }替换为?,然后调用PreparedStatement的set方法来赋值,传入字符串后,会在值两边加上单引号,使用占位符的方式提高效率,可以防止sql注入。因此最好使用#{ }方式。 (3)concat函数最好不要使用,最好使用||,因为在Oracle中,concat()只能对两个字符串进行拼接(字符串多的话只能嵌套使用),而||可以对字符串无限拼接。
建议使用第四种哦,示例:
<if test="studentName != null and studentName !=''"> and student_name like '%'||#{studentName}||'%' </if>
在mapper文件里面关于查询if的条件基本都要写出两种空值,否则就会在查询时把其他不需要的数据也查出来。
错误示范:
<if test="studentName != null"> and student_name = #{studentName} </if>
正确示范:
<if test="studentName != null and studentName !=''"> and student_name = #{studentName} </if>
这个是在写日期查询条件时,出现了日期只能修改,但不能为空的问题:
错误示范:
<if test="effDate != null and effDate !=''"> and eff_date = #{effDate} </if> <if test="expDate != null and expDate !=''"> and exp_date = #{expDate} </if>
正确示范:去掉外面的if判空条件
and eff_date = #{effDate} and exp_date = #{expDate}
查询时最好按id倒序,在修改之后不影响原有顺序
比如:order by student_id desc
读到这里,这篇“MyBatis模糊查询的实现方式有哪些”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。