Re: [SQL] Ordering a date_part() query ...

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: The Hermit Hacker <scrappy(at)hub(dot)org>
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Ordering a date_part() query ...
Date: 2000-01-18 22:26:37
Message-ID: 2228.948234397@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

The Hermit Hacker <scrappy(at)hub(dot)org> writes:
>> Uh, why don't you just GROUP BY and ORDER BY stat_period?

> Okay, maybe I'm misunderstanding GROUP BY, but my understanding is that it
> groups "like" values ... my above example would give me a count of all
> impressions received over a one hour period ...

Oh, so "stat_period" is not a period label but an exact timestamp,
and you want to group into hourly blocks? OK, then group/order by
date_trunc("hour", stat_period) is probably what you want...

I'd suggest choosing another name for the field, too ;-)

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message The Hermit Hacker 2000-01-18 22:43:09 Re: [SQL] Ordering a date_part() query ...
Previous Message The Hermit Hacker 2000-01-18 21:06:38 Re: [SQL] Ordering a date_part() query ...