Exemple #1
0
 /**
  * @param mixed $column
  * @param mixed $from
  * @param mixed $to
  * @return Query
  */
 function orBetween($column, $from, $to)
 {
     $this->_where->orBetween($column, $from, $to);
     return $this;
 }