Hi,
I suggestion for the date/time functions in the docs:
http://www.postgresql.org/docs/8.0/interactive/functions-datetime.html
I was trying to figure out how to do:
update table set next=now() + interval 'table.period
seconds';
I tried subqueries, the concat operator, and anything
else I could
On Aug 20, 2005, at 1:59 PM, CSN wrote:
I was trying to figure out how to do:
update table set next=now() + interval 'table.period
seconds';
create table foo (
foo_id serial not null unique
, foo_int integer not null
, foo_timestamp timestamp(0) with time zone not null
) without o