【TP5】關於模糊查詢

author:咔咔php

wechat:fangkangfkide

 

在倆個表雙查數據的時候咱們通常使用的都是關聯預加載,可是假如咱們有一個模糊查詢的功能時,這個時候關聯預加載就掛了code

因此只能使用join視頻

 

 

 

/**
     * author:咔咔
     *
     * 獲取單個專題下的視頻
     * @param $where  查詢條件
     * @return array
     */
    public function subjectVideoInfoList($where,$page_index,$page_size)
    {
        if(isset($where['vi_title'])){
            return Db::name('subject_list')
                ->alias('s')
                ->field('s.*,v.vi_id,v.vi_title')
                ->join('video_info v','s.vi_id = v.vi_id')
                ->where([
                    'vs_id'=>$where['vs_id'],
                    'vi_title' => ['like','%'.$where['vi_title'].'%']
                ])->page($page_index,$page_size)->select();
        }else{
            return Db::name('subject_list')
                ->alias('s')
                ->field('s.*,v.vi_id,v.vi_title')
                ->join('video_info v','s.vi_id = v.vi_id')
                ->where([
                    'vs_id'=>$where['vs_id'],
                ])->page($page_index,$page_size)->select();
        }
    }
相關文章
相關標籤/搜索