Re: Order-by and indexes - Mailing list pgsql-novice

From Jean-Yves F. Barbier
Subject Re: Order-by and indexes
Date
Msg-id 20110629170254.2a505902@anubis.defcon1
Whole thread Raw
In response to Re: Order-by and indexes  (Odd Hogstad <odd.hogstad@smartm.no>)
Responses Re: Order-by and indexes  (Odd Hogstad <odd.hogstad@smartm.no>)
List pgsql-novice
On Wed, 29 Jun 2011 16:42:36 +0200, Odd Hogstad <odd.hogstad@smartm.no> wrote:

...
> By default, B-tree indexes store their entries in ascending order with nulls
> last. This means that a forward scan of an index on column x produces output
> satisfying ORDER BY x (or more verbosely, ORDER BY x ASC NULLS LAST). The
> index can also be scanned backward, producing output satisfying ORDER BY x
> DESC (or more verbosely, ORDER BY x DESC NULLS FIRST, since NULLS FIRST is
> the default for ORDER BY DESC).
>
> Doesn't this mean that when I'm not using the order by clause, and it uses a
> Index Scan, I will always get the latest value in return?

Yes, but you're ordering by column id while you seek value into column fk.

This is very different from the doc you quote: in your case, ordering by id
returns you all values of fk BUT the ordering of fk is absolutely undefined.

And, as I suppose fk stands for Foreign Key, you have many row using same
values for fk (?)


> Also I don't
> understand why the order by query is scanning backwards, when the record I
> want is in the other end?

Because id is the primary key (I guess:) and ordering DESC puts id latest
rows first in list, so limiting select to 1 returns the last one.

--
BOFH excuse #287:
Telecommunications is downshifting.

pgsql-novice by date:

Previous
From: Odd Hogstad
Date:
Subject: Re: Order-by and indexes
Next
From: Tom Lane
Date:
Subject: Re: Order-by and indexes