Ok to make it more clear: I am Using doctrine

I have a table Brands and Products

Brand
  id
  name

Product
  id
  name
  brand_id

I have a lot of brands and Products of those brands in the database. I would like to retrieve List of brands(+ count of its products) Grouped by Brand.name's first latter.

ex: 
array( 
   n => array( 
        0 => array('Nike', 4 ),
        1 => array('North Pole', 18) 
        .....
   )
   .....
)

So my question was can this be done with one query in a efficient way. I really don't wan't to run separate queries for each brand.name's first latter. Doctrines "Hierarchical Data" cross my mind but I believe it for different thing?. thanks

link|improve this question

71% accept rate
any thoughts? may be some hint words what to google =) – simple Jan 23 '11 at 0:22
1  
There's NativeQuery, which could be used to issue an SQL query that joins the two tables, groups on the brand and counts the products, then you'd post-process the array, but there must be a better way. – outis Jan 23 '11 at 1:13
"... then you'd post-process the array ..." Yes that is what I am doing at the moment, hope there are better way to handle it, so question will remain open. – simple Jan 23 '11 at 13:01
1  
Please add a tag/reference if this is Doctrine 1 or 2 – DrColossos Jan 26 '11 at 8:53
feedback

4 Answers

Can you make clear what your input is? A form? Or is the input your database? Are you asking for as SQL code?

link|improve this answer
I am just asking for directions. edited the question. – simple Jan 22 '11 at 23:27
This should be a comment. – moteutsch Jul 17 '11 at 4:15
feedback

You cannot take it from database in that way, but you can fetch data as objects or arrays and then transform it to described form. Use foreach loops.

link|improve this answer
feedback

When using Doctrine you can also use raw SQL querys and hydrate arrays instead of objects. So my Solution would be to use a native SQL Query:

SELECT 
  brand.name,
  count(product.id) 
FROM 
  brand 
JOIN 
  product ON 
  brand.id=product.brand_id 
GROUP BY 
  brand.id ORDER BY brand.name;

And then iterate in PHP over the result to build the desired array. Because the Result is ordered by Brand Name this is quite easy. If you wasn't to keep database abstraction I think it should also be possible to express this query in DQL, just hydrate an array instead of objects.

link|improve this answer
feedback

If you are going to use this form of result more than once, it might be worthwhile to make the formatting into a Hydrator, as described here.

In your case, you can create a query that select 3 columns

  1. first letter of brand.name
  2. brand.name
  3. count(product.id)

Then hydrate the result

$results = $q->execute(array(), 'group_by_first_column');
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.