Обсуждение: RE: [SQL] Limit Questions 2

Поиск
Список
Период
Сортировка

RE: [SQL] Limit Questions 2

От
"Jackson, DeJuan"
Дата:
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?