Consider a Table billdetail Like this
__id__|__bill_id__|__weight__|__typecode__|__metal_type__|
| 1 | 2 | 5 | S | GOLD |
| 2 | 2 | 2 | R | GOLD |
| 3 | 2 | 13 | S | GOLD |
| 4 | 3 | 5 | S | SILVER |
| 5 | 3 | 2 | S | SILVER |
| 6 | 4 | 4 | R | SILVER |
I try to select weight from this table billdetail with different condition.
$bill_details = BillDetails::find()->groupby('billdetails.bill_id');
$bill_details->addSelect('sum(billdetails.weight) AS gold_s_w')->andWhere(['billdetails.typecode'=>'S'])->andWhere(['billdetails.metaltype'=>'gold']);
$bill_details->addSelect('sum(billdetails.weight) AS gold_r_w')->andWhere(['billdetails.typecode'=>'R'])->andWhere(['billdetails.metaltype'=>'gold']);
$bill_details->addSelect('sum(billdetails.weight) AS silver_s_w')->andWhere(['billdetails.typecode'=>'S'])->andWhere(['billdetails.metaltype'=>'silver']);
$bill_details->addSelect('sum(billdetails.weight) AS silver_s_r')->andWhere(['billdetails.typecode'=>'R'])->andWhere(['billdetails.metaltype'=>'silver']);
$result= $bill_details->asArray()->all();
Results empty cause condition didn't satisfying. its Not working It give the Rawquery-
SELECT sum(billdetails.weight) AS gold_s_w, sum(billdetails.weight) AS gold_r_w, sum(billdetails.weight) AS silver_s_w,
sum(billdetails.weight) AS silver_s_r
FROM `billdetails` WHERE (((((((`billdetails`.`typecode`='S') AND (`billdetails`.`metaltype`='gold')) AND (`billdetails`.`typecode`='R'))
AND (`billdetails`.`metaltype`='gold')) AND (`billdetails`.`typecode`='S')) AND (`billdetails`.`metaltype`='silver'))
AND (`billdetails`.`typecode`='R')) AND (`billdetails`.`metaltype`='silver') GROUP BY `billdetails`.`bill_id`
`````````````
How to give Respective Where clauses for Respective Selection .
Your query is this (group by three columns):
Or in Yii2:
UPDATE: You can use inner select:
In YII2 must be like: