Search Postgresql Archives

Re: Int to Interval conversion

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



In response to Howard Cole <howardnews@xxxxxxxxxxxxx>:
> 
> I have a table with a duration field, stored as an Integer. How can I 
> retrieve this from the table as an Interval type?
> 
> E.g.
> 
> create table test (test_id serial primary key, time_in_minutes int);
> insert into test values (1440);
> 
> Now how do I extract that as 24:00:00::interval in a query?

SELECT CAST(time_in_minutes || ' minutes' AS INTERVAL) FROM test;

-- 
Bill Moran
http://www.potentialtech.com
http://people.collaborativefusion.com/~wmoran/

-- 
Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux