problems with date and interval queries.

From: <john(at)flowlabs(dot)com>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: problems with date and interval queries.
Date: 2003-02-10 18:05:18
Message-ID: 36167.24.136.118.31.1044900318.squirrel@zero.voxel.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I am having problems adding an interval to a date in a select statement
where the interval is specified as a selected column. Is this possible?
Below is an example of the query that I'm executing. The query gives and
error at the num_min column in the outer query. It works fine if that is
replaced with the text '90 minutes'. Thank you in advance for all help
provided.

-John

select message_id,
to_char((now() + ((interval num_min) *
(2 ^ (num_fail - (num_fail - fail_count))))),'mon DD YYYY HH24:MI:SS') as
abs_send_date,
fork_count
from (
select message_id, number_reattempt_failures as num_fail, resend_count as
fail_count,
(to_char(coalesce(minutes_between_reattempt, 90), '999') || ' minutes')
as num_min, last_completion_date as last_date, fork_count
from pa_mailblast_message
where send_state = 'sent' and
number_reattempt_failures > resend_count) a

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Stephan Szabo 2003-02-10 18:14:15 Re: problems with date and interval queries.
Previous Message Alexander Stanier 2003-02-10 16:09:39 Re: Referential Integrity