I am struggling to understand something here and im sure the answer is simple....when I run this command in a Databrick note book:
(df.write
.format("delta")
.option("path", "/file/path/location")
.saveAsTable("MyTable"))
It creates a delta table. Okay Great! but if I run the same command in azure synapse spark notebook....it creates a table... Does Synapse now support delta tables? According to this stack overflow post it does not.
So my question is...whats the difference?
Thanks in advance!