Example #1
0
 /**
  * from('table') => "FROM table"
  * @param string $table
  * @return \phprs\ezsql\rules\select\JoinRule
  */
 public function from($table, $as = null)
 {
     FromImpl::from($this->context, $table, $as);
     return new JoinRule($this->context);
 }