pyspark.sql.Catalog.createExternalTable¶
- 
Catalog.createExternalTable(tableName: str, path: Optional[str] = None, source: Optional[str] = None, schema: Optional[pyspark.sql.types.StructType] = None, **options: str) → pyspark.sql.dataframe.DataFrame¶ Creates a table based on the dataset in a data source.
It returns the DataFrame associated with the external table.
The data source is specified by the
sourceand a set ofoptions. Ifsourceis not specified, the default data source configured byspark.sql.sources.defaultwill be used.Optionally, a schema can be provided as the schema of the returned
DataFrameand created external table.- Returns