欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php mssql 分页SQL语句优化 持续影响

程序员文章站 2023-10-31 17:53:22
复制代码 代码如下:

复制代码 代码如下:

<?php
/**
* @filename :page.sql.class.php
* @creattime :2009-01-06
* @descrition :此类为sql语句处理类。
* @updatetime-1 :null
* @version :jswweb1.0.0
* @author :fkedwgwy
* @dome :
$sql//sql语句
$allcount//总记录数
$pagesize//页面显示记录条数
$page//当前页
$sqlc= new sqlpage($sql,$allcount,$pagesize,$page);
$sql=$sqlc->getsql();
优化后的语句:
select * from (select top 10 * from (select top 270 lsh,ztm,dyzrsm,dyzzfs,cbsm,cbny,ssh,fbsl,jcsl from ts_gcb where ssh like 'c%' order by lsh asc) as inner_tbl order by lsh desc) as outer_tbl order by lsh asc
*/
class sqlpage{
function sqlpage($sql,$allcount,$pagesize,$page){
$this->sql= $sql;//查询语名
$this->allcount= intval($allcount);//总记录数
$this->pagesize= intval($pagesize);//页面大小(显示记录数)
$this->page= intval($page);//当前页
$this->getpage();
$this->gettop();
}
function getpage(){ //获取当前页
$this->allpage=ceil( $this->allcount/$this->pagesize);//去当前小数的最大整数
if ($this->page=="" or $this->page>$this->allpage or $this->page<0 or $this->page==0){
$this->page2=1;
}else{
$this->page2=intval($this->page);//将页码转换为数字
}
}
function gettop(){ //获取子查询2的top大小
if ($this->page2<$this->allpage){
$this->top2=$this->pagesize;
}else{
$this->top2=$this->allcount-$this->pagesize*($this->allpage-1);
}
}
/* function getsql(){//获取sql语句
$this->s=preg_replace("/select/i","",$this->sql);
$this->top1=$this->pagesize*$this->page2;
$this->sql1="select top $this->top1 $this->s";
if (strpos($this->sql,"asc")){//升序
$this->sql_e="select * from ( select top $this->top2 * from ( $this->sql1 ) as asystable order by $this->order desc ) as bsystable order by $this->order asc";
}else
//$this->sql_e="select * from ( select top $this->top2 * from ( $this->sql1 ) as asystable order by $this->order desc ) as bsystable order by $this->order asc";
if (strpos($this->sql,"desc")){//降序
$this->sql_e="select * from ( select top $this->top2 * from ( $this->sql1 ) as asystable order by $this->order asc ) as bsystable order by $this->order desc";
}else{//不处理排序的情况
$this->sql_e="select * from ( select top $this->top2 * from ( $this->sql1 ) as asystable order by $this->order desc ) as bsystable order by $this->order asc";
}
// echo $this->sql_e;
return $this->sql_e;
}*/
function getsql()
{
$sql=$this->sql;
$this->top1=$this->pagesize*$this->page2;
$orderby = stristr($sql, 'order by');
if ($orderby !== false) {
$sort = (stripos($orderby, ' desc') !== false) ? 'desc' : 'asc';
$order = str_ireplace('order by', '', $orderby);
$order = trim(preg_replace('/\basc\b|\bdesc\b/i', '', $order));
}
$sql = preg_replace('/^select\s/i', 'select top ' . ($this->top1) . ' ', $sql);
$sql = 'select * from (select top ' . $this->top2 . ' * from (' . $sql . ') as inner_tbl';
if ($orderby !== false) {
$sql .= ' order by ' . $order . ' ';
$sql .= (stripos($sort, 'asc') !== false) ? 'desc' : 'asc';
}
$sql .= ') as outer_tbl';
if ($orderby !== false) {
$sql .= ' order by ' . $order . ' ' . $sort;
}
echo $sql;
return $sql;
}
}
?>