<insert id="insertSelective" parameterType="com.example.pojo.Admin" > insert into admin <trim prefix="(" suffix=")" suffixOverrides="," > <if test="id != null" > id, </if> <if test="username != null" > username, </if> <if test="password != null" > password, </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides="," > <if test="id != null" > #{id,jdbcType=INTEGER}, </if> <if test="username != null" > #{username,jdbcType=VARCHAR}, </if> <if test="password != null" > #{password,jdbcType=VARCHAR}, </if> </trim> </insert>
时间: 2024-04-03 10:31:07 浏览: 38
这也是一个Mybatis XML配置文件中的Insert语句,它的作用与上面的Insert语句类似,也是向数据库的admin表中插入一条新的记录。不同的是,这里使用了<trim>和<if>标签来实现动态SQL的拼接,可以根据传入的参数动态决定插入哪些列。如果传入的Admin对象的某个属性为null,则不会插入对应的列。如果属性不为null,则会插入对应的列。参数类型为com.example.pojo.Admin,表示传入的参数为一个Admin对象。
相关问题
<?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="com.de.debook.mapper.CategoryMapper"> <resultMap id="BaseResultMap" type="com.de.debook.entity.Category"> <id column="id" jdbcType="INTEGER" property="id"/> <result column="name" jdbcType="VARCHAR" property="name"/> </resultMap> <resultMap id="StatisticsResultMap" type="com.de.debook.entity.Statistics"> <result column="name" jdbcType="VARCHAR" property="name"/> <result column="value" jdbcType="VARCHAR" property="value"/> </resultMap> <sql id="Base_Column_List"> id, name </sql> <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> select <include refid="Base_Column_List"/> from category where id = #{id,jdbcType=INTEGER} </select> <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"> delete from category where id = #{id,jdbcType=INTEGER} </delete> <insert id="insert" parameterType="com.de.debook.entity.Category"> insert into category (id, name) values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}) </insert> <insert id="insertSelective" parameterType="com.de.debook.entity.Category"> insert into category <trim prefix="(" suffix=")" suffixOverrides=","> <if test="id != null"> id, </if> <if test="name != null"> name, </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="id != null"> #{id,jdbcType=INTEGER}, </if> <if test="name != null"> #{name,jdbcType=VARCHAR}, </if> </trim> </insert> <update id="updateByPrimaryKeySelective" parameterType="com.de.debook.entity.Category"> update category <set> <if test="name != null"> name = #{name,jdbcType=VARCHAR}, </if> </set> where id = #{id,jdbcType=INTEGER} </update> <update id="updateByPrimaryKey" parameterType="com.de.debook.entity.Category"> update category set name = #{name,jdbcType=VARCHAR} where id = #{id,jdbcType=INTEGER} </update> <select id="selectAll" resultMap="BaseResultMap"> select <include refid="Base_Column_List"/> from category order by id asc </select> <select id="selectStatistics" resultMap="StatisticsResultMap"> SELECT t1.name as name, COUNT(*) as value FROM category t1, debook t2 WHERE t1.id = t2.category_id GROUP BY t1.id order by t1.id asc </select> </mapper>
这是一个 MyBatis 的 Mapper 文件,用于映射实体类 Category 到数据库表 category。其中包括了一些 SQL 语句,如 selectByPrimaryKey、deleteByPrimaryKey、insert、updateByPrimaryKeySelective 等,用于对数据表进行增删改查操作。还定义了两个结果映射 resultMap,用于将查询结果映射到实体类或自定义的统计类 Statistics 中。最后还定义了两个 select 语句,用于查询所有分类和分类的统计信息。
<insert id="insert" parameterType="com.example.pojo.Admin" > insert into admin (id, username, password ) values (#{id,jdbcType=INTEGER}, #{username,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR} ) </insert>
这是一个Mybatis XML配置文件中的Insert语句,它的作用是向数据库的admin表中插入一条新的记录。其中,id、username、password是admin表中的列名,#{id}、#{username}、#{password}是对应列的值,jdbcType属性指定了对应列在数据库中的类型。参数类型为com.example.pojo.Admin,表示传入的参数为一个Admin对象。
阅读全文