做项目遇到了个奇怪的问题,项目里面要对商品、账户、进行分别的多条件查询,于是我就采用动态多条件分页查询,起初在做账户部分的时候Mybatis是这样写的

<!-- 动态多条件分页查询 -->
<select id="searchPageUseDyc" parameterType="page" resultMap="accountResultMap">
select acc_id,acc_login,acc_name,acc_pass
from account
<where>
<if test="paramsEntity.accId!=null">
and acc_id like #{paramsEntity.accId}
</if>
<if test="paramsEntity.accLogin!=null">
and acc_login like #{paramsEntity.accLogin}
</if>
<if test="paramsEntity.accName!=null">
and acc_name like #{paramsEntity.accName}
</if>
<if test="paramsEntity.accPass!=null">
and acc_pass like #{paramsEntity.accPass}
</if>
</where>
limit #{start},#{rows}
</select>

like 后面直接跟 #{paramsEntity.accName} 不需要添加单引号

然后完成商品查询的时候我一样写了一套

<!-- 动态分页多条件查询(找内容) -->
<select id="searchPageUseDyc" parameterType="page" resultMap="goodsResultMap">
select goods_Id,goods_name,goods_unit,goods_type,goods_color,goods_store,goods_limit,goods_commission,goods_producer,goods_remark,goods_sel_price,goods_buy_price
from goods
<where>
<if test="paramsEntity.goodsId!=null">
        and goods_Id like ${paramsEntity.goodsId}
      </if>
<if test="paramsEntity.goodsName!=null">
        and goods_name like ${paramsEntity.goodsName}
      </if>
<if test="paramsEntity.goodsUnit!=null">
        and goods_unit like ${paramsEntity.goodsUnit}
      </if>
<if test="paramsEntity.goodsType!=null">
        and goods_type like ${paramsEntity.goodsType}
      </if>
<if test="paramsEntity.goodsColor!=null">
        and goods_color like ${paramsEntity.goodsColor}
      </if>
<if test="paramsEntity.goodsStore!=null">
        and goods_store like ${paramsEntity.goodsStore}
      </if>
<if test="paramsEntity.goodsLimit!=null">
        and goods_limit like ${paramsEntity.goodsLimit}
      </if>
<if test="paramsEntity.goodsCommission!=null">
        and goods_commission like ${paramsEntity.goodsCommission}
      </if>
<if test="paramsEntity.goodsProducer!=null">
        and goods_producer like ${paramsEntity.goodsProducer}
      </if>
<if test="paramsEntity.goodsRemark!=null">
        and goods_remark like ${paramsEntity.goodsRemark}
      </if>
<if test="paramsEntity.goodsSelPrice!=null">
        and goods_sel_price like ${paramsEntity.goodsSelPrice}
      </if>
<if test="paramsEntity.goodsBuyPrice!=null">
        and goods_buy_price like ${paramsEntity.goodsBuyPrice}
      </if>
</where>
limit #{start},#{rows}
</select>

但是运行报错了!!!

错误信息You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%% limit 0,3' at line 3

然后我就给单引号添加上了,然后居然就成了,代码这样子

<!-- 动态分页多条件查询(找内容) -->
<select id="searchPageUseDyc" parameterType="page" resultMap="goodsResultMap">
select goods_Id,goods_name,goods_unit,goods_type,goods_color,goods_store,goods_limit,goods_commission,goods_producer,goods_remark,goods_sel_price,goods_buy_price
from goods
<where>
<if test="paramsEntity.goodsId!=null">
        and goods_Id like '${paramsEntity.goodsId}'
      </if>
<if test="paramsEntity.goodsName!=null">
        and goods_name like '${paramsEntity.goodsName}'
      </if>
<if test="paramsEntity.goodsUnit!=null">
        and goods_unit like '${paramsEntity.goodsUnit}'
      </if>
<if test="paramsEntity.goodsType!=null">
        and goods_type like '${paramsEntity.goodsType}'
      </if>
<if test="paramsEntity.goodsColor!=null">
        and goods_color like '${paramsEntity.goodsColor}'
      </if>
<if test="paramsEntity.goodsStore!=null">
        and goods_store like '${paramsEntity.goodsStore}'
      </if>
<if test="paramsEntity.goodsLimit!=null">
        and goods_limit like '${paramsEntity.goodsLimit}'
      </if>
<if test="paramsEntity.goodsCommission!=null">
        and goods_commission like '${paramsEntity.goodsCommission}'
      </if>
<if test="paramsEntity.goodsProducer!=null">
        and goods_producer like '${paramsEntity.goodsProducer}'
      </if>
<if test="paramsEntity.goodsRemark!=null">
        and goods_remark like '${paramsEntity.goodsRemark}'
      </if>
<if test="paramsEntity.goodsSelPrice!=null">
        and goods_sel_price like '${paramsEntity.goodsSelPrice}'
      </if>
<if test="paramsEntity.goodsBuyPrice!=null">
        and goods_buy_price like '${paramsEntity.goodsBuyPrice}'
      </if>
</where>
limit #{start},#{rows}
</select>

然后我就去查文档,光放文档给出的也是不用加单引号的!!

<select id=”findActiveBlogLike”
  parameterType=”Blog” resultType=”Blog”>
  SELECT * FROM BLOG
  <where>
    <if test=”state != null”>
      state = #{state}
    </if>
    <if test=”title != null”>
      AND title like #{title}
    </if>
    <if test=”author != null and author.name != null”>
      AND title like #{author.name}
    </if>
  </where>
</select>

我的问题还真不知道出在哪里!!!奇了怪了,有空再去搞清楚吧 !!!!

MyBatis做动态模糊查询时,like后面要不要加单引号??的更多相关文章

  1. Mybatis使用MySQL模糊查询时输入中文检索不到结果怎么办--转自http://www.jb51.net/article/88236.htm

    这篇文章主要介绍了Mybatis使用MySQL模糊查询时输入中文检索不到结果的解决办法的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下   项目开发中,在做Mybatis动态查询时,遇到了 ...

  2. mybatis做like模糊查询

    http://www.cnblogs.com/cyttina/p/3894428.html

  3. Mybatis使用MySQL进行模糊查询时输入中文检索不到结果

    Mybatis使用MySQL进行模糊查询时输入中文检索时,需要在jdbcURL后增加参数   ?useUnicode=true&characterEncoding=UTF-8

  4. input动态模糊查询的实现方式

    最近在用jQuery实现动态模糊查询的时候,找了挺久都没有找到像Vue.js的watch属性这么好用的动态模糊查询方法.就分享一下目前遇到的坑和可以实现动态查询的几种方式. 1.jQuery的chan ...

  5. Mybatis注解开发模糊查询

    Mybatis注解开发模糊查询 一般在使用mybatis时都是采用xml文件保存sql语句 这篇文章讲一下在使用mybatis的注解开发时,如何进行模糊查询 模糊查询语句写法(在@Select注解中) ...

  6. 一个jpa动态模糊查询的实现

    最近一直在是用spring data jpa,使用起来确实方便,如果是单表的操作基本上通过方法名都可以实现,下面是一个 Specification 实现动态模糊查询的例子这个查询是通过JpaSpeci ...

  7. Hibernate使用createSqlQuery进行模糊查询时找不到数据

    1. 首先明确一点,使用createSqlQuery如下两种方式的占位符都可以使用,这个在官方的文档可以查到. 注意使用模糊查询时,赋值两边不可以添加单引号. Query query = sess.c ...

  8. 【mybatis】mybatis自定义动态字段查询,mybatis实现动态字段查询,如果某个条件为null,则不查询某个字段,否则就查询某个字段

    mybatis实现动态字段查询,如果某个条件为null,则不查询某个字段,否则就查询某个字段 先看一下 怎么实现动态的自定义字段查询: 例如: 而field 就是数据表中的某一个字段 String f ...

  9. Mybatis框架的模糊查询(多种写法)、删除、添加(四)

    学习Mybatis这么多天,那么我给大家分享一下我的学习成果.从最基础的开始配置. 一.创建一个web项目,看一下项目架构 二.说道项目就会想到需要什么jar 三.就是准备大配置链接Orcl数据库 & ...

随机推荐

  1. VS扩展工具

    原文发布时间为:2011-03-09 -- 来源于本人的百度文章 [由搬家工具导入] http://visualstudiogallery.msdn.microsoft.com/site/search ...

  2. 解決eclipse 的alt + / 快捷鍵不好用

    最近公司电脑上的Eclipse没有了自动提示功能,也不是全部不提示,大多数情况下按下“alt+/”键还会产生提示,但是当我在java项目中邪main方法和syso的时候,“alt+/”则会失效,今天在 ...

  3. vue中v-model的一点使用心得

    我的data里面有个值是字典的对象:  config_template: {}, 这个值会被后端返回的数据填充,填充后大概是这样的: u 'config_template': { u 'startSh ...

  4. hdu 3579(中国剩余定理+考虑0)

    Hello Kiki Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total ...

  5. 在Alfred添加自定义站内搜索

    1.Google的站内搜索和渣度的对比,懒得吐槽了 2.在Alfred添加自定义站内搜索步骤 Add Custome Search 把搜索某个关键词的url复制到里面,把url里的关键词替换成{que ...

  6. Android代码中设置字体大小,字体颜色,显示两种颜色.倒计时效果

    Android代码中设置字体大小,字体颜色,显示两种颜色 在xml文件中字体大小用的像素 <TextView android:id="@+id/uppaid_time" an ...

  7. 详解Tomcat系列(一)-从源码分析Tomcat的启动

    在整个Tomcat系列文章讲解之前, 我想说的是虽然整个Tomcat体系比较复杂, 但是Tomcat中的代码并不难读, 只要认真花点功夫, 一定能啃下来. 由于篇幅的原因, 很难把Tomcat所有的知 ...

  8. asp.net上传文件夹权限配置以及权限配置的分析

    切记:一定要禁止给公共上传文件夹的权限设置为everyone,且为完全控制!除非你这个文件夹属于内部操作的,那这样做是允许,其余情况一律禁止! 基本的文件上传文件夹权限配置: 1.在需要配置上传的文件 ...

  9. ubuntu下virtualbox 共享文件夹 & 访问USB设备

    在Ubuntu 12.04 上为Virtualbox 启用USB 设备支持 Ubuntu安装虚拟机,实现文件和USB的共享 Ubuntu下virtualbox 虚拟xp 访问USB设备

  10. VS2010 MFC中 单独添加ODBC数据库记录集类(CRecordset)方法

    基于VS2010 MFC的项目是之前建好的,后来需要添加数据库. 方法分享于此. 1.  打开自己的项目,项目->添加类. 2. 选MFC ODBC使用者,点右下角的添加. 3. 点数据源. / ...