首页 > 作文

Mybatis如何解决sql中like通配符模糊匹配问题

更新时间:2023-04-04 14:52:23 阅读: 评论:0

目录
sql中like通配符模糊匹配问题将查询条件通过功能类处理后台contronller获得查询条件mapper.xml中对应的使用方法使用like实现模糊匹配方式一方式二方式三

sql中like通配符模糊匹配问题

针对oracle数据库:

将查询条件通过功能类处理

/**  * description: 处理转义字符%和_,针对oracle数据库  *  * @param str  * @return  */ public static string escapestr(string str) {  string temp = "";  for (int i = 0; i <爱情无价; str.length(); i++) {   if (str.charat(i) == '%' || str.charat(i) == '_') {    temp += "\\" + str.charat流鼻血吃什么好(i);   } el {    temp += str.charat(i);   }  }  return temp; }

后台contronller获得查询条件

并调用工具类处理

string arean彭佳慧个人资料ame = request.getparameter("arean斜边ame"); if (areaname != null) {  if ("".equals(areaname)) {   areaname = null;  } el {   areaname = stringutils.escapestr(areaname);     }    }

mapper.xml中对应的使用方法

<if test="param.areaname!=null"> and areaname like '%'||#{param盼望着盼望着.areaname}||'%' escape '\'</if>

使用like实现模糊匹配

方式一

lect * from t_ur where name like ' %${value}% '

方式二

lect * from t_ur where name like '%'||${value}||'%'

方式三

lect * from t_ur where name like #{do_it_in_java}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。

本文发布于:2023-04-04 14:52:22,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/e118cc1a66507becef6b20e67e360874.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Mybatis如何解决sql中like通配符模糊匹配问题.doc

本文 PDF 下载地址:Mybatis如何解决sql中like通配符模糊匹配问题.pdf

标签:方式   模糊   条件   通配符
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图