随笔分类 -  mybatis

摘要:collection:任意可以使用迭代器的对象,如list、map, 当集合为可迭代对象或List或Array时,index表示当前迭代对象的索引值,item表示当前迭代对象 当集合为map时,index表示当前迭代对象的key值,item表示当前迭代对象的value值 阅读全文
posted @ 2018-03-23 14:45 根须
摘要:oracle中分页查询的基本语法: select *from (真正的查询) where rownum<=n; 阅读全文
posted @ 2018-03-23 14:24 根须