greater than vs between in where clause

Поиск
Список
Период
Сортировка
От Yambu
Тема greater than vs between in where clause
Дата
Msg-id CALhHtcATeM5BTrN6DPZgN8L+fhMgiAmoxKt-VqTFAiu6NJTiTg@mail.gmail.com
обсуждение исходный текст
Ответы Re: greater than vs between in where clause  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список pgsql-general
May i know if there is a difference in speed between 1 ,2 and 3 below , if column start_date is indexed

1.  select * from table_1 where start_date > '1 Oct 2020'
2. select   * from table_1 where start_date between '1 Oct 2020' and now()
3. select * from table_1 where start_date between '1 Oct 2020' and '5 Nov 2020 23:59:59'

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

Предыдущее
От: Michael Lewis
Дата:
Сообщение: Re: Large index
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: greater than vs between in where clause