美文网首页
分割逗号成list查询

分割逗号成list查询

作者: flyjar | 来源:发表于2020-12-25 15:06 被阅读0次
    <select id="getUserListByUsernames" parameterType="java.lang.String"  resultType="org.jeecg.modules.system.entity.SysUser">
            select * from  sys_user  where username in
            <foreach item="item" index="index" collection="usernames.split(',')"  open="(" separator="," close=")">
                '${item}'
            </foreach>
             and del_flag = '0'
        </select>
    

    相关文章

      网友评论

          本文标题:分割逗号成list查询

          本文链接:https://www.haomeiwen.com/subject/bbtinktx.html