
Mybatis
李子园05
宏观是我们需要忍受的,微观是我们能够改变的
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mybatis批量更新
转载 https://www.cnblogs.com/eternityz/p/12284760.html转载 2020-05-22 13:51:09 · 158 阅读 · 0 评论 -
mybatis动态sql中的trim标签的使用
trim标记是一个格式化的标记,可以完成set或者是where标记的功能,如下代码:1、select * from user <trim prefix="WHERE" prefixoverride="AND |OR"> <if test="name != null and name.length()>0"> AND name=#{name}&l...原创 2020-02-27 15:49:38 · 165 阅读 · 0 评论