示例#1
0
 /**
  * Sets the table for the query.
  *
  * @param string $table table name
  *
  * @return self
  */
 public function into($table)
 {
     $this->table->addTable($table);
     return $this;
 }
示例#2
0
文件: From.php 项目: jaredtking/jaqb
 /**
  * Sets the table for the query.
  *
  * @param string $table table name
  *
  * @return self
  */
 public function from($table)
 {
     $this->from->addTable($table);
     return $this;
 }