Azure Databricks
An Apache Spark-based analytics platform optimized for Azure.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am writing into a databricks notebook to be used later in ADF.
in the notebok I get this error. --> can not resolve "field3"
Do you see why?
df = spark.sql('select * from table limit 10')
df2 = (
df
.select(
"field3"
)
)
display(df)
An Apache Spark-based analytics platform optimized for Azure.
solved.
I was using the wrong field
Thank you