Axa1902
0
Q:

sql skip the first row

SELECT * FROM table WHERE something = 'whatever' LIMIT 10 OFFSET 1;
1
SELECT col1, col2, ...
 FROM ...
 WHERE ... 
 ORDER BY -- this is a MUST there must be ORDER BY statement
-- the paging comes here
OFFSET     10 ROWS       -- skip 10 rows
FETCH NEXT 10 ROWS ONLY; -- take 10 rows
0

New to Communities?

Join the community