mysql查询优化
Posted 满血复活的回来写代码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql查询优化相关的知识,希望对你有一定的参考价值。
以下是高效的查询方式
//获取列表 public function getList($params, $pageSize, $p){ $limit = ($p - 1) * $pageSize; $limit.=",{$pageSize}"; $getWhere = $this -> getWhere($params); $sql = "SELECT SQL_CALC_FOUND_ROWS * from exp_catalog {$getWhere} order by `catid` desc LIMIT {$limit}"; $sqlCount = "SELECT FOUND_ROWS() as count"; $list = $this->db->find($sql); $count_data = $this->db->find($sqlCount);//返回数组 $total = isset($count_data[0][‘count‘]) ? $count_data[0][‘count‘] : 0; return array(‘list‘ => $list, ‘total‘ => $total); }
以上是关于mysql查询优化的主要内容,如果未能解决你的问题,请参考以下文章