sql片段的定义
Posted Lightt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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片段的定义的主要内容,如果未能解决你的问题,请参考以下文章