MyBatis(二三):动态SQL之Foreach

MyBatis(二三):动态SQL之Foreach

前面我们已经学习了动态SQL的if、where、set、choose(when,otherwise),今天我们来学习剩下的foreach。

什么时候用到foreach呢?比如说我们要查询一个表中id为1,3,4的数据,我们应该写SQL语句为:

select * 
from TABLE where (id=1 or id=3 or id=4)
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » MyBatis(二三):动态SQL之Foreach