RE: [SQL] Limit Questions 2

From: "Jackson, DeJuan" <djackson(at)cpsgroup(dot)com>
To: Chris Bitmead <chris(dot)bitmead(at)bigfoot(dot)com>, pgsql-sql(at)postgreSQL(dot)org
Subject: RE: [SQL] Limit Questions 2
Date: 1999-04-30 15:39:27
Message-ID: D05EF808F2DFD211AE4A00105AA1B5D21006EC@cpsmail
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

sorry it would be:
SELECT * FROM company_auth LIMIT 90,10;
aka
SELECT * FROM company_auth LIMIT 90 OFFSET 10;
It means to give me at most 90 rows after skipping the first 10.

> > try: select * from company_auth LIMIT 10,90
>
> What does this syntax mean?

Browse pgsql-sql by date

  From Date Subject
Next Message JT Kirkpatrick 1999-04-30 15:59:05 combining a single field in two tables into one column.
Previous Message Mark Jewiss 1999-04-30 14:55:45 Re: [SQL] finding the most recent records