SparkSession.
table
Returns the specified table as a DataFrame.
DataFrame
New in version 2.0.0.
Changed in version 3.4.0: Supports Spark Connect.
the table name to retrieve.
Examples
>>> spark.range(5).createOrReplaceTempView("table1") >>> spark.table("table1").sort("id").show() +---+ | id| +---+ | 0| | 1| | 2| | 3| | 4| +---+