další:
select * from foo where id = (select min(id) from foo where id > 4)
předchozí:
select * from foo where id = (select max(id) from foo where id < 4)
další:
select * from foo where id = (select min(id) from foo where id > 4)
předchozí:
select * from foo where id = (select max(id) from foo where id < 4)