Using CakePHP 1.2, I am trying produce a GROUP BY query:
SELECT `categories`.*, COUNT(`entities`.id)
FROM `categories`
LEFT JOIN `entities` ON (`categories`.`id` = `entities`.`category_id`)
GROUP BY `categories`.`id`
How would/should I go about doing this? I am using ‘Containable’ if that helps.
This is what I eneded up with: