标签:
MySQL中实现上一页下一页效果
下一页
select * from article where aid = (select aid from article where aid > ? order by aid asc limit 1);
上一页
select * from article where aid = (select aid from article where aid < ? order by aid desc limit 1);
标签:
原文地址:http://www.cnblogs.com/denied/p/5496644.html