04 - mybatis - 动态sql

动态sql

1 if

<select id="finddysql" resultMap="studentMap" parameterType="student">
   select * from student
   where 1=1
   <if test="name != null ">
       and  username = #{name}
   </if>
   <if test="sex != null ">
       and sex = #{sex}
   </if>
</select>

2 where

<select id="findByNameAndSex" resultType="cn.laixueit.entity.User" parameterType="user">
        select * from user
        <where>
            <if test="username != null and username !=''">
                and username=#{username}
            </if>
            <if test="sex!=null">
                and sex = #{sex}
            </if>
        </where>
    </select>

3 choose when otherwise

4 trim

<select id="findByNameAndSex2" resultType="cn.laixueit.entity.User" parameterType="user">
    select * from user
    <trim prefix="where" prefixOverrides="and">
        <choose>
            <when test="username != null and username !=''">
                and username=#{username}
            </when>
            <when test="sex!=null">
                and sex = #{sex}
            </when>
            <otherwise>
                1=1
            </otherwise>
        </choose>
    </trim>
</select>

5 foreach

  • **item:**集合中元素迭代时的别名,该参数为必选。
  • index:在list和数组中,index是元素的序号,在map中,index是元素的key,该参数可选
  • open:foreach代码的开始符号,一般是(和close=")"合用。常用在in(),values()时。该参数可选
  • separator:元素之间的分隔符,例如在in()的时候,separator=","会自动在元素中间用“,“隔开,避免手动输入逗号导致sql错误,如in(1,2,)这样。该参数可选。
  • close: foreach代码的关闭符号,一般是)和open="("合用。常用在in(),values()时。该参数可选。
  • collection: 要做foreach的对象,作为入参时,List对象默认用"list"代替作为键,数组对象有"array"代替作为键,Map对象没有默认的键。当然在作为入参时可以使用@Param(“keyName”)来设置键,设置keyName后,list,array将会失效。 除了入参这种情况外,还有一种作为参数对象的某个字段的时候。举个例子:如果User有属性List ids。入参是User对象,那么这个collection = “ids”.如果User有属性Ids ids;其中Ids是个对象,Ids有个属性List id;入参是User对象,那么collection = "ids.id"
<insert id="addList">
        insert into user(username,sex)
        values
        <foreach collection="list" index="index" separator="," item="u">
            (#{u.username},#{u.sex})
        </foreach>
    </insert>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值