Dooley
Databricks Employee
Databricks Employee

Have you tried to use the explode function for that column with the array?

df.select(explode(df.emailId).alias("email")).show()

----------

Also, if you are a SQL lover, you can instead use the Databricks syntax for querying a JSON seen here.