この記事では、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;
があります。 2 つのサブクエリ ステートメントは実際にはテーブルですが、メモリに格納されているだけです。
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 中国語 Web サイトの他の関連記事を参照してください。