Google\Cloud\BigQuery\Dataset::table PHP 메소드

table() 공개 메소드

Example: $table = $dataset->table('myTableId');
public table ( string $id ) : Dataset
$id string The id of the table to request.
리턴 Dataset
    public function table($id)
    {
        return new Table($this->connection, $id, $this->identity['datasetId'], $this->identity['projectId']);
    }