zoukankan      html  css  js  c++  java
  • 记录一段存储过程

    create or replace procedure getPartTimeDatas(investor in varchar2,v_cursor out CLOB) as
    v_billcount number;
    v_wincount number;
    v_winrate number;
    v_avgwin number;
    v_avgloss number;
    v_maxcloseprofit number;
    v_mincloseprofit number;
    v_sumcloseprofit number;

    v_daycloseprofit number;
    v_pdate CLOB;

    v_str CLOB;
    begin
    DECLARE CURSOR myCusor is
    select sum(t.billcount) billcount,sum(t.wincount) wincount,sum(t.winrate) winrate,sum(t.sumwin/t.billcount) avgwin,sum(t.sumloss/t.billcount) avgloss,max(t.closeprofit) maxcloseprofit,min(t.closeprofit) mincloseprofit,sum(t.closeprofit) sumcloseprofit from T_AccountDayProfit t where t.investorid=investor and t.month=to_number(to_char(sysdate,'mm')) and t.year=to_number(to_char(sysdate,'yyyy'));
    begin
    OPEN myCusor;
    LOOP
    fetch myCusor into v_billcount,v_wincount,v_winrate,v_avgwin,v_avgloss,v_maxcloseprofit,v_mincloseprofit,v_sumcloseprofit;
    EXIT WHEN myCusor%NOTFOUND;
    v_str:= v_billcount||','||v_wincount||','||v_winrate||','||v_avgwin||','||v_avgloss||','||v_maxcloseprofit||','||v_mincloseprofit||','||v_sumcloseprofit||',';
    v_cursor:=v_cursor||v_str;
    END LOOP;
    CLOSE myCusor;
    end;

    DECLARE CURSOR myCusor is
    select sum(t.billcount) billcount,sum(t.wincount) wincount,sum(t.winrate) winrate,sum(t.sumwin/t.billcount) avgwin,sum(t.sumloss/t.billcount) avgloss,max(t.closeprofit) maxcloseprofit,min(t.closeprofit) mincloseprofit,sum(t.closeprofit) sumcloseprofit from T_AccountDayProfit t where t.investorid=investor and t.pdate>=trunc(ADD_MONTHS(SYSDATE,-2),'mm');
    begin
    OPEN myCusor;
    LOOP
    fetch myCusor into v_billcount,v_wincount,v_winrate,v_avgwin,v_avgloss,v_maxcloseprofit,v_mincloseprofit,v_sumcloseprofit;
    EXIT WHEN myCusor%NOTFOUND;
    v_str:= v_billcount||','||v_wincount||','||v_winrate||','||v_avgwin||','||v_avgloss||','||v_maxcloseprofit||','||v_mincloseprofit||','||v_sumcloseprofit||',';
    v_cursor:=v_cursor||v_str;
    END LOOP;
    CLOSE myCusor;
    end;

    DECLARE CURSOR myCusor is
    select sum(t.billcount) billcount,sum(t.wincount) wincount,sum(t.winrate) winrate,sum(t.sumwin/t.billcount) avgwin,sum(t.sumloss/t.billcount) avgloss,max(t.closeprofit) maxcloseprofit,min(t.closeprofit) mincloseprofit,sum(t.closeprofit) sumcloseprofit from T_AccountDayProfit t where t.investorid=investor and t.pdate>=trunc(ADD_MONTHS(SYSDATE,-5),'mm');
    begin
    OPEN myCusor;
    LOOP
    fetch myCusor into v_billcount,v_wincount,v_winrate,v_avgwin,v_avgloss,v_maxcloseprofit,v_mincloseprofit,v_sumcloseprofit;
    EXIT WHEN myCusor%NOTFOUND;
    v_str:= v_billcount||','||v_wincount||','||v_winrate||','||v_avgwin||','||v_avgloss||','||v_maxcloseprofit||','||v_mincloseprofit||','||v_sumcloseprofit||',';
    v_cursor:=v_cursor||v_str;
    END LOOP;
    CLOSE myCusor;
    end;

    DECLARE CURSOR myCusor is
    select sum(t.billcount) billcount,sum(t.wincount) wincount,sum(t.winrate) winrate,sum(t.sumwin/t.billcount) avgwin,sum(t.sumloss/t.billcount) avgloss,max(t.closeprofit) maxcloseprofit,min(t.closeprofit) mincloseprofit,sum(t.closeprofit) sumcloseprofit from T_AccountDayProfit t where t.investorid=investor and t.pdate>=trunc(ADD_MONTHS(SYSDATE,-11),'mm');
    begin
    OPEN myCusor;
    LOOP
    fetch myCusor into v_billcount,v_wincount,v_winrate,v_avgwin,v_avgloss,v_maxcloseprofit,v_mincloseprofit,v_sumcloseprofit;
    EXIT WHEN myCusor%NOTFOUND;
    v_str:= v_billcount||','||v_wincount||','||v_winrate||','||v_avgwin||','||v_avgloss||','||v_maxcloseprofit||','||v_mincloseprofit||','||v_sumcloseprofit||',';
    v_cursor:=v_cursor||v_str;
    END LOOP;
    CLOSE myCusor;
    end;

    DECLARE CURSOR myCusor is
    select to_char(t.pdate,'yyyymmdd') pdate,t.closeprofit from T_AccountDayProfit t where t.investorid=investor and t.pdate>=trunc(ADD_MONTHS(SYSDATE,-11),'mm') order by t.pdate asc;
    begin
    OPEN myCusor;
    LOOP
    fetch myCusor into v_pdate,v_daycloseprofit;
    EXIT WHEN myCusor%NOTFOUND;
    v_str:= v_pdate||','||v_daycloseprofit||',';
    v_cursor:=v_cursor||v_str;
    END LOOP;
    CLOSE myCusor;
    end;


    select substr(v_cursor,1,length(v_cursor)-1) into v_cursor from dual;

    end getPartTimeDatas;

    /

    调用:

    set serverout on;
    declare
    v_ret CLOB;
    begin
    getPartTimeDatas('1',v_ret);
    dbms_output.put_line(v_ret);
    end;
    /

  • 相关阅读:
    手脱ASPack v2.12变形壳2
    手脱nSPack 2.1
    WCF分布式开发步步为赢(1):WCF分布式框架基础概念
    一个经典例子让你彻彻底底理解java回调机制
    C#三层架构详细解剖
    eclipse快捷键及各种设置
    设计模式总结
    程序猿也爱学英语(上)
    关于PDA、GPS等动态资源的几种GIS解决方案
    通过VS2010性能分析来查找代码中那些地方最损耗资源
  • 原文地址:https://www.cnblogs.com/zhuzhenyu/p/5750535.html
Copyright © 2011-2022 走看看