Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
Interface through which the user may create, drop, alter, or query underlying databases, tables, functions, and more.
Syntax
catalog
Returns
Catalog
Examples
spark.catalog
# Create a temp view, show the list, and drop it.
spark.range(1).createTempView("test_view")
spark.catalog.listTables()
# [Table(name='test_view', catalog=None, namespace=[], description=None, ...
spark.catalog.dropTempView("test_view")