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?

有帮助吗?

解决方案

ORM::factory('Model')->where('field1', '=', 'value')->or_where('field2', '=', 'value')...
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top