oracle分页

本文介绍了Oracle数据库的分页查询实现,包括查询格式、性能对比以及分页查询的优化。强调了ROWNUM在查询中的作用,指出在CBO优化模式下,合理的ROWNUM使用能提高查询效率。同时讨论了Oracle实现Top n查询的方法,并提醒了ROWNUM与排序的注意事项。
摘要由CSDN通过智能技术生成

分页前端显示:

<% 
	int i = 1; 
	int numPerPage = 14;//每页数据量
	String pages = request.getParameter("page") ; 
	int currentPage = 1;
	currentPage = (pages==null)?1:Integer.parseInt(pages);
	sql = "select count(*) from tables"; 
	ResultSet rs = DBLink.executeQuery(sql) ; 
	while(rs.next()){
		i = rs.getInt(1);
	} 
	int yeshu = 1;//页数
	yeshu = (i%numPerPage==0)?(i/numPerPage):(i/numPerPage+1); 
	int nextPage ; 
	int upPage; 
	nextPage = currentPage + 1; 
	if (nextPage>=yeshu){
		nextPage=yeshu;
	}
	upPage = currentPage-1; 
	if (upPage<=1){
		upPage=1;
	} 
	rs.close(); 
	sql="select * from tables"; 
	rs=DBLink.executeQuery(sql); 
	i=0; 
	while((i<numPerPage*(currentPage-1))&&rs.next()){
		i++;
	} 
%> 
	//输出内容 
	//输出翻页连接 
	合计:<%=currentPage%>/<%=yeshu%><a href="List.jsp?page=1">第一页</a><a href="List.jsp?page=<%=upPage%>">上一页</a> 
<% 
	for(int j=1;j<=yeshu;j++){ 
		if(currentPage!=j){ 
%> 
			<a href="list.jsp?page=<%=j%>">[<%=j%>]</a> 
<% 
 		}else{ 
 			out.println(j); 
 		}
 	} 
%>
	<a href="List.jsp?page=<%&
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值