欢迎来到天天文库
浏览记录
ID:38217575
大小:31.00 KB
页数:3页
时间:2019-05-25
《数据库分页语句》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、1.分页语句取出sql表中第31到40的记录(以自动增长ID为主键)sqlserver方案1:selecttop10*fromtwhereidnotin(selecttop30idfromtorderbyid)ordebyidsqlserver方案2:selecttop10*fromtwhereidin(selecttop40idfromtorderbyid)orderbyiddescmysql方案:select*fromtorderbyidlimit30,10oracle方案:select*from(selec
2、trownumr,*fromtwherer<=40)wherer>30--------------------待整理进去的内容-------------------------------------pageSize=20;pageNo=5;1.分页技术1(直接利用sql语句进行分页,效率最高和最推荐的)mysql:sql="select*fromarticleslimit"+(pageNo-1)*pageSize+","+pageSize;oracle:sql="select*from"+"(selectrow
3、numr,*from"+"(select*fromarticlesorderbypostimedesc)"+"whererownum<="+pageNo*pageSize+")tmp"+"wherer>"+(pageNo-1)*pageSize;注释:第7行保证rownum的顺序是确定的,因为oracle的索引会造成rownum返回不同的值简洋提示:没有orderby时,rownum按顺序输出,一旦有了orderby,rownum不按顺序输出了,这说明rownum是排序前的编号。如果对orderby从句中的字段建
4、立了索引,那么,rownum也是按顺序输出的,因为这时候生成原始的查询结果集时会参照索引表的顺序来构建。sqlserver:sql="selecttop10*fromidnotid(selecttop"+(pageNo-1)*pageSize+"idfromarticles)"DataSourceds=newInitialContext().lookup(jndiurl);Connectioncn=ds.getConnection();//"select*fromuserwhereid=?"--->binaryd
5、irectivePreparedStatementpstmt=cn.prepareSatement(sql);ResultSetrs=pstmt.executeQuery()while(rs.next()){out.println(rs.getString(1));}2.不可滚动的游标pageSize=20;pageNo=5;cn=nullstmt=null;rs=null;try{sqlserver:sql="select*fromarticles";DataSourceds=newInitialContext
6、().lookup(jndiurl);Connectioncn=ds.getConnection();//"select*fromuserwhereid=?"--->binarydirectivePreparedStatementpstmt=cn.prepareSatement(sql);ResultSetrs=pstmt.executeQuery()for(intj=0;j<(pageNo-1)*pageSize;j++){rs.next();}inti=0;while(rs.next()&&i<10){i++
7、;out.println(rs.getString(1));}}cacth(){}finnaly{if(rs!=null)try{rs.close();}catch(Exceptione){}if(stm.........if(cn............}3.可滚动的游标pageSize=20;pageNo=5;cn=nullstmt=null;rs=null;try{sqlserver:sql="select*fromarticles";DataSourceds=newInitialContext().loo
8、kup(jndiurl);Connectioncn=ds.getConnection();//"select*fromuserwhereid=?"--->binarydirectivePreparedStatementpstmt=cn.prepareSatement(sql,ResultSet.TYPE_SCROLL_INSENSITIVE,...);//根据上面这行代码
此文档下载收益归作者所有