This is from the LIMIT documentation:
To get all rows from a specific offset to the end of the result set, you can use some large number for the second parameter. This statement extracts all rows from the 96th row to the last:
SELECT * FROM tbl LIMIT 95,18446744073709551615;
EDIT: So, in your case, you just change the value of 95 to 2. Then you get all the lines starting from result 2.