Is it possible to use aggregate values in Doctrine_RawSql query? Here's what I'm trying to do:

$q = new Doctrine_RawSql();
$q->select('{q.*}, AVG(a.value) AS avg');
$q->from('-- complex from clause');
$q->addComponent('q', 'Question');

However, SQL created by Doctrine leaves only columns from table question and omits aggregate value avg.

link|improve this question

75% accept rate
1  
First try to add component for alias "a" (you have "a.value" in query). – Vladimir Mihailenco Feb 20 '10 at 12:55
I'm trying to accomplish the same, but I'm also having difficulties. Have you fixed it since? – bouke Aug 18 '10 at 9:07
feedback

3 Answers

I've never used Doctrine_RawSql before, but I have done raw SQL queries through Doctrine using either of these two methods:

Doctrine_Manager::getInstance()->getCurrentConnection()->fetchAssoc("YOUR SQL QUERY HERE");

and

$doctrine = Doctrine_Manager::getInstance()->getCurrentConnection()->getDbh();
$result = $doctrine->query('YOUR SQL QUERY HERE');

It seems like these two methods would leave your original SQL intact.

I should note that I'm using Doctrine 1.2 within the context of Symfony 1.4 applications, but AFAIK, this would work for you regardless of what other frameworks you may be using.

link|improve this answer
feedback

Have you looked at the doctrine cookbook section on aggregates? They use createQuery method on the entity manager rather than RawSql objects.

I'm no expert with doctrine, but this could be a good place to start!

link|improve this answer
My question applies to Doctrine 1.x. Doctrine 2.0 is completely different story. – Jan Dudek Nov 29 '10 at 21:07
feedback

Try putting the aggregate field in the SQL and then fetch it using curly brackets. I'm using SQL subquery.

$q = new Doctrine_RawSql();
$q->select('{s.*}, {s.avg} AS avg');
$q->from('(SELECT q.*, AVG(value) AS avg FROM Question AS q) AS s');
$q->addComponent('s', 'Question');

It works for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.