选择语言 :

 Module_Database_QueryBuilder::table

Sets the table to update.

Database Module_Database_QueryBuilder::table( mixed $table )

参数列表

参数 类型 描述 默认值
$table mixed Table name or array($table, $alias) or object
返回值
  • Database
File: ./modules/database/querybuilder.class.php
public function table($table)
{
    $this->_builder['table'] = $table;

    return $this;
}