Re: select single entry and its neighbours using direct-acess to index?

Поиск
Список
Период
Сортировка
От Andrew - Supernews
Тема Re: select single entry and its neighbours using direct-acess to index?
Дата
Msg-id slrncr8tcj.sjo.andrew+nonews@trinity.supernews.net
обсуждение исходный текст
Ответ на select single entry and its neighbours using direct-acess to index?  (peter pilsl <pilsl@goldfisch.at>)
Ответы Re: select single entry and its neighbours using direct-acess to index?
Список pgsql-general
On 2004-12-06, Pierre-Frédéric Caillaud <lists@boutiquenumerique.com>
wrote:
> SELECT * FROM test WHERE (name='b' and name2>'a') OR (name>'b') ORDER BY
> name,name2 ASC LIMIT 1;

Write that WHERE clause instead as:

 WHERE name>='b' AND (name>'b' OR (name='b' AND name2>'a'))

This is logically equivalent, but it gives the planner a better handle on
how to use an index scan to satisfy the query.

> SELECT * FROM test WHERE (name='b' and name2<'a') OR (name<'b') ORDER BY
> name,name2 DESC LIMIT 1;

That needs to be ORDER BY name DESC, name2 DESC (the direction indicator
applies per-column and not to the output ordering). Same goes for the
WHERE clause in this query as the previous one, too.

--
Andrew, Supernews
http://www.supernews.com - individual and corporate NNTP services

В списке pgsql-general по дате отправления:

Предыдущее
От: Daniel Martini
Дата:
Сообщение: Re: When to encrypt
Следующее
От: Pierre-Frédéric Caillaud
Дата:
Сообщение: Re: select single entry and its neighbours using direct-acess to index?