SqlServer 多表查询分页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SqlServer 多表查询分页相关的知识,希望对你有一定的参考价值。
帮忙针对这个查询结果集 写一个分页的 存储过程
select a.*,b.img_typename from jingwailife a,jingwaiimgtype b where a.img_type=b.img_typecode
and a.img_type='1' order by img_date desc
drop proc pro
go
create procedure pro
@pageIndex int,
@pageSize int
as
declare @startRow int, @endRow int
set @startRow = (@pageIndex - 1) * @pageSize +1
set @endRow = @startRow + @pageSize -1
select * from (
select a.*,b.img_typename from jingwailife a,jingwaiimgtype b ,row_number() over (order by sno asc) as number
where a.img_type=b.img_typecode
and a.img_type='1' ) t
where t.number between @startRow and @endRow
go
exec pro @pageIndex , @pageSize
go 参考技术A 多表查询分页的话,我认为最好还是用视图 参考技术B 这个真不会啊 加油把 我是来真惊艳的
SQLServer多表联查,多表分页查询
多表联查:
select p.*,s.Sheng , i.Shi
from [dbo].[ProductRecordInfo] --表名
p left join [ShengInfo] s on p.ShengInfo = s.ShengId --使用left join左连接 让两个表中的指定字段产生连接关系
left join [ShiInfo] i on p.ShiInfo = i.ShiId --使用left join左连接 让三个表中的指定字段产生连接关系
这里的 on 就类似于where,后面的条件可以自己写
运行结果如下:
分页Sql语句:
使用row_number()函数进行编号
select * from (select ROW_NUMBER() over (order by Id ASC) as IDD ,*from ProductRecordInfo) a where a.IDD>=1 and a.IDD<=3
先按Id进行排序,排序完后,给每条数据进行编号。
在这个语句中ROW_NUMBER()函数将针对SELECT语句返回的每一行,从1开始编号,赋予其连续的编号。在查询时应用了一个排序标准后,只有通过编号才能够保证其顺序是一致的,当使用ROW_NUMBER函数时,也需要专门一列用于预先排序以便于进行编号
运行结果如下:
最后如果想用ADO 做显示分页功能的话,就需要把多表联查跟分页结合起来,拼接语句如下:
select * from(
select *, ROW_NUMBER() OVER(order by Id asc) row from
(select p.*,s.Sheng,i.Shi,a.PinPai
from [dbo].[ProductRecordInfo]
p left join [ShengInfo] s on p.ShengInfo = s.ShengId
left join [ShiInfo] i on p.ShiInfo = i.ShiId
left join[dbo].[PinPaiInfo] a on p.PinPaiInfo=a.Aid)t1)t2
where t2.Row between 1 and 3
结果如下:
注意事项:我们在进行数据库多表联查中必定会用到这些sql关键字,如果不弄清楚他们的区别,那就写不出来我们项目需要的查询条件。
以上是关于SqlServer 多表查询分页的主要内容,如果未能解决你的问题,请参考以下文章