Re: limitby without orderby

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: limitby without orderby
Дата
Msg-id CAOR=d=305p=oBfAfco=5+1-K4agF1YwspLwpAoNYv+cKqHMj3w@mail.gmail.com
обсуждение исходный текст
Ответ на limitby without orderby  (Rohan Malhotra <yourbuddyrohan@gmail.com>)
Список pgsql-general
On Thu, Sep 22, 2011 at 5:32 AM, Rohan Malhotra
<yourbuddyrohan@gmail.com> wrote:
> Hi Gurus,
> What is difference between
> select * from items order by random() limit 5;
> and
> select * items limit 5;
> my basic requirement is to get random rows from a table, my where clause
> will make sure I won't get same rows in repeated execution of above queries.

The biggest problem with the order by random() limit 5 is the cost.
If there's 1,000 or so rows, no big deal, if there's 10,000,000 rows
it's gonna be slow...

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

Предыдущее
От: Josh Berkus
Дата:
Сообщение: PostgreSQL to Ingres migration
Следующее
От: John R Pierce
Дата:
Сообщение: Re: Replication between 64/32bit systems?