Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
you could post the current sql query cake generates so far. or what part of it is the problematic one. – mark Feb 2 '12 at 19:21
Just added the query. I'm not sure where the issue is exactly. I know all of the data is there, It's just not getting it correctly – Logan Best Feb 2 '12 at 19:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.