Re: to_char(interval) --- done?

From: Josh Berkus <josh(at)agliodbs(dot)com>
To: Larry Rosenman <ler(at)lerctr(dot)org>, Karel Zak <zakkr(at)zf(dot)jcu(dot)cz>
Cc: pgsql-hackers(at)postgresql(dot)org, Peter Eisentraut <peter_e(at)gmx(dot)net>
Subject: Re: to_char(interval) --- done?
Date: 2003-03-26 17:53:58
Message-ID: 200303260953.58806.josh@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Larry,

> > What about EXTRACT(months FROM <interval_field>)?
> >
> > This annoyingly wraps around if it's more than 12 months, but that was
> > part of my proposal ...
> I needed like 5 years (60 months)...
>
> So, the wrap around is not good in this case.

Easy:
CREATE FUNCTION show_months ( interval ) returns text as '
SELECT CAST( (( extract(years from $1) * 12 ) + extract(months from $1)) AS
text ) || '' months'';
' LANGUAGE SQL IMMUTABLE STRICT;

(above not checked for typos)

I'd swear that you posted your question on pgsql-sql and I posted the above
solution some months ago.

--
-Josh Berkus
Aglio Database Solutions
San Francisco

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Larry Rosenman 2003-03-26 18:01:30 Re: to_char(interval) --- done?
Previous Message opensource 2003-03-26 17:49:03 Win32 Postgresql version.