Question

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?

Était-ce utile?

La solution

ORM::factory('Model')->where('field1', '=', 'value')->or_where('field2', '=', 'value')...
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top