How to add multiple conditions for a single column?

Viewed 714

I have many sentences that I need filter for a same column:

'conditions' => array('Zona.nombre LIKE' => $buscar,
                      'Zona.nombre LIKE' => 'CUPONATIC%',
                      'Zona.nombre LIKE' => 'GROUPON%'
),
1 Answers
Related