Mybatis 使用 sql,include 等标签

导读:本篇文章讲解 Mybatis 使用 sql,include 等标签,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

Mybatis 使用 sql,include 等标签

前言

通常工作中开发报表业务时,会出现很多查询sql,有差异大的,也有差异小的,如果sql差异小的我们可以选择使用sql,include,property 标签。

示例

下面我们做一个简单的报表。
功能需求:用户查询用户数量报表,报表需要统计:昨日新增用户数上周新增用户数上月新增用户数
分析:上面三个统计维度都是新增用户数,区别在于用户的创建时间范围不同,所以我们可以将其放在一起管理。

<!-- 查询 -->
<select id="selectOperationData" resultType="com.hp.lottery.common.OperationDataDTO">
   <!--使用union all 进行拼接查询(不是本文重点)-->
   <foreach collection="dto.shopIds" item="item" separator="union all">
       select
       #{item} as shopId,
       (
       <!-- 引入定义好的sql片段,并传递参数 -->
       <include refid="selectAddUserNumberByCreateTimeBaseSQL">
       	   <!-- 
       	   下面就是将参数传递到sql片段(注意这里可以使用‘%’也可以使用‘#’传参数) 
       	   name 就是 sql片段中的参数名
       	   value 是需要传递的参数值,如果是常量也可以直接传
       	   -->	
           <property name="shopId" value="#{item}"/>
           <property name="startTime" value="#{dto.yesterdayStartTime}"/>
           <property name="endTime" value="#{dto.yesterdayEndTime}"/>
       </include>
       ) as addUserNumberByYesterday, <!-- 昨日新增用户数 -->
       (
       <include refid="selectAddUserNumberByCreateTimeBaseSQL">
           <property name="shopId" value="#{item}"/>
           <property name="startTime" value="#{dto.lastWeekStartTime}"/>
           <property name="endTime" value="#{dto.lastWeekEndTime}"/>
       </include>
       ) as addUserNumberByLastWeek, <!-- 上周新增用户数 -->
       (
       <include refid="selectAddUserNumberByCreateTimeBaseSQL">
           <property name="shopId" value="#{item}"/>
           <property name="startTime" value="#{dto.lastMonthStartTime}"/>
           <property name="endTime" value="#{dto.lastMonthEndTime}"/>
       </include>
       ) as addUserNumberByLastMonth <!-- 本周新增用户数 -->
   </foreach>
</select>

<!-- sql片段,注意:sql片段的参数值需要使用'${参数名}'来获取-->
<sql id="selectAddUserNumberByCreateTimeBaseSQL">
    select
        count(0) as addUserNumber
    from shop
    inner join agent_binding ab on shop.id=ab.shop_id
    inner join `user` u on ab.id=u.station_code
    where shop.id=${shopId}
    <if test="${startTime}!=null and ${startTime}!='-1'" >
        and u.create_time >= ${startTime}
    </if>
    <if test="${endTime}!=null and ${endTime}!='-1'" >
        and u.create_time &lt;= ${endTime}
    </if>
</sql>

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/78224.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!