sql语句做分页查询时并统计符合查询条件的总行数
Posted 木子山13
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql语句做分页查询时并统计符合查询条件的总行数相关的知识,希望对你有一定的参考价值。
select
id,
page.sum
from BizPostOrder list
join
(
select
count(*) sum
from BizPostOrder
where
MerchantCode= "eventec" and LoadingBuildingId= "9006_a60e492942af4e1c" and LoadingPeople = "张三"
) as page
where
list.MerchantCode= "eventec" and list.LoadingBuildingId= "9006_a60e492942af4e1c" and list.LoadingPeople = "张三" group by list.Id
以上是关于sql语句做分页查询时并统计符合查询条件的总行数的主要内容,如果未能解决你的问题,请参考以下文章