subselect, order by and left join - Mailing list pgsql-general

From Morten K. Poulsen
Subject subselect, order by and left join
Date
Msg-id 20041027130334.GA7310@mopo.i.tv2.dk
Whole thread Raw
List pgsql-general
Dear list,

Please let me know if this is not the list to ask this kind of question.

I am trying to optimize a query that joins two relatively large (750000 rows in
each) tables. If I do it using a subselect, I can "force" the planner to choose
the fastest path. Now, my question is:

If I have a subselect with an ORDER BY, and I LEFT JOIN the result with the
other table, is the order maintained? Or is PostgreSQL free to return the rows
in any order, after the join?

My query is the following:

SELECT a.*
FROM (SELECT * FROM tree WHERE parent_id=1363405 ORDER BY order_index DESC) AS a
LEFT JOIN content AS b ON a.object_id=b.id
WHERE (b.onair = 't') LIMIT 1;

Thanks,
Morten

--
Morten K. Poulsen <morten-postgresql@afdelingp.dk>
http://www.afdelingp.dk/

pgsql-general by date:

Previous
From: "Jon Uhal"
Date:
Subject: Foreign Key Non-Null Problem in 8.0
Next
From: Marco Colombo
Date:
Subject: Re: Reasoning behind process instead of thread based