nxcals.api.extraction.data.builders.DataFrame.createOrReplaceTempView
- DataFrame.createOrReplaceTempView(name: str) None
Creates or replaces a local temporary view with this
DataFrame
.The lifetime of this temporary table is tied to the
SparkSession
that was used to create thisDataFrame
.New in version 2.0.0.
Examples
>>> df.createOrReplaceTempView("people") >>> df2 = df.filter(df.age > 3) >>> df2.createOrReplaceTempView("people") >>> df3 = spark.sql("select * from people") >>> sorted(df3.collect()) == sorted(df2.collect()) True >>> spark.catalog.dropTempView("people") True