I have the following query that returns the min, max and user total of basically unique rows in two different tables.
select sum(user_count) as user_count_sum, sum(min_count) as min_count_sum,
sum(max_count) as max_count_sum
from(
select max(case when di = 'i' then di_count end) as user_count,
min(di_count) as min_count,
max(di_count) as max_count
from (
select di,
count(distinct rt) as di_count
from gpstablev2
where rt > GETDATE() - '1 day'::INTERVAL
group by di
)
UNION
select max(case when di = 'i' then di_count end) as user_count,
min(di_count) as min_count,
max(di_count) as max_count
from (
select di,
count(distinct rt) as di_count
from powertablev2
where rt > GETDATE() - '1 day'::INTERVAL
group by di
)
)
Now I also have a master table, that if I were to run the following query would return the following
select table from mastertable;
gpstablev2
powertablev2
...(more table names)
Instead of pasting 9 more UNION blocks like the one I have to sum all the tables listed in mastertable
, is there a way I can use a query to mastertable
to clean this up?
If I were doing this in java I would have first get my ResultSet from master table and then do 10 queries and UNION
them myself. But I rather have my database do ALL the processing, and be able to update based on the contents of mastertable
.
EDIT: Based on feedback I am trying a Dynamic Query and have gotten this far, but am still have trouble putting together the rest of the pieces
CREATE OR REPLACE FUNCTION get_sums()
RETURNS TABLE(user_count_sum bigint, min_count_sum bigint, max_count_sum bigint)
$BODY$
BEGIN
RETURN QUERY EXECUTE "
SELECT $$SELECT sum(user_count) AS user_count_sum
,sum(min_count) AS min_count_sum
,sum(max_count) AS max_count_sum
FROM (
SELECT max(case when di = 'id' then di_count end) AS user_count
,min(di_count) AS min_count
,max(di_count) AS max_count
FROM ($$
||
string_agg(format($$
(SELECT di, count(distinct rt) AS di_count
FROM %I
WHERE rt > now() - interval '1 day'
GROUP BY 1)$$, tbl)
,'
UNION ALL')
|| '
) sub1
) sub2'
FROM mastertable;
INTO results_var"
END;
$BODY$
LANGUAGE plpqsql;