| From: | Richard Broersma Jr <rabroersma(at)yahoo(dot)com> |
|---|---|
| To: | "Matt Arnilo S(dot) Baluyos \(Mailing Lists\)" <matt(dot)baluyos(dot)lists(at)gmail(dot)com>, pgsql-novice(at)postgresql(dot)org |
| Subject: | Re: Sorting distinct dates by year and month respectively |
| Date: | 2006-06-07 05:43:31 |
| Message-ID: | 20060607054331.29609.qmail@web31804.mail.mud.yahoo.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-novice |
> gsin=> SELECT DISTINCT date_part('year', article_pubdate),
> date_part('month', article_pubdate) FROM articles GROUP BY
> date_part('year', article_pubdate), date_part('month',
> article_pubdate) ORDER BY date_part('year', article_pubdate),
> date_part('month', article_pubdate) DESC;
> date_part | date_part
> -----------+-----------
> 2002 | 5
> Can anyone help me figure out why this is so?
I believe that date_trunc will give you what you want.
mydb=> select date_trunc('month', tstamp) as month from process group by month order by month
limit 4;
month
---------------------
2005-10-01 00:00:00
2006-01-01 00:00:00
2006-02-01 00:00:00
2006-04-01 00:00:00
(4 rows)
Regards,
Richard Broersma Jr.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Andreas Seltenreich | 2006-06-07 10:18:47 | Re: levenshtein contrib installation |
| Previous Message | Matt Arnilo S. Baluyos (Mailing Lists) | 2006-06-07 05:35:01 | Sorting distinct dates by year and month respectively |