Ejemplo n.º 1
0
 /**
  * SQL BETWEEN Clause
  * @param string $column
  * @param mixed $start
  * @param mixed $end
  */
 public function whereBetween($column, $start, $end)
 {
     $this->addWhere(Staple_Query_Condition::Between($column, $start, $end));
     return $this;
 }
Ejemplo n.º 2
0
 public function havingBetween($column, $start, $end)
 {
     $this->addHaving(Staple_Query_Condition::Between($column, $start, $end));
     return $this;
 }