shan_chandra
Databricks Employee
Databricks Employee

Hi @Olly - can you please try the following?

import delta
from pyspark.sql.functions import col

df = delta.DeltaTable.forName(spark, "test111").toDF()
df.select(col("col"))

View solution in original post