其他分享
首页 > 其他分享> > mapper.xml记几个用法

mapper.xml记几个用法

作者:互联网

1.多参数不能使用parameterType,SQL语句中直接用#{index},是第几个就用第几个的索引,索引从0开始

例:

dao中

  void userDeleteById(int startId, int endId);

mapper.xml中

<delete id="userDeleteById">
delete from users where id between #{0} and #{1}
</delete>
<!--此处#{0}表示startId,#{1}表示endId-->

 

标签:xml,mapper,第几个,int,用法,索引,endId
来源: https://www.cnblogs.com/wx23/p/15175546.html