How to use OR in find method – CakePHP
Hello Friends,
When any developer is working with any web application, he/she will constantly interact with the Select Query. As i am working with CakePHP, i also need to use Select Query often. For Select Query in CakePHP, you can use find method of Model which gives you the data as per conditions given in find method. If you write more than one conditions in conditions array passed in find method than by default it will take OR clause and make a query string with "AND". If you want to do OR operation or any other operation than you need to mention that in find method. Look at below syntax.
<?php
$this->Post->find('all', array('conditions' => $conditions));
$conditions = array("id"=>"5","name"=>"abc");
//Above condition will make a select query with AND.(WHERE id=5 AND name='abc')
$conditions = array("OR"=>array("id"=>"5","name"=>"abc"));
// If you define "OR" as per above statement than the query will be WHERE id=5 OR name='abc'
?>






I am
about 1 year ago
I'm suprised it is so easy and logical, in fact
Cake never cease to suprise me
about 1 year ago
I'm suprised it is so easy and logical, in fact
Cake never cease to suprise me 
about 10 months ago
thanks guys, that is very help me..