zoukankan      html  css  js  c++  java
  • 动态sql


    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

    <mapper namespace="studentNamespace">

    <!--实体和表之间的映射 type:表示实体全路径 id为标识-->
    <resultMap type="com.mybatis.Student" id="studentMap">
    <id property="id" column="students_id"/>
    <result property="name" column="students_name"/>
    <result property="sal" column="students_sal"/>
    </resultMap>


    <!-- 动态SQL操作之查询 parameterType:表示参数类型 resultMap:表示返回类型-->
    <select id="findAll" parameterType="com.mybatis.Student" resultMap="studentMap">
    select * from students
    <where>
    <if test="id!=null">
    and students_id = #{id}
    </if>
    <if test="name!=null">
    and students_name = #{name}
    </if>
    <if test="sal!=null">
    and students_sal = #{sal}
    </if>
    </where>
    </select>
    <!--动态SQL操作之更新-->
    <!-- set标签自动判断哪个是最后一个字段,会自动去掉最后一个,号 -->
    <update id="dynaUpdate" parameterType="com.mybatis.Student">
    update students
    <set>
    <if test="name!=null">
    students_name = #{name},
    </if>
    <if test="sal!=null">
    students_sal = #{sal},
    </if>
    </set>
    where students_id = #{id}
    </update>
    <!--动态SQL操作之删除,多选删除和单选删除都可以-->
    <delete id="dynaDeleteArray">
    delete from students where students_id in
    <!-- foreach用于迭代数组元素
    open表示开始符号
    close表示结束符合
    separator表示元素间的分隔符
    item表示迭代的数组,属性值可以任意,但提倡与方法的数组名相同
    #{ids}表示数组中的每个元素值
    -->
    <foreach collection="array" open="(" close=")" separator="," item="ids">
    #{ids}
    </foreach>
    </delete>
    <!--动态SQL操作之插入 -->
    <!-- sql片段对应字段名,id属性值任意 -->
    <sql id="key">
    <!-- 去掉最后一个, -->
    <trim suffixOverrides=",">
    <if test="id!=null">
    students_id,
    </if>
    <if test="name!=null">
    students_name,
    </if>
    <if test="sal!=null">
    students_sal,
    </if>
    </trim>
    </sql>


    <!-- sql片段对应?,id属性值任意 -->
    <sql id="value" >
    <!-- 去掉最后一个, -->
    <trim suffixOverrides=",">
    <if test="id!=null">
    #{id},
    </if>
    <if test="name!=null">
    #{name},
    </if>
    <if test="sal!=null">
    #{sal},
    </if>
    </trim>
    </sql>

    <!-- <include refid="key"/>和<include refid="value"/>表示引用上面定义的sql片段 -->
    <insert id="dynaInsert" parameterType="com.mybatis.Student">
    insert into students(<include refid="key"/>) values(<include refid="value"/>)
    </insert>
    </mapper>

  • 相关阅读:
    前端资源分享
    Java的wait(), notify()和notifyAll()使用心得(转)
    Java 理论与实践: 处理 InterruptedException(转)
    关于线程中断的总结
    Python入门(good)
    看着自己有什么样的资源,利用好这些资源就好了。不要看着别人的资源流口水(转)
    android手机SD卡中的android_secure目录
    Android中ExpandableListView控件基本使用
    华为的面试经历
    Flex强制类型转换错误
  • 原文地址:https://www.cnblogs.com/xianz666/p/12035672.html
Copyright © 2011-2022 走看看