码迷,mamicode.com
首页 > 数据库 > 详细

sqlServer数据库与mysql数据库分页查询语句

时间:2019-03-04 11:12:34      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:mysql数据库   code   span   repo   查询语句   where   top   lse   sql   

sqlServer:

--8代表每页显示行数pagesize,4代表第几页,currentpage

select top 8 * from
(
SELECT 
[ProjectID]
,[ProjectName]
FROM [ReportingSystemDB].[dbo].[Projects]
where [ProjectID] not in (select top (4*8) [ProjectID] from [Projects]) 
) as a

===================

mysql:

select * from table limit (start-1)*limit,limit; 其中start是页码,limit是每页显示的条数。

 

sqlServer数据库与mysql数据库分页查询语句

标签:mysql数据库   code   span   repo   查询语句   where   top   lse   sql   

原文地址:https://www.cnblogs.com/houzp/p/10469439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!