Hey Team,
We are in a migration phase from SQL server to Databricks.
In our sql server databricks, lot of times, #temp tables created and dropped like typical Datawarehousing sql.
In Databricks, we can do 2 things. I want to check which one is best approach and why?
1) create temp views in databricks and make use of views later in the query
2) create delta table with temp(prefix) and make use of temp table and at the end drop temp table.
I am looking forward for your response.