Thread: RE: [SQL] Limit Questions 2

RE: [SQL] Limit Questions 2

From
"Jackson, DeJuan"
Date:
sorry it would be:SELECT * FROM company_auth LIMIT 90,10;
akaSELECT * 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?