<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-03-22 11:37:29 浏览: 51
这是一个 MyBatis 的插入语句,id 为 insertSelective,参数类型为 com.example.pojo.Admin。该语句将会向 admin 表中插入一条记录。
在该插入语句中,使用了 <trim> 和 <if> 标签来动态生成 SQL 语句。其中,<trim> 标签用于去掉 SQL 语句中的多余逗号和括号,<if> 标签用于判断属性是否为 null,如果不为 null,则将属性名和属性值拼接到 SQL 语句中。
该插入语句使用了两个 <trim> 标签,分别对应插入语句中的列名和值。同时,也使用了 #{property,jdbcType=TYPE} 占位符来插入参数值,从而避免了 SQL 注入的风险。
最终生成的 SQL 语句类似于:
```
insert into admin (id, username, password) values (?, ?, ?)
```
其中,? 是 JDBC 的占位符,实际执行时会被替换为传入的参数值。
相关问题
<?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对象。
阅读全文