有没有办法在Kohana的ORM中使用http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html#function_not-in?类似的东西:
$products = ORM::factory('products')->notin('contry_id', $csl)->find_all();
答案 0 :(得分:1)
使用where语句:
$products = ORM::factory('products')->where('contry_id', 'NOT IN', $csl)->find_all();
$ csl必须是数组