Using Yii2, I want to get the result of the following query:
SELECT data_pagamento, sum(valor_pago)
FROM tbl_finlegado_titulo_parcela_baixa
WHERE MONTH(data_pagamento) = 10
GROUP BY DAY(data_pagamento)
Using the find method, it does not return the field valor_pago
:
$baixas = self::find()
->select('data_pagamento, SUM(valor_pago)')
->where(['=', "MONTH(data_pagamento)", date('m')])
->groupBy('DAY(data_pagamento)')
->all();