分页查询语句

Posted 安然格思

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分页查询语句相关的知识,希望对你有一定的参考价值。

--每页两行数据,显示sid,sname,sex,email,tel,intime,s.cid,cname等内容
select top 2 sid,sname,sex,email,tel,intime,s.cid,cname
--关联student s,classes c两张表
from student s,classes c
where s.cid=c.cid and sid
--不在select top 2 sid from student该范围内
not in(select top 2 sid from student)

 

 

 

select top "+rows+" sid,sname,sex,birth,tel,intime,idcard,saddr,s.cid,c.cname
from student s,classes c
where s.cid=c.cid and sid
not in(select top "+(page-1)*rows+" sid from student )and s.cid=?

以上是关于分页查询语句的主要内容,如果未能解决你的问题,请参考以下文章

使用sql语句实现分页查询

一条sql语句实现分页查询,且能返回记录总数

【SQL语句】-分页查询limit的用法

如何用sql语句 实现分页查询

有join的sql语句如何写分页查询?

oracle分页查询语句怎么写每页查询10条