Finding last day in a month

From: Paul Makepeace <postgresql(dot)org(at)paulm(dot)com>
To: PostgreSQL Novice <pgsql-novice(at)postgresql(dot)org>
Subject: Finding last day in a month
Date: 2004-10-19 12:18:48
Message-ID: 20041019121848.GC22444@mythix.realprogrammers.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

This is perhaps more of a style question. I'm trying to find the 'right'
way with date/time functions to pull out the last day in a month from a
set of data that might contain rows that don't fall on the actual last
date (e.g. Friday 2004-07-30)

Foo.info_at("2004-07") # contains some logic to make "2004-07-%" for:

WHERE foo_date LIKE ? ORDER BY foo_date DESC LIMIT 1

This feels quite hacky to me for some reason but at least seems to work.

(I'd originally had foo_date = ?::date+'1month'::interval-'1day'::interval !)

Paul

--
Paul Makepeace .............................. http://paulm.com/inchoate/

"What is do I smell? A thousand paths to choose."
-- http://paulm.com/toys/surrealism/

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Keith Worthington 2004-10-19 13:04:46 finding data violating constraint
Previous Message Paul Makepeace 2004-10-19 12:12:27 Re: VIEWs with aggregate functions