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-->

 

mapper.xml记几个用法

上一篇:SAP Spartacus - Progressive Web Applications,渐进式 Web 应用程序


下一篇:js事件队列