分页的实现(clppb表显示第5~10条数据)
1、mysql
select*fromtablelimitstart,pageNum
select*fromCLPPBlimit5,5
2.ORCAL
select*from(
selectrownumrn,cp.*fromclppbcpwhererownum<11orderbyid)
wherern>5