I'm trying to convert old MySQL queries to Cake format and this one is really giving me a hard time:
select count(*) `total`
FROM (
SELECT user_id, count(user_id) as subtotal
FROM actions JOIN users u ON (u.id=user_id)
WHERE ((u.created<'2010-11-23 16:00:00' OR u.created>'2010-11-29 23:00:00') OR (u.created>='2010-11-23 16:00:00' AND u.created<='2010-11-29 23:00:00') AND u.partner_id <> 00 AND class='bottle')
GROUP BY user_id
HAVING subtotal = 1
) a
Right now my CakePHP query looks like this:
$this->Action->find('count',array('conditions'=>
array(
'Action.class'=>'bottle',
'Action.type !='=>'share',
'OR' => array(
'OR'=>array('User.created <'=>'2010-11-23 16:00:00','User.created >'=>'2010-11-29 23:00:00'),
'AND'=>array('User.created >='=>'2010-11-23 16:00:00','User.created <='=>'2010-11-29 23:00:00')
),
'User.partner_id <>'=>00
),
'group' => 'Action.user_id',
'having' => array('COUNT(Action.user_id)'=>1)
)
);
MySQL query generated from Cake:
SELECT COUNT(*) AS `count`
FROM `actions` AS `Action`
LEFT JOIN `users` AS `User` ON (`Action`.`user_id` = `User`.`id`)
WHERE `Action`.`class` = 'bottle' AND `Action`.`type` != 'share' AND ((((`User`.`created` < '2010-11-23 16:00:00') OR (`User`.`created` > '2010-11-29 23:00:00'))) OR (((`User`.`created` >= '2010-11-23 16:00:00') AND (`User`.`created` <= '2010-11-29 23:00:00')))) AND `User`.`partner_id` <> 0
GROUP BY `Action`.`user_id` having count(`Action`.`user_id`) = 1
Any help on how to do this would be awesome.
*EDIT: Added generated MySQL Query