這篇文章主要介紹了thinkPHP多表查詢及分頁功能實現方法,結合具體實例形式分析了thinkPHP多表查詢以及查詢結果的分頁顯示相關實現技巧,需要的朋友可以參考下
#具體如下:
計畫業務邏輯為:教師上傳考卷,設定答案卡,發布答案卡給相關的班級或群組,只有試卷關聯的答案卡發布後,該試卷才能在系統試卷中搜尋到,同時其他的老師也可以收藏。在前端的收藏模組中,有個業務是給個input框以提供搜尋功能給用戶,但是在事先設計的搜尋表中,只有一處試卷ID是和試卷表關聯的,如果用戶搜尋試卷題目那豈不要兩表查詢了,一開始我想到的方法是在收藏表中多加個字段,也就是把試卷題目的字段添加到收藏表中,業務完成。今天在處理題庫分享的邏輯時,又發現了這個問題,看了下同事設計的分享表只有一個題庫ID,於是我便把同事叫過來“糾正”,但事先我還是想聽聽同事的設計思路,同事說量表查詢啊,我勒個去,看來我一張表查詢使用習慣了,沒有想到此種情況,被鄙視了,於是正視了自己的錯誤,當然了前提是說了下自己的思路,現在想來不怎麼對,下面便給給出相關的tp代碼。
// 异步请求试卷夹下某一个试卷夹的列表 public function ajaxLists() { extract($_GET); $page = intval($_GET['p']); $prefix = C('DB_PREFIX'); $collect = $prefix . 'collect'; $resource = $prefix . 'resource'; if ($keyword) { $arr = preg_split('/ /', $keyword); // 搜索标签 foreach ($arr as $value) { $id = A('Home/Papers')->trunWordToId(array($value)); if ($id) { $where['resource.rta_id'][] = array('LIKE', '%,' . $id . ',%'); } $where['resource.re_title'][] = array('LIKE', '%' . $value . '%'); } if ($where['resource.rta_id']) { $where['resource.rta_id'][] = 'AND'; } if ($where['resource.re_title']) { $where['resource.re_title'][] = 'OR'; } if ($where['resource.re_title'] && $where['resource.rta_id']) { $where['_logic'] = 'OR'; } } if ($where) { $map['_complex'] = $where; } $map['collect.a_id'] = $this->authInfo['a_id']; $map['_string'] = 'collect.col_object_id = resource.re_id'; // 总数 $count = M()->table("$collect collect, $resource resource")->where($map)->count(); // 总页数 $regNum = ceil($count/6); // 验证当前请求页码是否大于总页数 $page = $page > $regNum ? $regNum : $page; // 引入ajax分页库 import("@.ORG.Util.AjaxPage"); $Page = new AjaxPage($count, 6); $list['page'] = trim($Page->show()); $list['list'] = M()->table("$collect collect, $resource resource")->where($map)->order('col_id DESC')->limit($Page->firstRow . ',' . $Page->listRows)->field('collect.col_id,collect.col_object_id,resource.re_id,resource.re_title,resource.re_created,resource.re_collect_count,resource.re_score_count,resource.re_score_num,resource.rta_id')->select(); // 获取试卷的标签 $wheree['rta_id'] = array('IN', trim(str_replace(',,', ',', implode('', getValueByField($list['list'], 'rta_id'))), ',')); $tag = setArrayByField(M('ResourceTag')->where($wheree)->field('rta_id,rta_title')->select(), 'rta_id'); // 把标签和试卷对应 foreach ($list['list'] as $key => &$value) { $str = ''; foreach ($tag as $k => $v) { if (strpos($value['rta_id'], ',' . $k . ',') !== FALSE) { $str .= ' | ' . $v['rta_title']; } $value['rta_title'] = trim($str, ' |'); } if ($keyword) { foreach ($arr as $vv) { if (strpos($value['re_title'], $vv) !== FALSE) { $value['re_title'] = str_replace($vv, '<font color=\'red\'>' . $vv . '</font>', $value['re_title']); } if (strpos($value['rta_title'], $vv) !== FALSE) { $value['rta_title'] = str_replace($vv, '<font color=\'red\'>' . $vv . '</font>', $value['rta_title']); } } } $value['re_created'] = date('Y-m-d', $value['re_created']); } echo json_encode($list); }
############################################################################################################################## ###mysql常用基礎操作語法(八)~~###多表查詢###合併結果與內連接查詢【命令列模式】################# ##########
以上是thinkPHP實作多表查詢及分頁功能的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!