I am using postgresql 8.3 and I have a simple sql query:
SELECT a.id,a.bpm_process_instance_id,a.actor_id
FROM bpm_task_instance a
WHERE a.bpm_process_instance_id IN
(
SELECT bpm_process_instance_id
FROM incident_info
WHERE status = 12
AND registrant = 23
)
so, I got a result set like this:
id instance_id actor_id
150 53 24
147 53 26
148 53 25
161 57 26
160 57 26
158 57 24
165 58 23
166 58 24
167 58 24
now, I want to get the max id by instance_id, and the result is like blew
id instance_id actor_id
150 53 24
161 57 26
167 58 23
how could I get the result ? I use the following sql, but get an error.
ERROR: relation "x" does not exist
SELECT *
FROM (SELECT a.id,a.bpm_process_instance_id,a.actor_id
FROM bpm_task_instance a
WHERE a.bpm_process_instance_id IN
(
SELECT bpm_process_instance_id
FROM incident_info
WHERE status = 12
AND registrant = 23
)
) AS x
WHERE x.id = (
SELECT max(id)
FROM x
WHERE bpm_process_instance_id = x.bpm_process_instance_id
)
anyone who can help me , thanks a lot!
Result (note: the last row differs!):
UPDATE: this is the query including the other subquery and the missing table, and the original (ugly) column names, all packed into a CTE:
UPDATE addendum:
Oops, the bad news is that 8.3 did not have CTE's yet. (think about upgrading). The good news is: as a workaround you could make zcte () as a (temporary) VIEW, and refer to that instead.