>  기사  >  백엔드 개발  >  여러 하위 쿼리 문을 구현하는 thinkPHP 간단한 방법

여러 하위 쿼리 문을 구현하는 thinkPHP 간단한 방법

不言
不言원래의
2018-05-03 16:31:242777검색

이 글에서는 여러 개의 하위 쿼리문을 간단하게 구현하는 thinkPHP의 방법을 주로 소개하고, thinkPHP의 하위 쿼리문의 구체적인 구현 기법을 예제 형태로 비교 분석해 놓았으니 필요한 친구들이 참고할 수 있다

이 글의 예시를 보면 알 수 있다. thinkPHP가 어떻게 여러 개의 하위 쿼리 문을 구현하는지에 대한 이야기입니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다.

SQL 문은 광범위하고 심오합니다.

SQL 문을 잘 이해하면 thinkphp 및 기타 프레임워크에서 데이터베이스 작업을 잘 활용할 수 있습니다.

원본 SQL :

SELECT a.*,b.* from (SELECT a.id as opener_id,a.name,sum(c.money) as bonus_money,c.year,c.month from sh_opener a
LEFT JOIN sh_opener_bonus b on a.id = b.opener_id
LEFT JOIN sh_incentive c on b.incentive_id = c.id
where a.agent_id = 3 and a.status = 1 and c.year = 2015 and c.month = 11
GROUP BY a.id,c.year,c.month) a
LEFT JOIN (SELECT a.id as payment_id,a.opener_id,a.money as payment_money,a.trode_number from sh_opener_bonus_payment a
where a.year = 2015 and a.`month` = 11 and a.agent_id = 3) b
on a.opener_id = b.opener_id;

두 개의 하위 쿼리 문은 실제로 테이블이지만 메모리에 저장될 뿐입니다.

thinkphp 구현:

$useYear = date('Y',strtotime('last month'));
$this->assign('useYear',$useYear);
$useMonth = date('m',strtotime('last month'));
$this->assign('useMonth',$useMonth);
// 获取上一月人员的奖金金额
// 子查询1
$whereSub1['a.agent_id'] = $this->agent_id;
$whereSub1['a.status'] = 1;
$whereSub1['c.year'] = $useYear;
$whereSub1['c.month'] = $useMonth;
$subQuery1 = M()->table('sh_opener a')->join('sh_opener_bonus b on a.id = b.opener_id')->join('sh_incentive c on b.incentive_id = c.id')->where($whereSub1)->group('a.id,c.year,c.month')->field('a.id,a.name,sum(c.money) as bonus_money,c.year,c.month')->select(false);
// 子查询2
$whereSub2['a.agent_id'] = $this->agent_id;
$whereSub2['a.year'] = $useYear;
$whereSub2['a.month'] = $useMonth;
$subQuery2 = M()->table('sh_opener_bonus_payment a')->where($whereSub2)->field('a.id as payment_id,a.opener_id,a.money as payment_money,a.trode_number')->select(false);
$list = M()->table($subQuery1.' a')->join($subQuery2.' b on a.id = b.opener_id')->select();
$this->assign('list',$list);

사실 thinkphp 프레임워크의 sql 캡슐화는 결국 sql 문으로 합쳐져야 합니다.

관련 추천:

thinkPHP5.0 프레임워크 네임스페이스 자세한 설명

위 내용은 여러 하위 쿼리 문을 구현하는 thinkPHP 간단한 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.