Re: Using Between

Поиск
Список
Период
Сортировка
От Craig James
Тема Re: Using Between
Дата
Msg-id 4C785B51.1020105@emolecules.com
обсуждение исходный текст
Ответ на Using Between  ("Ozer, Pam" <pozer@automotive.com>)
Ответы Re: Using Between  ("Ozer, Pam" <pozer@automotive.com>)
Список pgsql-performance
On 8/27/10 5:21 PM, Ozer, Pam wrote:
> I have a query that
>
> Select Distinct VehicleId
>
>  From Vehicle
>
> Where VehicleMileage between 0 and 15000.
>
> I have an index on VehicleMileage. Is there another way to put an index on a between? The index is not being picked
up.It does get picked up when I run 
>
> Select Distinct VehicleId
>
>  From Vehicle
>
> Where VehicleMileage = 15000.
>
> I just want to make sure that there is not a special index I should be using.

You need to post EXPLAIN ANALYZE of your query. It could be that an index scan is actually not a good plan (for
example,a sequential scan might be faster if most of your vehicles have low mileage).  Without the EXPLAIN ANALYZE,
there'sno way to say what's going on. 

Did you ANALYZE your database after you loaded the data?

Craig

> Thanks
>
> *Pam Ozer*
>


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

Предыдущее
От: "Ozer, Pam"
Дата:
Сообщение: Using Between
Следующее
От: Cédric Villemain
Дата:
Сообщение: Re: write barrier question