码迷,mamicode.com
首页 > 数据库 > 详细

Mybatis动态SQL

时间:2019-06-26 01:06:49      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:and   upd   动态sql   范围   ids   配置   lines   test   if判断   

1.添加数据设置(Newsxml配置)

<insert id="doCreate" parameterType="News" keyProperty="nid" keyColumn="nid" useGeneratedKeys="true"><!--添加数据-->
        INSERT INTO news VALUES
        <trim prefix="(" suffix=")" suffixOverrides=",">,</trim>
    </insert>

2.if语句添加配置

 <insert id="doCreate" parameterType="News" keyProperty="nid" keyColumn="nid" useGeneratedKeys="true">
        INSERT INTO news(title,content) VALUES
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="title == null">
                ‘NOTitle‘,
            </if>
            <if test="title != null">
                #{title},
            </if>
            <if test="content == null">
                ‘NOContent‘,
            </if>
            <if test="content != null">
                #{content},
            </if>
        </trim>
    </insert>

3.if判断分页查询

<select id="findSplit" resultType="News" parameterType="java.util.Map">
        SELECT nid,title,content FROM news
        <if test="column != null and keyword != null and column != &quot;&quot; and keyword != &quot;&quot;">
            WHERE ${column} LIKE #{keyword}
        </if>
        LIMIT #{start},#{lineSize} ;
    </select>
    <select id="getAllCount" resultType="java.lang.Long" parameterType="java.util.Map">
        SELECT COUNT(*) FROM news
        <if test="column != null and keyword != null and column != &quot;&quot; and keyword != &quot;&quot;">
            WHERE ${column} LIKE #{keyword}
        </if>
    </select>

4.多次判断,if只能执行一次判断

    <select id="findAllCondition" resultType="News" parameterType="java.util.Map">
        SELECT nid,title FROM news
        <where>
            <choose>
                <when test="nid != null and title !=null and content !=null">
                    nid=#{nid} AND title=#{title} AND content=#{content}
                </when>
                <when test="nid != null and title !=null and content==null">
                    nid=#{nid} AND title=#{title}
                </when>
                <when test="nid != null and title ==null and content!=null">
                    nid=#{nid} AND content=#{content}
                </when>
            </choose>
        </where>
    </select>

5.set动态更新

    <update id="doEdit" parameterType="News">
        UPDATE news
        <set>
            <if test="title != null and title != &quot;&quot;">
                title=#{title},
            </if>
            <if test="content != null and content != &quot;&quot;">
                content=#{content},
            </if>
        </set>
        <where>
          <if test="nid != null and nid != 0">
              nid=#{nid}
          </if>
        </where>
    </update>

6.指定范围数据查询foreach

<select id="findByIds" resultType="News" parameterType="java.lang.Long">
        <include refid="selectBase"/>
        <where>
            nid IN
            <foreach collection="array" open="(" close=")" separator="," item="ele">
              #{ele}
            </foreach>
        </where>
    </select>

7.批量删除foreach

<delete id="doRemoveByIds" parameterType="java.lang.Long">
        DELETE FROM news
        <where>
            nid IN
            <foreach collection="array" open="(" close=")" separator="," item="ele">
                #{ele}
            </foreach>
        </where>
    </delete>

 

Mybatis动态SQL

标签:and   upd   动态sql   范围   ids   配置   lines   test   if判断   

原文地址:https://www.cnblogs.com/fcitx/p/11087487.html

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