免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: php_
打印 上一主题 下一主题

求助,使用SQL汇总某一列的数据 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2011-08-27 01:09 |只看该作者
写了个存储过程,这样应该可以实现了,不知道效率如何?

CREATE OR REPLACE FUNCTION stubfun()
  RETURNS SETOF record AS
$BODY$
declare
        ref refcursor;
        a integer;
        b integer;
        c integer;
        d integer;
BEGIN
        create temp table sum_tmp (uid integer, bid integer, sz integer, ct integer)
        on commit drop;

        insert into sum_tmp
                select uid, bid, sum(sz) as sz, sum(ct) as ct
                from stub2
                group by uid,bid
                order by uid,bid;

        --合并数据
        update stub
                set sz=stub.sz+sum_tmp.sz,ct=stub.ct+sum_tmp.ct
                from sum_tmp
                where stub.uid=sum_tmp.uid and stub.bid=sum_tmp.bid;

        open ref for        
        (
                select * from sum_tmp
        );


        --循环检查是否有新数据需要插入
loop
        fetch ref into a, b, c, d;
        if (found)
        then
                if not exists
                        (select * from stub where uid = a and bid = b)
                then
                        insert into stub values (a,b,c,d);
--                else
--                        update stub set sz=sz+c, ct=ct+d where uid = a and bid = b;
                end if;
        else
                exit;
        end if;
end loop;

   RETURN ;
END;
$BODY$
  LANGUAGE plpgsql VOLATILE
  COST 100;
ALTER FUNCTION stubfun() OWNER TO postgres;
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP