RE: "Display of specified number of records."

Поиск
Список
Период
Сортировка
От Robby Slaughter
Тема RE: "Display of specified number of records."
Дата
Msg-id EPEHLKLEHAHLONFOKNHNEEKBDCAA.webmaster@robbyslaughter.com
обсуждение исходный текст
Ответ на "Display of specified number of records."  (rajesh.prabhu@lycos.com (rajesh))
Список pgsql-sql
You want to just display records WHERE the field is BETWEEN
10 and 50?

SELECT * FROM test WHERE testID BETWEEN 10 AND 50;

If you want them to be ordered by the testID, just include a ORDER BY
testID;

See, isn't SQL a friendly language? :-)

-Robby

Hi, I have got following simple SQL. Select TestID from test where testname = ' ' order by testdate.
 Suppose for argument sake there are 100 records and testID's are 1
to 100. Is it possible to modify this SQL so that it will display records
from 10 to 50 and not any other records.

Rajesh.

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster



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

Предыдущее
От: Roberto Mello
Дата:
Сообщение: Re: Re: [INTERFACES] distinguishing different database connections
Следующее
От: David Stanaway
Дата:
Сообщение: cumulative sum in aggregate query.