public Phalcon\Mvc\Model\Query\Builder andWhere (string $conditions, [array $bindParams], [array $bindTypes])
Appends a condition to the current conditions using a AND operator
1 2 | $builder ->andWhere( 'name = "Peter"' ); $builder ->andWhere( 'name = :name: AND id > :id:' , array ( 'name' => 'Peter' , 'id' => 100)); |
Please login to continue.