找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 172|回复: 0

Mybatis 选择性插入inserrt

[复制链接]

373

主题

55

回帖

1944

积分

管理员

积分
1944
发表于 2020-8-27 15:23:51 | 显示全部楼层 |阅读模式
<insert id="insertUser" useGeneratedKeys="true" keyProperty="id">
    INSERT user
    <trim prefix="(" suffix=")" suffixOverrides=",">
        <if test="username != null and username != ''">username, </if>
        <if test="name != null and name != ''">name, </if>
        <if test="age != null and age != ''">age, </if>
    </trim>
    VALUES
    <trim prefix="(" suffix=")" suffixOverrides=",">
        <if test="username != null and username != ''">#{username}, </if>
        <if test="name != null and name != ''">#{name}, </if>
        <if test="age != null and age != ''">#{age}, </if>
    </trim>
</insert>
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Comsenz Inc.

GMT+8, 2024-9-20 10:56 , Processed in 0.029413 second(s), 18 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表