How can I write the following SQL query using the Propel ORM?
SELECT species, COUNT(*) FROM Bird GROUP BY species;
|
|
|
|
|
|
|
I've found it hard to find a single document on Propel Criteria (there doesn't seem to be an API document on it) so I usually use the list in Chapter 8 of the symfony book; but I've no idea whether or not that's comprehensive. But what you can do is to feed SQL directly to Propel. The following is modified from an example in http://propel.phpdb.org/docs/user_guide/chapters/FindingObjects.html:
I don't think I've ever used it this way myself, though I might have. |
||
|
|
|
|
but yo will need to do custom hydrating if you need to get count(*) to your populated objects. |
||
|
|