I would like to extract a number of records on a table based on a sequence e.g. n x 4. Which would mean I would need 0, 4, 8, 12, 16, etc...
Reading through the closest I found to what I'm looking for is:
SELECT * FROM table ORDER BY ID LIMIT n-1,1
I would like to see if it is possible to be done using just one query.