the error is happening because you most likely have paging in place to return 5 records per page which uses the limit function.
I think the main question to look at is why do you wish to exclude the first record from the results.
is this a specific record that not be returned ever?
if this is the case, wouldn't it be better to just delete the record?
or you could add a WHERE condition to exclude it. If the ID is 1:
WHERE idColumn = 1