--TEST-- where('NOT col', array) --FILE-- from('article')->where('NOT id', array(1,2)); echo $query->getQuery() . "\n"; ?> --EXPECTF-- SELECT article.* FROM article WHERE NOT id IN (1, 2)