Re: get certain # of recs

Поиск
Список
Период
Сортировка
От Patrik Kudo
Тема Re: get certain # of recs
Дата
Msg-id Pine.BSF.4.31.0109142307300.26062-100000@tb303.partitur.se
обсуждение исходный текст
Ответ на get certain # of recs  ("Mike S. Nowostawsky" <mikenowo@sympatico.ca>)
Список pgsql-general
On Thu, 13 Sep 2001, Mike S. Nowostawsky wrote:

> How can one select only a certain number of records in Postgres?
>
> In other SQL langs we can use, say, for the first 20 recs:
>
> select  * from tablename where rownum < 21;

You could use

select * from tablename limit 20

If you need to sort in some way you could use something like

select col1, col2, ... coln from tablename order by col1 limit 20

Regards,
Patrik Kudo


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

Предыдущее
От: roypgsqlgen@xemaps.com
Дата:
Сообщение: Re: maintaining sequences
Следующее
От: Lalo Castro
Дата:
Сообщение: pgdumpall