Re: Different order by behaviour depending on where clause? - Mailing list pgsql-sql

From Pavel Stehule
Subject Re: Different order by behaviour depending on where clause?
Date
Msg-id CAFj8pRBRJkJS-KSOL-1wdnhmG4ZEv9LFfXmUZFxmzUfzA+ymgw@mail.gmail.com
Whole thread Raw
In response to Different order by behaviour depending on where clause?  (Jan Bakuwel <jan.bakuwel@greenpeace.org>)
Responses Re: Different order by behaviour depending on where clause?  (Phil Couling <couling@gmail.com>)
List pgsql-sql
Hello

2011/10/28 Jan Bakuwel <jan.bakuwel@greenpeace.org>:
> Hi,
>
> I have a compound query with some grouping, having and order by's saved
> as a view, say with name "myview".
>
> A) select * from "myview" returns the results as expected in the correct
> order (the order by is on fields "Category", "Year", "Month" and a few
> other fields). The results are correctly ordered by these fields as
> specified in the view.
>
> B) select * from "myview" where "Year"=2011 and "Month"=1 also returns
> the results as expected in the correct order (a subset of A).
>
> however
>
> C) select * from "myview" where "Year"=2011 and "Month" >= 1 and "Month"
> <= 1 returns the same resultset as B but the order of the rows is not
> correct (not even close; haven't been able to see any pattern).
>
> Any idea how I can further analyse/diagnose this?
>
> regards,
> Jan
>

Look on EXPLAIN - these queries will have a different execution plan

http://www.postgresql.org/docs/8.4/static/sql-explain.html

Regards

Pavel Stehule

>
> --
> Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-sql
>


pgsql-sql by date:

Previous
From: Lee Hachadoorian
Date:
Subject: Re: optimize self-join query
Next
From: Harald Fuchs
Date:
Subject: Re: optimize self-join query