Re: Sorting distinct dates by year and month respectively - Mailing list pgsql-novice

From Richard Broersma Jr
Subject Re: Sorting distinct dates by year and month respectively
Date
Msg-id 20060607054331.29609.qmail@web31804.mail.mud.yahoo.com
Whole thread Raw
In response to Sorting distinct dates by year and month respectively  ("Matt Arnilo S. Baluyos (Mailing Lists)" <matt.baluyos.lists@gmail.com>)
List 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.


pgsql-novice by date:

Previous
From: "Matt Arnilo S. Baluyos (Mailing Lists)"
Date:
Subject: Sorting distinct dates by year and month respectively
Next
From: Andreas Seltenreich
Date:
Subject: Re: levenshtein contrib installation