I'm a bit stuck with this
I have this query:
$select = Doctrine_Query::create()->select('SUM(p.amount * p.cost) as total')
->addSelect('(SELECT u.username from sfGuardUser as u WHERE p.customer_id = u.id) as user')
->from('PinvoicesCustomers p')
->groupby('p.customer_id');
Which yields this SqlQuery (obtained from getSqlQuery() ):
SELECT SUM(p.amount * p.cost) AS p__0,
(SELECT s.username AS s__username FROM sf_guard_user s WHERE (p.customer_id = s.id)) AS p__1
FROM pinvoices_customers p GROUP BY p.customer_id
If I directly execute the generated SQL in the database it returns the expected results:
database=# SELECT SUM(p.amount * p.cost) AS p__0, (SELECT s.username AS s__username FROM sf_guard_user s WHERE (p.customer_id = s.id)) AS p__1 FROM pinvoices_customers p GROUP BY p.customer_id;
p__0 | p__1
----------+----------
3986.2 | customerA
90634.23 | customerB
14159.73 | customerC
(3 filas)
However the problem is when the query is executed within symfony:
$this->data= $select->execute();
foreach($this->data as $dat):
echo $dat['total']."::".$dat['user'];
endforeach;
Then get just only the first result:
3986.2::customerA
Indeed If I try echo $this->data[1]['total']; I get an error: Unknown record property / related component "total" on "PinvoicesCustomers" at Doctrine_Record->_get('total', 1)
The fact is that if I simplify the query, by removing the inner select, as:
$select = Doctrine_Query::create()->select('SUM(p.amount * p.cost) as total')
->from('PinvoicesCustomers p')
->groupby('p.customer_id');
$this->data= $select->execute();
foreach($this->data as $dat):
echo $dat['total'];
endforeach;
I get the three amounts rightly:
3986.2
90634.23
14159.73
... but I want to get the customer name with it's corresponding sum together as expected by the query.
What could be happening?
Edit:
I'm using for this action a raw SQL query however I'm interested if some one can put some light on this issue.