<update id="falseDeleteBatchByPKArr" parameterType="java.lang.String">
UPDATE anode
SET delstate=4
where id in
<foreach collection="array" item="ids" index="index" open="(" separator="," close=")">
#{ids}
</foreach>
</update>
<update id="falseDeleteBatchByPKArr" parameterType="java.lang.String">
UPDATE anode SET delstate=4 where id in <foreach collection="array" item="ids" index="index" open="(" separator="," close=")">#{ids}</foreach>
</update>

以上两段mapper.xml的批量查询语句,第一种一直报错:  java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax ,怎么改都没用,

第二种我只是把sql语句换行去掉写到同一行里边了,除此之外内容真的真的真的都完全一样,但是就是不报错了。mybatis就是喜欢报这种不讲道理的错——迷茫!!!

              我之前写的其他类型的sql都是换行的,也都正常运行,这个批量修改字段就是不能换行,有没有搞错啊。

              有没有大佬知道并告诉在下这是怎么回事,虽然不报错了,但是很纠结,我都快纠结死了。

              

  

05-19 23:51