数据库insert语句

Posted Legolas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库insert语句相关的知识,希望对你有一定的参考价值。

<insert id="insert" parameterType="net.huadong.entity.system.SystemRole">
insert into SYSTEM_ROLE
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="name != null">
name,
</if>
<if test="role_code != null">
role_code,
</if>
<if test="description != null">
description,
</if>
<if test="sort_id != null">
sort_id,
</if>
<if test="disabled != null">
disabled,
</if>
<if test="id != null">
id,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="name != null">
#{name},
</if>
<if test="role_code != null">
#{role_code},
</if>
<if test="description != null">
#{description},
</if>
<if test="sort_id != null">
#{sort_id},
</if>
<if test="disabled != null">
#{disabled},
</if>
<if test="id != null">
#{id},
</if>
</trim>
</insert>

以上是关于数据库insert语句的主要内容,如果未能解决你的问题,请参考以下文章

DB2若何将数据导出为insert语句?

C#insert语句

MySQL中insert into语句的6种写法

SQL~用insert语句添加数据不能和已有的重复

insert into 语句错误

C#中执行insert的SQL语句成功(返回受影响行数为1)却没有在数据库中insert,知道啥原因么?