Re: ORDER BY and NULLs

Поиск
Список
Период
Сортировка
От Greg Stark
Тема Re: ORDER BY and NULLs
Дата
Msg-id 87zn3mjeaw.fsf@stark.xeocode.com
обсуждение исходный текст
Ответ на Re: ORDER BY and NULLs  (T E Schmitz <mailreg@numerixtechnology.de>)
Ответы Re: ORDER BY and NULLs
Список pgsql-sql
T E Schmitz <mailreg@numerixtechnology.de> writes:

> I just dug out the PostgreSQL book again because I thought I might've garbled
> it:
> 
> Quote: "PostgreSQL will not index NULL values. Because an index will never
> include NULL values, it cannot be used to satisfy the ORDER BY clause of a
> query that returns all rows in a table."

You should just cross out that whole section. It's just flatly wrong. 

I had always assumed it was just people bringing assumptions over from Oracle
where it is true. Perhaps this book is to blame for some of the confusion.
Which book is it?

Postgres indexes NULLs. It can use them for ORDER BY clauses. 

Where it cannot use them is to satisfy "WHERE foo IS NULL" or "WHERE foo IS
NOT NULL" constraints though. That's an implementation detail, but it can be
worked around with partial indexes.

-- 
greg



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

Предыдущее
От: T E Schmitz
Дата:
Сообщение: Re: ORDER BY and NULLs
Следующее
От: Tom Lane
Дата:
Сообщение: Re: ORDER BY and NULLs