Re: Re: Adding an INTERVAL to a variable - Mailing list pgsql-sql

From Josh Berkus
Subject Re: Re: Adding an INTERVAL to a variable
Date
Msg-id web-97981@davinci.ethosmedia.com
Whole thread Raw
In response to Re: Adding an INTERVAL to a variable  (Vivek Khera <khera@kcilink.com>)
List pgsql-sql
Graham,

> GC> SELECT Invoices.InvoiceDate + INTERVAL Acct.AverageDaysToPay
> 'Days'

Actually, all you're missing is some punctuation.  Don't skimp on the ::
and () !  Plus, you should use explicit CASTs wherever you remember
them:

SELECT Invoices.InvoiceDate + INTERVAL(CAST(Acct.AverageDaysToPay AS
VARCHAR) || ' days');

Will work fine.  Here I've explicitly cast the Average Days integer (if
it's NUMERIC or FLOAT, you will have to use TO_CHAR()) to varchar, then
concatinated it with the  word "days".  *Then* I convert it to INTERVAL,
which will recognize '# days' as a valid expression.

IMHO, you've been lucky being able to skip the parens and CASTs so far;
get used to using them.

-Josh



______AGLIO DATABASE SOLUTIONS___________________________
                                       Josh Berkus
  Complete information technology      josh@agliodbs.com
   and data management solutions       (415) 565-7293
  for law firms, small businesses        fax 621-2533
    and non-profit organizations.      San Francisco

Attachment

pgsql-sql by date:

Previous
From: Gary Stainburn
Date:
Subject: Re: Are circular REFERENCES possible ?
Next
From: Stephan Szabo
Date:
Subject: Re: Are circular REFERENCES possible ?