sql skip the first row

Solutions on MaxInterview for sql skip the first row by the best coders in the world

showing results for - "sql skip the first row"
Josiah
21 Aug 2018
1SELECT * FROM table WHERE something = 'whatever' LIMIT 10 OFFSET 1;