码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis模糊匹配和正则

时间:2016-11-06 17:48:15      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:mybatis   正则   模糊匹配   

模糊匹配

<select id="findByName" parameterType="string" resultType="Student">
        select * from student where 
技术分享student.name like "%"#{name}"%";  
 <select>



正则

 <select id="findByName" parameterType="string" resultType="Student">
        select * from student where student.name REGEXP  "^["#{name}"]"  
    </select>

本文出自 “matengbing” 博客,请务必保留此出处http://matengbing.blog.51cto.com/11395502/1869955

mybatis模糊匹配和正则

标签:mybatis   正则   模糊匹配   

原文地址:http://matengbing.blog.51cto.com/11395502/1869955

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!