hi, I want to do the following query:
SELECT * FROM `actualites` WHERE `categorie` = 'geie' OR `categorie` ='sitmb' OR `categorie` ='atmb'
I tried :
$data = Model_Actualite::find(
'all',
array('where' => array( 'categorie' => 'geie'),
'or' => array( 'categorie' => 'sitmb'),
'or' => array( 'categorie' => 'atmb'),
'order_by' => 'id'
));
but my operator 'OR' doesn't work, does someone know what is the usage for the 'OR' operator, I can't find it.
Thank you