Re: 9.3 view / cross join / flat table solution - Mailing list pgsql-general

From
Subject Re: 9.3 view / cross join / flat table solution
Date
Msg-id b1cd117999da8fa55fa5cab8430b050b@localhost
Whole thread Raw
In response to 9.3 view / cross join / flat table solution  (Wells Oliver <wellsoliver@gmail.com>)
List pgsql-general
On Sat, 18 Oct 2014 12:13:00 -0700, Wells Oliver <wellsoliver@gmail.com>
wrote:
> Hi everyone. I have a view setup like so:
> screate view myview asselect    department,    employee_id,
> report_status,    sum(reports) reportsfrom logger.reportsgroup by
> department, employee_id, report_statu;
> Which gives me the total number of reports by status, which is either
> 'published' or 'finalized'.
> What I don't get is an 'all' rollup. Which I could do with another flat
> table and a cross join on a table of report statuses, but I'd love to
> keep this is as a view if possible.
> Using 9.3, so I have the "latest and greatest". What are my options
here?

It is a bit unclear what you expect to get.
If you need to get all published and finalized reports summed together,
and reported with the published and finalized, only one select will not
suffice. Maybe something like this:

create view myview as
(select    department,    employee_id,  report_status,    sum(reports)
reports
from logger.reports
group by department, employee_id, report_status
union all
select    department,    employee_id,  'all' as report_status,
sum(reports) reports
from logger.reports
group by department, employee_id )

Additional sorting may be required if you need the rows for published,
finalized and all to be near each other in the results.

Regards,
Mladen Marinović



pgsql-general by date:

Previous
From:
Date:
Subject: Re: Row number estimation...
Next
From: Jerry Levan
Date:
Subject: Yosemite (OSX 10.0) problems with Postgresql