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?

Was it helpful?

Solution

ORM::factory('Model')->where('field1', '=', 'value')->or_where('field2', '=', 'value')...
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top