On Mon, Aug 15, 2005 at 14:27:04 -0600,
"Walker, Jed S" <Jed_Walker(at)cable(dot)comcast(dot)com> wrote:
> Hi,
>
> We need to add an interval (from a row in a table) to the curren time.
> Basically,
>
> Table1 has the column offset_in_secs that is an integer.
>
> Select current_timestamp + '<offset_in_secs> seconds' from table1;
>
> But can't figure out how to do this.
Select current_timestamp + offset_in_secs * '1 seconds' from table1;