欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MyBatis的in查询

程序员文章站 2024-03-06 21:56:02
...

Mapper层的文件

 List<PowerbiShowHistory> selectList(@Param(value = "stringList") List<String> stringList, @Param(value = "userCode") String userCode);

XML文件的内容

    <select id="selectList" resultMap="BaseResultMap">

        SELECT * FROM powerbi_show_history
        where SHOW_GRUOUP_NAME in
       <foreach item="item" index="index" collection="stringList" open="(" separator="," close=")">
        #{item}
       </foreach>
        and CREATE_USERCODE=#{userCode}
        and STATE='1'

    </select>

相关标签: JAVA java