Re: Inquiry From Form [pgsql]

Поиск
Список
Период
Сортировка
От Christoph Haller
Тема Re: Inquiry From Form [pgsql]
Дата
Msg-id 3ECE04E1.86BE5143@rodos.fzk.de
обсуждение исходный текст
Ответ на Inquiry From Form [pgsql]  (Rajendran <rajendran@davlin.co.in>)
Ответы Re: Inquiry From Form [pgsql]
Список pgsql-sql
>
> I am using Java language for getting first 10 records from the table
in postgres.
> I dont know how to fetch 10 records from the table.
> Raj
>
First answer is RTFM. But within psql you can fetch like this:

begin;
declare fu cursor for select * from foo;
fetch 10 in fu;
fetch 10 in fu;
...
close fu;
end;

Does this answer your question?

Regards, Christoph




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

Предыдущее
От: Oliver Elphick
Дата:
Сообщение: Re: language "plpgsql" does not exist
Следующее
От: Christoph Haller
Дата:
Сообщение: Re: language "plpgsql" does not exist