Home > Database > Mysql Tutorial > oracle VS mysql 的分页查询

oracle VS mysql 的分页查询

WBOY
Release: 2016-06-07 15:01:57
Original
1188 people have browsed it

首先是Oracle: String sql = select * from ( select t.*,rownum as num from (select * from user1 where 1=1 ; SetEntryString, Object set = m.entrySet(); Iterator io = set.iterator(); while (io.hasNext()) { Map.EntryString, Object me = (Map.En

首先是Oracle:

String sql = " select * from ( select t.*,rownum as num from (select * from user1  where 1=1 ";

Set> set = m.entrySet();
Iterator io = set.iterator();
while (io.hasNext()) {
Map.Entry me = (Map.Entry) io.next();
if("username".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " and " + me.getKey() + " like '%"+ me.getValue()  +"%'" ;
}
if("startTime".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " and " + me.getKey() + " >= '" + me.getValue() +"'";
}
if("endTime".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " and " + me.getKey() + " }
if("sort".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " order by " + me.getValue() ;
}
if("order".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " " + me.getValue();
}
}
sql += " )t) " ;
sql = sql +" where num >=" + (currentPage-1)*pageSize +" and  num


  接着是MySQL:

String sql = " select * from user  where 1=1 ";

Set> set = m.entrySet();
Iterator io = set.iterator();
while (io.hasNext()) {
Map.Entry me = (Map.Entry) io.next();
if("username".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " and " + me.getKey() + " like '%"+ me.getValue()  +"%'" ;
}
if("startTime".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " and " + me.getKey() + " >= '" + me.getValue() +"'";
}
if("endTime".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " and " + me.getKey() + " }
if("sort".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " order by " + me.getValue() ;
}
if("order".equals(me.getKey()) && !"".equals(me.getValue())){
sql += " " + me.getValue();
}
}
sql = sql +" limit " + (currentPage-1)*pageSize +" , "  + pageSize ;

pageSize 该页有多少条数据,currentPage该页码






Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template