0

好的。我有一张桌子,我需要我的结果看起来像这样。

Month  Active_Total  SIHO_Total Active_Paid SIHO_Paid
2004-02   317            315       2620.19   1503.56

但是我有一个问题......上述表格已分组。这是一个医疗保健类型的 innoDB 数据库,有几个不同的模式和表。在我尝试隔离 SIHO 成员(这是我真正关心的全部)时,我隔离了不属于 SIHO 的成员并创建了一个仅包含我关心的成员的表。该表如下所示:

SCC PHID SID Care_Program Month Total_Paid
B11  abc  01   null      2004-02  120.76
B11  bcd  00   null      2004-02  98.40

SCC 是静态的,PHID 和 SID 一起构成一个唯一键,Care_Program 无关紧要,仅用于我的测试,月份 - 所有内容都需要按月份分组,因此对于所有具有总支付值的记录,它们应该是总结并显示如下:

  Month SIHO_Total SIHO_Paid
2004-02   2           219.16 or whatever

我基本上需要第二张桌子看起来像这样。

我如何将这些 PHID 分组以计算该成员在该月的位置???

如果您需要更多信息,请告诉我。提前致谢!

4

1 回答 1

0

所以我的第一步是聚合这些表。我将问题分解为两部分,以获得我的最终结果表。第一部分是 ActiveMembersPerMonth,它反映了:

month    total
2004-02    5

为此,我创建了一个例程来处理分组,这就是我的存储过程的样子:

DELIMITER $$

CREATE PROCEDURE `ActiveMembersPerMonth`(sStartMonth VARCHAR(10), sEndMonth VARCHAR(10))
BEGIN
DECLARE dStartMonth DATE DEFAULT DB.ConvertYearMonthDate(sStartMonth,False);
DECLARE dEndMonth DATE DEFAULT DB.ConvertYearMonthDate(sEndMonth,True);
DECLARE curMonthStart DATE;
DECLARE curMonthEnd DATE;
    DECLARE curMonthStr CHAR(7);


TRUNCATE DB.ActiveMembersPerMonth_;

SET curMonthStart = dStartMonth;
WHILE curMonthStart<=dEndMonth DO
    SET curMonthEnd = LAST_DAY(curMonthStart);
SET curMonthStr = date_format(curMonthStart,'%Y-%m');

    INSERT INTO DB.ActiveMembersPerMonth
        SELECT eh.SCC, eh.PHID, eh.SID, eh.CID, eh.CGID, curMonthStr,count(*),sum(IF(m.membership='Employee',1,0)),
        sum(IF(m.membership<>'Employee',1,0)),null 
  from DB.table_SIHO eh
  join DB.Membership m on eh.SCC=m.SCC and eh.PHID=m.PHID
        and eh.SID=m.SID
  WHERE eh.Enroll_Date<=curMonthStart AND (eh.Disenroll_Date>curMonthEnd OR eh.Disenroll_Date IS NULL)
  GROUP BY SCC, CID, CGID, curMonthStr;

    SET curMonthStart = curMonthStart + INTERVAL 1 MONTH;
END WHILE;
END;

call ActiveMembersPerMonth_SIHO('2006-01-01', '2012-05-31')

问题的下一部分是让 total_Paid 和相关的月份与我现在拥有的相匹配......这是:

Active_Total     Month
     5           2006-02

现在我有另一个表聚合,其中包含月份和 total_paid 所以我将把这些与从我的存储过程创建的月份和 active_Total 结合起来......

CREATE TABLE Rx_Paid_
SELECT CGID, date_format(DOS, '%Y-%m') as Month, SUM(Amt_Paid) as Rx_Paid FROM    DB.Prescriptions
WHERE concat(Policy_HoldeR_ID, Suffix_ID) not in 
('M000560838','M000029518','M00002699','M00002769') and DOS between '2006-01-01'   and '2012-05-31'
group by CGID, Month; 

服务也是如此 -

CREATE TABLE Services_Paid;
SELECT CGID, date_format(Serv_Beg_Date, '%Y-%m') as Month, SUM(Amt_Paid) as    Services_Paid FROM DB.Services
WHERE concat(PHID, SID) not in    ('M000560838','M000029518','M00002699','M00002769') and Beg_Date between '2006-01- 01' and '2012-05-31'
group by CGID, Month; 

基本上我在我的小组中达到了我想要的结果。我在第一个提到的表中有 total_paid。我所要做的就是按月分组和一个标识符(ClientGroupID)(组级标识符)

CGID   Month  Active  Service_Paid Rx_Paid
128 2006-01 314    2620.19      0.00
128 2006-02 330    4880.46      0.00
128 2006-03 344    29312.00      0.00
128 2006-04 359    15177.99      0.00
128 2006-05 386    774.58       0.00
128 2006-06 421    5966.52      0.00
于 2012-08-03T13:06:53.680 回答