
sqlexception:语法错误
错误原因:
代码块中出现的类似“name后的 ,”实际应为“name后应缺失 ,”。
具体问题:
pnmapperruku.xml文件中的insertpnassertrukudetails方法中,insert语句中storageroom列后跟着一个多余的逗号。
正确语句:
<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语法错误:PnMapperRuKu.xml文件中insert语句的逗号问题怎么解决?的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号