well guys i have this table i sorted by date and all the id are mixed now and i selected 20 first rows then want to get another 20 rows after the last one to make is more clear : ( SELECT * FROM switch ORDER BY from_date ASC )
id what employee from_date
55 1 11223 2012-01-26
69 3 30182 2012-01-12
67 3 12312 2031-01-12
68 3 12312 2031-01-12
65 3 12312 2031-01-12
6 3 12312 2031-01-12
64 3 12312 2031-01-12
63 3 12312 2031-01-12
**62 3 12312 2012-01-31**
60 3 30182 2012-01-18
61 3 30182 2012-01-18
59 3 30182 2012-01-18
57 3 30182 2012-01-18
58 3 30182 2012-01-18
now i want to get 20 rows from this table after id=62 the output should give me:
60 3 30182 2012-01-18
61 3 30182 2012-01-18
59 3 30182 2012-01-18
57 3 30182 2012-01-18
58 3 30182 2012-01-18