使用NOTIN()的Kohana 3 ORM查询

时间:2012-02-24 10:17:05

标签: php kohana kohana-3 kohana-orm

有没有办法在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();

1 个答案:

答案 0 :(得分:1)

使用where语句:

$products = ORM::factory('products')->where('contry_id', 'NOT IN', $csl)->find_all();

$ csl必须是数组