-
Find where field is not null in cakephp
over 10 years ago
-
over 9 years ago
$this->User->find('all', array( 'conditions' => array('not' => array('User.email' => null)) )); -
over 10 years ago
over 9 years ago
$this->User->find('all', array(
'conditions' => array('not' => array('User.email' => null))
));
1 Comment(s)