Search Postgresql Archives

9.3 view / cross join / flat table solution

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi everyone. I have a view setup like so:

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

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?

--
Wells Oliver
wellsoliver@xxxxxxxxx

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux