首页 > 代码库 > sql片段的定义
sql片段的定义
<!-- sql片段 id 表示唯一标示 这里不加where是因为 sql片段只对单表查询才抽取出来 这样的重用性更高 --> <sql id="query_user_where"> <if test="userCustom!=null"> <if test="userCustom.username != null and userCustom.username !=‘‘"> user.username like(‘%${userCustom.username}%‘) </if> </if> <!-- and(id=3 or id=6 or id=7) --> <!-- collection包装对象的属性 item 集合属性的单个对象 open 拼接开始字符串 close 拼接结束字符串 separator 每次遍历中间的分割字符串--> <foreach collection="ids" item="id" open="and(" close=")" separator="or"> id=#{id} </foreach> </sql>
sql片段的定义
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。