Tabulate data incrementally - Mailing list pgsql-general

From Omar Eljumaily
Subject Tabulate data incrementally
Date
Msg-id 45F0251B.2010807@omnicode.com
Whole thread Raw
Responses Re: Tabulate data incrementally  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Tabulate data incrementally  (Richard Huxton <dev@archonet.com>)
List pgsql-general
I want to tabulate time data on a weekly basis, but my data is entered
on a daily basis.

create table time_data
{
    employee varchar(10),
    _date date,
    job varchar(10),
    amount
}

So I want to tabulate with a single sql command.  Is that possible?

If I had a separate week end table
create table week_ends
{
    end_date date
}

I could do something like.

select *, (select sum(amount) from time_data where _date > end_date - 7
and _data <= end_date) from week_ends;

 But the week_end table would be a pain to manage for a number of
reasons.  Is it possible to do this without the week_end table?

Thanks.


pgsql-general by date:

Previous
From: "Ted Byers"
Date:
Subject: Re: OT: Canadian Tax Database
Next
From: Csaba Nagy
Date:
Subject: Re: OT: Canadian Tax Database