예제 #1
0
파일: Builder.php 프로젝트: kanso-cms/cms
 /**
  * Set group by
  *
  * @param  string    $key
  * @param  string    $direction
  * @return \Kanso\Database\Query\Builder
  */
 public function GROUP_BY($key)
 {
     $key = $this->queryFilter($key);
     $this->Query->group_by($key);
     return $this;
 }