I need to find all rows which userId is 1 or null, but cake generate the follow:
SELECT `SysMenu`.*
FROM `sigepar_softpc`.`sys_permissions` AS `SysPermission`
LEFT JOIN `sigepar_softpc`.`sys_users` AS `SysUser`
ON (`SysPermission`.`user_id` = `SysUser`.`id`)
WHERE `SysPermission`.`user_id`
IN (1, NULL)
I think the problem is the 4th line, because of
SysPermission.user_id=SysUser.id
I do the follow inside my controller:
$sysPermissions = ClassRegistry::init('SysPermission')->find('all', array(
'conditions' => array(
'SysPermission.user_id' => array('1', null)
),
'fields' => array('SysMenu.*')
)
);
How I can get all rows, with association allowing a ID or NULL?
nullis a guest permission. – Gabriel Santos Aug 24 '12 at 19:18$this->Auth->allow()at the code. – Gabriel Santos Aug 25 '12 at 20:50