Mybatis使用<foreach>标签时报SQL语法错误java.sql.SQLSyntaxErrorException

问题描述

提示:这里描述项目中遇到的问题:

调用如下代码时

<!--List<Star> queryStarsById(@Param("sids")List<Integer> sids);-->
    <select id="queryStarsByIds" resultType="searchEngine.entity.Star">
        select * from star
        <where>
            star_id in
            <foreach item="sid" index="index"
                     collection="sids" open="(" separator="," close=")" nullable="true">
                  #{sid}
            </foreach>
        </where>
    </select>

报错如下

### SQL: select * from star          WHERE star_id in
### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 2
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 2] with root cause

原因分析:

提示:这里填写问题的分析:

暂时未知,可能是版本问题


解决方案:

提示:这里填写该问题的具体解决方案:

star_id in写入内部,代码如下:

    <!--List<Star> queryStarsById(@Param("sids")List<Integer> sids);-->
    <select id="queryStarsByIds" resultType="searchEngine.entity.Star">
        select * from star
        <where>
            <foreach item="sid" index="index"
                     collection="sids" open="star_id in (" separator="," close=")" nullable="true">
                  #{sid}
            </foreach>
        </where>
    </select>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值