码迷,mamicode.com
首页 > 数据库 > 详细

mybatis sql in not in的使用

时间:2017-07-24 17:27:57      阅读:355      评论:0      收藏:0      [点我收藏+]

标签:open   resultmap   log   where   from   java   使用   port   amp   

xml配置

<select id="SelectAllByNotsampleNo" resultMap="BaseResultMap" parameterType="java.lang.String">
     SELECT * FROM wshop_report1 a
     left join wshop_report_sms b on a.sampleno=b.sampleno
     where a.sampleno not in 
     <foreach item="item" index="index" collection="list" 
                         open="(" separator="," close=")">
                        #{item}
                </foreach>
  </select>

service层

@Override
    public List<WshopReport1> SelectAllByNotsampleNo(List<String> sampleno) {
        
        return reportdao.SelectAllByNotsampleNo(sampleno);
    }

list对应List    array对应数组

mybatis sql in not in的使用

标签:open   resultmap   log   where   from   java   使用   port   amp   

原文地址:http://www.cnblogs.com/Anders888/p/7229827.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!