Query help - Mailing list pgsql-general
From | Chuck Martin |
---|---|
Subject | Query help |
Date | |
Msg-id | CAFw6=U06QsBOBLNyj1ZWz0rAENLXemsQtprsZHYfuD=HED8xag@mail.gmail.com Whole thread Raw |
Responses |
Re: Query help
Re: Query help Re: Query help |
List | pgsql-general |
--Finds the age and last status change for open cases, but not age of cases with no status change
SELECT casename, age(ombcase.insdatetime) AS caseage, age(laststatuschange.created_at) AS statusage
FROM
(SELECT
case_fkey, MAX(insdatetime) AS created_at
FROM
statuschange
GROUP BY
case_fkey) AS laststatuschange
INNER JOIN
ombcase
ON
laststatuschange.case_fkey = case_pkey
RIGHT JOIN status
ON status_fkey = status_pkey
WHERE lower(statusid) NOT LIKE ('closed%')
AND case_pkey <> 0
I want to use coalesce (age(ombcase.insdatetime),age(statuschange.insdatetime) ) to return the time that a case has been in a status—or without a status change. But first I have to find the cases with no statuschange record. I was able to do that, too, using this query:
--find cases in status too long
SELECT casename, coalesce (age(ombcase.insdatetime),age(statuschange.insdatetime) )
FROM ombcase
LEFT JOIN statuschange
ON case_fkey = case_pkey
LEFT JOIN status
ON status_fkey = status_pkey
AND lower(statusid) NOT LIKE ('closed%')
AND coalesce ( age(ombcase.insdatetime), age(statuschange.insdatetime) ) > '2 months'
But this query will return all statuschange records for an ombcase record that has multiple ones.
Any suggestions on how to combine the two ideas?
pgsql-general by date: