Re: Electricity bill - Mailing list pgsql-sql

From Jonathan Katz
Subject Re: Electricity bill
Date
Msg-id 4F6F634F-7729-4541-B66A-97D34CA839EA@excoventures.com
Whole thread Raw
In response to Electricity bill  ("Theodore M Rolle, Jr." <stercor@gmail.com>)
List pgsql-sql
> On Jun 7, 2022, at 9:39 PM, Theodore M Rolle, Jr. <stercor@gmail.com> wrote:
>
> I'm putting in YYYY-MM-DD dates of electricity bills and would like to not have starting and ending dates in the same
row.Only ending date. 
> Will someone show me the SQL to compute the months’ usage? This requires retrieving two rows to compute the number of
days…

Based on your description, what I can offer right now is:

    SELECT date_trunc(‘month’, date_col), sum(val_col);

Jonathan


pgsql-sql by date:

Previous
From: "Theodore M Rolle, Jr."
Date:
Subject: Electricity bill
Next
From: "David G. Johnston"
Date:
Subject: Re: Electricity bill