Pregunta

I need to find a records where the values of some field are different, it looks like IN, better to say FIND ALL WHERE field=1 OR field=2... OR field=9 And these OR can be a lot. Is it possible to make somethig with this in ORM on Kohana?

¿Fue útil?

Solución

ORM::factory('Model')->where('field1', '=', 'value')->or_where('field2', '=', 'value')...
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top