0

サブクエリを含む Postgres クエリがあり、12 行のデータしか出力しません。これらの各行は、データベース内のすべての年にわたるデータの月平均を表しており、各月に 1 つの行があります。クエリ:

SELECT
  to_char(to_timestamp(to_char(subquery2.month, '999'), 'MM'), 'Mon') AS Month,
  subquery2.month AS Month_num,
  round(AVG(subquery2.all_use_tot), 2) AS Average_Withdrawals,
  round(AVG(subquery2.all_cu_tot), 2) AS Average_Consumptive_Use
FROM
(SELECT
  subquery1.month,
  subquery1.year,
  sum(subquery1.liv_tot) AS all_use_tot,
  sum(subquery1.CU_total) AS all_cu_tot
FROM
    (SELECT 
        EXTRACT('Month' FROM withdrawals.begintime) AS month,
        EXTRACT(YEAR FROM withdrawals.begintime)::int AS year,
        tdx_ic_use_type.use_type_code AS Use_type,
        sum(withdrawals.withdrawalvalue_mgd) AS liv_tot,
        (tdx_ic_use_type.cufactor)*(sum(withdrawals.withdrawalvalue_mgd)) AS CU_total
    FROM 
        medford.tdx_ic_use_type,
        medford.withdrawalsites
        JOIN medford.subshed2 ON ST_Contains(medford.subshed2.the_geom, medford.withdrawalsites.the_geom)
        JOIN medford.withdrawals ON medford.withdrawals.ic_site_id = medford.withdrawalsites.ic_site_id
    WHERE 
        subshed2.id = '${param.shed_id}' AND
        withdrawalsites.ic_pr_use_type_id = tdx_ic_use_type.use_type_code AND
        withdrawals.intervalcodes_id = 2

    GROUP BY
        year, 
        extract('Month' from withdrawals.begintime),
        tdx_ic_use_type.cufactor,
        Use_type
    ORDER BY
        year, extract('Month' from withdrawals.begintime) ASC
        ) AS subquery1
GROUP BY
  subquery1.year,
  subquery1.month
  ) AS subquery2
GROUP BY
  subquery2.month
ORDER BY
  subquery2.month

出力は次のようになります。

"Jan"  1  1426.50  472.65
"Feb"  2  1449.00  482.10
"Mar"  3  1459.50  485.55
"Apr"  4  1470.00  489.00
"May"  5  1480.50  492.45
"Jun"  6  1491.00  495.90
"Jul"  7  1489.50  493.35
"Aug"  8  1512.00  502.80
"Sep"  9  1510.50  500.25
"Oct" 10  1533.00  509.70
"Nov" 11  1543.50  513.15
"Dec" 12  1542.00  510.60

データベースの日時列から抽出した月の列。このクエリの結果を使用して配列に格納していますが、テーブルに存在する年ごとにこれらの正確な結果を 1 回繰り返したいと思います。したがって、データベースに 2 年間のデータがある場合、出力行は 24 行、つまり 12 行の同じ行が 2 回繰り返されるはずです。データベースに 3 年分のデータがある場合、出力行は 36 行、つまり 12 行の同じ行が 3 回繰り返されるはずです。クエリでこれを達成するにはどうすればよいですか? 列の値に基づいてクエリをループする方法はありますか (つまり、日時フィールドに存在する年数は?)

4

1 に答える 1

2

クエリでに変更する必要がありgroup by monthますgroup by year, month。(ただし、これにより、特定の月のデータがある場合にのみ結果が得られます。)

月を反復する場合:

select a::date
from generate_series(
    '2011-06-01'::date,
    '2012-06-01',
    '1 month'
) s(a)

(これに基づいて:UDFの日付範囲をループするSQLで関数を書く

于 2013-10-13T20:11:13.843 に答える