sql insert语句怎么写

发布网友 发布时间:2022-04-23 01:27

我来回答

2个回答

懂视网 时间:2022-04-10 08:45


<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语句

标签:test   esc   role   数据   null   values   value   script   ref   

热心网友 时间:2022-04-10 05:53

insert into table (列1 , 列2 , ... , 列n) values(值1 , 值2 , ... , 值n) 列和值对应即可;
insert into table values(值1 , 值2 , ... , 值n) 值和表里所有列都要一 一对应

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com