RE: "Display of specified number of records." - Mailing list pgsql-sql

From Robby Slaughter
Subject RE: "Display of specified number of records."
Date
Msg-id EPEHLKLEHAHLONFOKNHNEEKBDCAA.webmaster@robbyslaughter.com
Whole thread Raw
In response to "Display of specified number of records."  (rajesh.prabhu@lycos.com (rajesh))
List 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 by date:

Previous
From: Roberto Mello
Date:
Subject: Re: Re: [INTERFACES] distinguishing different database connections
Next
From: David Stanaway
Date:
Subject: cumulative sum in aggregate query.