Suppose I had a table with 5 fields or so and I wanted the next record but I want it to be the next one as if the records were ordered by 3 of the fields, as seen in the MySQL statement below:
SELECT id FROM t1 ORDERBY f1 ASC, f2 ASC, f3 ASC;
Is there a way to do this?