当前位置: 首页 > 图灵资讯 > 技术篇> SQL插入语句报错:缺少逗号导致插入失败的原因是什么?

SQL插入语句报错:缺少逗号导致插入失败的原因是什么?

来源:图灵教育
时间:2024-12-02 19:47:00

sql插入语句报错:缺少逗号导致插入失败的原因是什么?

sql insert语法报错

报错原因:

在提供的插入语句中,storageroom 字段后面缺少逗号。类似于以下示例 sql:

insert newschema.new_table (name,) values ('hello',);

正确语法应该为:

insert newschema.new_table (name) values ('hello');

在您提供的映射文件中,storageroom 字段后面也缺少逗号:

<if test="storageroom != null and storageroom != ''">storageroom,</if>

修改后,正确的映射文件内容为:

<insert id="insertPnAssertRukuDetails" parameterType="com.ruoyi.system.domain.PnModelInOutInventory">
    insert into pnAssertRukuDetails (
        <if test="parentPnAssertRukuId != null and parentPnAssertRukuId != ''">parent_pnAssertRuku_id,</if>
        <if test="materialInformation != null and materialInformation != ''">materialInformation,</if>
        <if test="numbersRuKu != null and numbersRuKu != ''">numbersRuKu,</if>
        <if test="qualified != null and qualified != ''">qualified,</if>
        <if test="unit != null and unit != ''">unit,</if>
        <if test="storageRoom != null and storageRoom != ''">storageRoom</if>, -- 增加逗号
        <if test="sn != null and sn != ''">sn,</if>
        <if test="remark != null and remark != ''">remark,</if>
        <if test="batchNumber != null and batchNumber != ''">batchNumber</if>, -- 增加逗号
    )values(
        <if test="parentPnAssertRukuId != null and parentPnAssertRukuId != ''">#{parentPnAssertRukuId},</if>
        <if test="materialInformation != null and materialInformation != ''">#{materialInformation},</if>
        <if test="numbersRuKu != null and numbersRuKu != ''">#{numbersRuKu},</if>
        <if test="qualified != null and qualified != ''">#{qualified},</if>
        <if test="unit != null and unit != ''">#{unit},</if>
        <if test="storageRoom != null and storageRoom != ''">#{storageRoom},</if> -- 增加逗号
        <if test="sn != null and sn != ''">#{sn},</if>
        <if test="remark != null and remark != ''">#{remark},</if>
        <if test="batchNumber != null and batchNumber != ''">#{batchNumber},</if> -- 增加逗号
    )
</insert>

以上就是SQL插入语句报错:缺少逗号导致插入失败的原因是什么?的详细内容,更多请关注图灵教育其它相关文章!