Re: [SQL] adding time to a datetime field ... how?

From: Margarit Nickolov <man(at)developer(dot)digsys(dot)bg>
To: The Hermit Hacker <scrappy(at)hub(dot)org>
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] adding time to a datetime field ... how?
Date: 1999-12-15 14:01:32
Message-ID: Pine.BSI.4.05L.9912151559510.19740-100000@developer.digsys.bg
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


select start_time,start_time+acctsessiontime::timespan from log;

On Wed, 15 Dec 1999, The Hermit Hacker wrote:

>
> I hate coming up with subjects...
>
> I have a table with two fields: start_time::datetime and
> acctsessiontime::int4...I want to add the second to the first, to give me
> a stop_time...
>
> if I do:
>
> select start_time,start_time+acctsessiontime from log;
>
> I get a stop_time 'acctsessiontime' days after start_time, instead of
> 'acctsessiontime' seconds later...
>
> Is there some way of telling it to pass seconds instead of days?
>
> Thanks
>
> Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy
> Systems Administrator @ hub.org
> primary: scrappy(at)hub(dot)org secondary: scrappy(at){freebsd|postgresql}.org
>
>
> ************
>
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Vladimir Terziev 1999-12-15 16:21:11 Re: [SQL] adding time to a datetime field ... how?
Previous Message The Hermit Hacker 1999-12-15 13:31:59 adding time to a datetime field ... how?