MyBatis动态 SQL语法IN 语句代码示例

纸扎戏偶
<select id="selectPostIn" resultType="map">
  select * from post where id in 
  <foreach item="item" index="index" collection="list"  
         open="(" separator="," close=")">
     #{item}   
  </foreach>
</select>
文章版权声明:除非注明,否则均为我爱教程术原创文章,转载或复制请以超链接形式并注明出处。