public Phalcon\Mvc\Model\Query\Builder where (mixed $conditions, [array $bindParams], [array $bindTypes])
Sets the query conditions
1 2 3 | $builder ->where(100); $builder ->where( 'name = "Peter"' ); $builder ->where( 'name = :name: AND id > :id:' , array ( 'name' => 'Peter' , 'id' => 100)); |
Please login to continue.