" ?>
-mapper.dtd" >
<mapper namespace="com.j1.soa.resource.order.oracle.dao.TpInfoMapper">
    <resultMap id="TpInfoResultMap" type="TpInfo">
        <result column="ID" jdbcType="DECIMAL" property="id" />
        <result column="AVAILABLE_BALANCE" jdbcType="DECIMAL" property="availableBalance" />
    </resultMap>

    <resultMap id="TpPolicyResultMap" type="TpInfo">
        <result column="END_DATE" jdbcType="VARCHAR" property="dueDate" />
        <result column="BALANCE" jdbcType="VARCHAR" property="dueAmount" />
    </resultMap>

    <resultMap id="TpConsumeRecordMap" type="TpConsumeRecord">
        <result column="POLICY_NO" jdbcType="VARCHAR" property="policyNo" />
        <result column="BUSINESS_ID" jdbcType="VARCHAR" property="businessId" />
        <result column="AMOUNT" jdbcType="VARCHAR" property="amount" />
        <result column="ADD_TIME" jdbcType="VARCHAR" property="amountTime" />
        <result column="OPERATION" jdbcType="VARCHAR" property="amountStatus" />
    </resultMap>

    <resultMap id="AmountSumMap" type="TpConsumeRecord">
        <result column="AMOUNT" jdbcType="VARCHAR" property="amount" />
        <result column="OPERATION" jdbcType="VARCHAR" property="amountStatus" />
    </resultMap>

    <sql id="be_fy">
        select *
        from (select row_.*, rownum rownum_
        from (
    </sql>
    <!-- 用于分页的尾部 -->
    <sql id="ed_fy">
        ) row_

        <![CDATA[
                 and    rownum <= #{offset}+#{pageSize}
                 ]]>
        )

        <![CDATA[
                 and    rownum_ > #{offset}
                 ]]>
    </sql>

    <select id="checkIsTp" parameterType="java.lang.Long" resultType="java.lang.Integer">
        select count(*)
        from fec.tp_account tpa
        where tpa.member_id = #{memberId,jdbcType=DECIMAL}
        and tpa.is_delete = 'N'
    </select>

    <select id="getTpInfo" parameterType="java.lang.Long" resultMap="TpInfoResultMap">
        select tpp.tp_account_id as id, sum(tpp.balance) as available_balance
          from fec.tp_account tpa, fec.tp_policy tpp
         where tpa.member_id = #{memberId,jdbcType=DECIMAL}
           and tpa.id = tpp.tp_account_id
           and tpa.is_delete = 'N'
         group by tpp.tp_account_id
    </select>

    <select id="getLimitPolicy" parameterType="java.lang.Long" resultMap="TpPolicyResultMap">
        select tpp.balance,tpp.end_date
        from fec.tp_policy tpp
        where tpp.tp_account_id = #{tpAccountId,jdbcType=DECIMAL}
         <![CDATA[ and TO_DATE(tpp.end_date, 'yyyy-mm-dd') <=
        TO_DATE(TO_CHAR(sysdate + interval '2' month, 'yyyy-mm-dd'),
        'yyyy-mm-dd')
        and TO_DATE(tpp.start_date, 'yyyy-mm-dd') <= TO_DATE(TO_CHAR(sysdate,'yyyy-mm-dd'), 'yyyy-mm-dd')
        and TO_DATE(tpp.end_date, 'yyyy-mm-dd') >=TO_DATE(TO_CHAR(sysdate, 'yyyy-mm-dd'), 'yyyy-mm-dd')
        and tpp.is_delete = 'N'
        ]]>
        order by tpp.end_date
    </select>

    <select id="getTpConsumeRecordList" parameterType="Pageable" resultMap="TpConsumeRecordMap">
        <include refid="be_fy"/>
        select tpo.policy_no,
               tpo.business_id,
               sum(tpo.amount) || '' as amount,
               tpo.add_time,
               tpo.OPERATION
        from fec.tp_policy_operation_log tpo,fec.tp_account tpa,fec.tp_policy tpp
        where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.policy_no = tpo.policy_no
            and tpp.is_delete = 'N'
            and tpa.member_id = #{params.memberId}
            <if test="params.beginDate != null">
                <![CDATA[
                 and to_date(tpo.add_time,'yyyy-mm-dd hh24:mi:ss') >= TO_DATE(#{params.beginDate},'yyyy-mm-dd hh24:mi:ss')
                ]]>
            </if>
            <if test="params.endDate != null">
                <![CDATA[
                and to_date(tpo.add_time,'yyyy-mm-dd hh24:mi:ss') <= TO_DATE(#{params.endDate},'yyyy-mm-dd hh24:mi:ss')
                ]]>
            </if>
         group by tpo.policy_no, tpo.business_id, tpo.add_time, tpo.OPERATION
         order by tpo.add_time desc
        <include refid="ed_fy"/>
    </select>

    <select id="getTpConsumeRecordListCount" parameterType="TpConsumeRecord" resultType="Integer">
        )
          from
            (select tpo.policy_no,
            tpo.business_id,
            sum(tpo.amount) || '' as amount,
            tpo.add_time,
            tpo.OPERATION
            from fec.tp_policy_operation_log tpo,fec.tp_account tpa,fec.tp_policy tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.policy_no = tpo.policy_no
            and tpp.is_delete = 'N'
            and tpa.member_id = #{memberId}
            <if test="beginDate != null">
                <![CDATA[
                     and to_date(tpo.add_time,'yyyy-mm-dd hh24:mi:ss') >= TO_DATE(#{beginDate},'yyyy-mm-dd hh24:mi:ss')
                    ]]>
            </if>
            <if test="endDate != null">
                <![CDATA[
                    and to_date(tpo.add_time,'yyyy-mm-dd hh24:mi:ss') <= TO_DATE(#{endDate},'yyyy-mm-dd hh24:mi:ss')
                    ]]>
            </if>
            group by tpo.policy_no, tpo.business_id, tpo.add_time, tpo.OPERATION
            order by tpo.add_time desc)
    </select>

    <select id="getAmountSumByOperation" parameterType="TpConsumeRecord" resultMap="AmountSumMap">
        select sum(tpo.amount) || '' as amount, tpo.OPERATION
        from fec.tp_policy_operation_log tpo,
        fec.tp_account              tpa,
        fec.tp_policy               tpp
        where tpa.id = tpp.tp_account_id
        and tpa.is_delete = 'N'
        and tpp.policy_no = tpo.policy_no
        and tpp.is_delete = 'N'
        and tpa.member_id = #{memberId}
        <if test="beginDate != null">
            <![CDATA[
                     and to_date(tpo.add_time,'yyyy-mm-dd hh24:mi:ss') >= TO_DATE(#{beginDate},'yyyy-mm-dd hh24:mi:ss')
                    ]]>
        </if>
        <if test="endDate != null">
            <![CDATA[
                    and to_date(tpo.add_time,'yyyy-mm-dd hh24:mi:ss') <= TO_DATE(#{endDate},'yyyy-mm-dd hh24:mi:ss')
                    ]]>
        </if>
        group by tpo.OPERATION
    </select>

    <select id="getTpExceptionInfo" parameterType="Pageable" resultMap="TpConsumeRecordMap">
        <include refid="be_fy"/>
        '">
            select tpo.policy_no,
            tpo.business_id,
            sum(tpo.amount) || '' as amount,
            tpo.add_time,
            tpo.OPERATION
            from fec.tp_policy_operation_log tpo,
            fec.tp_account              tpa,
            fec.tp_policy               tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.policy_no = tpo.policy_no
            and tpp.is_delete = 'N'
            and tpa.member_id = #{params.memberId}
            and tpo.operation in (${params.amountStatus})
            group by tpo.policy_no, tpo.business_id, tpo.add_time, tpo.OPERATION
        </if>
        <if test="params.amountStatus == 'all'">
            select tpo.policy_no,
            tpo.business_id,
            sum(tpo.amount) || '' as amount,
            tpo.add_time,
            tpo.OPERATION
            from fec.tp_policy_operation_log tpo,
            fec.tp_account              tpa,
            fec.tp_policy               tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.policy_no = tpo.policy_no
            and tpp.is_delete = 'N'
            and tpa.member_id = #{params.memberId}
            ')
            group by tpo.policy_no, tpo.business_id, tpo.add_time, tpo.OPERATION
            union all
            select tpp.policy_no,
            'invalid' as business_id,
            tpp.balance || '',
            tpp.end_date as add_time,
            ' as OPERATION
            from fec.tp_account tpa, fec.tp_policy tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.is_delete = 'N'
            and tpa.member_id =  #{params.memberId}
        <![CDATA[
            and TO_DATE(tpp.end_date || '23:59:59', 'yyyy-mm-dd hh24:mi:ss') <
                to_date(to_char(sysdate, 'yyyy-mm-dd') || ' 23:59:59',
            'yyyy-mm-dd hh24:mi:ss')
            ]]>
        </if>
        '">
            select tpo.policy_no,
            tpo.business_id,
            sum(tpo.amount) || '' as amount,
            tpo.add_time,
            tpo.OPERATION
            from fec.tp_policy_operation_log tpo,
            fec.tp_account              tpa,
            fec.tp_policy               tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.policy_no = tpo.policy_no
            and tpp.is_delete = 'N'
            and tpa.member_id = #{params.memberId}
            ')
            group by tpo.policy_no, tpo.business_id, tpo.add_time, tpo.OPERATION
            UNION  ALL
            select tpp.policy_no,
            'invalid' as business_id,
            tpp.balance || '',
            tpp.end_date as add_time,
            ' as OPERATION
            from fec.tp_account tpa, fec.tp_policy tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.is_delete = 'N'
            and tpa.member_id =  #{params.memberId}
            <![CDATA[
            and TO_DATE(tpp.end_date || '23:59:59', 'yyyy-mm-dd hh24:mi:ss') <
                to_date(to_char(sysdate, 'yyyy-mm-dd') || ' 23:59:59',
            'yyyy-mm-dd hh24:mi:ss')
            ]]>
        </if>
        order by add_time desc
        <include refid="ed_fy"/>
    </select>

    <select id="getTpExceptionInfoCount" parameterType="TpConsumeRecord" resultType="Integer">
        )
        from
        (
        '">
            select tpo.policy_no,
            tpo.business_id,
            sum(tpo.amount) || '' as amount,
            tpo.add_time,
            tpo.OPERATION
            from fec.tp_policy_operation_log tpo,
            fec.tp_account              tpa,
            fec.tp_policy               tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.policy_no = tpo.policy_no
            and tpp.is_delete = 'N'
            and tpa.member_id = #{memberId}
            and tpo.operation in (${amountStatus})
            group by tpo.policy_no, tpo.business_id, tpo.add_time, tpo.OPERATION
        </if>
        <if test="amountStatus == 'all'">
            select tpo.policy_no,
            tpo.business_id,
            sum(tpo.amount) || '' as amount,
            tpo.add_time,
            tpo.OPERATION
            from fec.tp_policy_operation_log tpo,
            fec.tp_account              tpa,
            fec.tp_policy               tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.policy_no = tpo.policy_no
            and tpp.is_delete = 'N'
            and tpa.member_id = #{memberId}
            ')
            group by tpo.policy_no, tpo.business_id, tpo.add_time, tpo.OPERATION
            union all
            select tpp.policy_no,
            'invalid' as business_id,
            tpp.balance || '',
            tpp.end_date as add_time,
            ' as OPERATION
            from fec.tp_account tpa, fec.tp_policy tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.is_delete = 'N'
            and tpa.member_id =  #{memberId}
            <![CDATA[
            and TO_DATE(tpp.end_date || '23:59:59', 'yyyy-mm-dd hh24:mi:ss') <
                to_date(to_char(sysdate, 'yyyy-mm-dd') || ' 23:59:59',
            'yyyy-mm-dd hh24:mi:ss')
            ]]>
        </if>
        '">
            select tpo.policy_no,
            tpo.business_id,
            sum(tpo.amount) || '' as amount,
            tpo.add_time,
            tpo.OPERATION
            from fec.tp_policy_operation_log tpo,
            fec.tp_account              tpa,
            fec.tp_policy               tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.policy_no = tpo.policy_no
            and tpp.is_delete = 'N'
            and tpa.member_id = #{memberId}
            ')
            group by tpo.policy_no, tpo.business_id, tpo.add_time, tpo.OPERATION
            UNION  ALL
            select tpp.policy_no,
            'invalid' as business_id,
            tpp.balance || '',
            tpp.end_date as add_time,
            ' as OPERATION
            from fec.tp_account tpa, fec.tp_policy tpp
            where tpa.id = tpp.tp_account_id
            and tpa.is_delete = 'N'
            and tpp.is_delete = 'N'
            and tpa.member_id =  #{memberId}
            <![CDATA[
            and TO_DATE(tpp.end_date || '23:59:59', 'yyyy-mm-dd hh24:mi:ss') <
                to_date(to_char(sysdate, 'yyyy-mm-dd') || ' 23:59:59',
            'yyyy-mm-dd hh24:mi:ss')
            ]]>
        </if>
        order by add_time desc)
    </select>
</mapper>

UNION ALL的用法的更多相关文章

  1. 转 SQL Union和SQL Union All两者用法区别效率以及与order by 和 group by配合问题

    SQL Union和SQL Union All两者用法区别效率以及与order by 和 group by配合问题 SQL Union和SQL Union All用法 SQL UNION 操作符 UN ...

  2. Union all的用法实例sql

    ---Union all的用法实例sqlSELECT TOP (100) PERCENT ID, bid_user_id, UserName, amount, createtime, borrowTy ...

  3. struct与 union的基本用法

    结构体与联合体是C语言的常见数据类型,可对C的基本数据类型进行组合使之能表示复杂的数据结构,意义深远,是优异代码的必备工具.一.        struct与 union的基本用法,在语法上union ...

  4. mysql left join和union结合的用法

    left join和union结合的用法子查询union 然后加个括号设置个别名 (union自动去除 重复的 ) <pre>select o.nickName,o.sex,o.provi ...

  5. union与union all的用法给区别

    用法: 当我们需要把两个或多个sql联合起来查询就用到了union或者union all 区别: 这两者的区别就在于union会自动的把多个sql查出来重复的排除掉,而union all这是会全部显示 ...

  6. sql union和union all的用法及效率

    UNION指令的目的是将两个SQL语句的结果合并起来.从这个角度来看, 我们会产生这样的感觉,UNION跟JOIN似乎有些许类似,因为这两个指令都可以由多个表格中撷取资料. UNION的一个限制是两个 ...

  7. Phalapi 中Union和Union All的用法

    有时候在进行数据库查询的时候会用到union查询,但是查询的时候会发现两个limit只有一个是有效的,如下查询 select * from table where status = 0 limit 1 ...

  8. sql中union和union all的用法

    如果我们需要将两个select语句的结果作为一个整体显示出来,我们就需要用到union或者union all关键字.union(或称为联合)的作用是将多个结果合并在一起显示出来. union和unio ...

  9. union all 简单用法

    select Y.ID,sum(cast(Y.m as int)) as hefrom(select top 10 a.ID,a.AlarmSource as m from dbo.AlarmInfo ...

  10. group By 和 Union 、 Union all的用法

    我学习的是MySQL,学习写sql语句过程中遇到Group By 和 Union. 大家乐意看这两个链接,写的很好 Group By: www.cnblogs.com/rainman/archive/ ...

随机推荐

  1. click()和onclick()的区别

    click()和onclick()的区别: 1.onclick是绑定事件,告诉浏览器在鼠标点击时候要做什么 click本身是方法作用是触发onclick事件,只要执行了元素的click()方法,就会触 ...

  2. Win10+Ubuntu 二三事

    拯救者R720,反反复复弄了不少次,记录一下有用的blog 卸载 http://www.cnblogs.com/xia-Autumn/p/6294055.html https://blog.csdn. ...

  3. react-native Execution failed for task ':app:prepareRnReduxReactNativeUpdateUnspecifiedLibrary'报错

    详细报错 Could not copy zip entry E:\项目目录\node_modules\react-native-update\android\build\outputs\aar\rea ...

  4. sql 索引笔记2

    以下资料都来于MSDN. 聚集索引指南: 一.此列和列值供内部使用,用户不能查看或访问. 查询注意事项 在创建聚集索引之前,应先了解数据是如何被访问的.考虑对具有以下特点的查询使用聚集索引: 使用运算 ...

  5. C#_02.13_基础三_.NET类基础

    C#_02.13_基础三_.NET类基础 一.类概述: 类是一个能存储数据和功能并执行代码的数据结构,包含数据成员和函数成员.(有什么和能够干什么) 运行中的程序是一组相互作用的对象的集合. 二.为类 ...

  6. Codefoces909E Coprocessor(拓扑排序)

    http://codeforces.com/problemset/problem/909/E 由于分了两个queue,所以push的时候可以统一操作,不会影响彼此.两个queue相当于是平等的,只是q ...

  7. [原创]浅谈IT人如何做理财规划

    [原创]浅谈IT人如何做理财规划 鱼哥博客上多数写的是技术和管理相关,但很少有理财等话题,今天抽空来谈谈IT人如何做理财规划,如果要想学习理财,我想很有名的“标准普尔家庭资产象限图”上值得每个学习和理 ...

  8. Multiple Tasks Z

    public static async Task executeParallel<T>(this IEnumerable<T> items, int limit, Func&l ...

  9. Visual Studio 2015编译Lua 5.3.4遇到的坑

    被坑的不浅,遇到错误:" LNK1561:必须定义入口点",解决方案删除再建,步骤一遍一遍操作,还是报错.如下图所示: 首先,它必须要改成DLL或者LIB(动态/静态库),如果是应 ...

  10. Kubernetes中的Configmap和Secret

    本文的试验环境为CentOS 7.3,Kubernetes集群为1.11.2,安装步骤参见kubeadm安装kubernetes V1.11.1 集群 应用场景:镜像往往是一个应用的基础,还有很多需要 ...