0

おはよう、

私は本当に解決できないしつこい問題を抱えています..私はこのようなデータベーステーブルを持っています.

    id,name,startdate,enddate,value
    --------------------------------
    10,John,2012-01-14,2012-10-30,200000
    11,Jack,2012-02-01,2012-08-01,70000
    12,John,2012-05-01,2012-06-01,2000

部分的な月を考慮して、月ごとに「値」を要約して、このような結果を作成するクエリが必要です

month, name, value
------------------    
2012-01, John, 9000
2012-02, John, 18000
2012-03, John, 18000
2012-04, John, 18000
2012-05, John, 20000
2012-06, John, 18000
2012-07, John, 18000
2012-08, John, 18000
2012-01, John, 18000
2012-02, Jack, 10000
2012-03, Jack, 10000
2012-04, Jack, 10000
2012-05, Jack, 10000
2012-06, Jack, 10000
2012-07, Jack, 10000
2012-08, Jack, 0

これで、ループを使用して手続き的に (PHP のように) これを行う方法がわかりました。

ありがとうピーター

4

2 に答える 2

1

カレンダー テーブルがなく、作成できない場合は、クエリで仮想カレンダー テーブルをシミュレートできます。このような仮想テーブルを利用する、質問に答えるクエリを次に示します。

select m.startmonth,
       e.name, 
       coalesce(sum(r.value *
                    datediff(case when adddate(m.startmonth, interval 1 month) <
                                       r.enddate 
                                  then adddate(m.startmonth, interval 1 month) 
                                  else r.enddate end,
                             case when m.startmonth > r.startdate 
                                  then m.startmonth else r.startdate end) / 
                    datediff(r.enddate,r.startdate)),0) valueshare
from
(select cast('2012-01-01' as date) startmonth union all
 select cast('2012-02-01' as date) startmonth union all
 select cast('2012-03-01' as date) startmonth union all
 select cast('2012-04-01' as date) startmonth union all
 select cast('2012-05-01' as date) startmonth union all
 select cast('2012-06-01' as date) startmonth union all
 select cast('2012-07-01' as date) startmonth union all
 select cast('2012-08-01' as date) startmonth union all
 select cast('2012-09-01' as date) startmonth union all
 select cast('2012-10-01' as date) startmonth) m
cross join employees e
left join resources_spent r 
       on r.enddate > m.startmonth and 
          r.startdate < adddate(m.startmonth, interval 1 month) and
          r.name = e.name
group by m.startmonth, e.name
order by 2,1

ここでSQLFiddle 。

于 2013-04-27T16:51:17.057 に答える
0

日付ごとに 1 行のカレンダー テーブルが必要だと思います。他のフィールドは、会計期間、休日など、あなたにとって有用なものです。

次に、レポート用に一時テーブルを作成し、次のように設定できます。

insert into YourTempTable
(id, date, amount)
select id, c.datefield, amount
from YourTable join Calendar c on datefield >= startdate
and datefield <= enddate
where whatever

そこから、ID で結合して、YourTempTable と YourTable から選択します。

于 2013-04-27T12:47:49.683 に答える