I'm familiar with Python on Databricks to load data into a directory like df.write.format('delta').save('/dir/to/output/')
Is there a SQL-like equivalent of that? I can't find any documentation that mentions it like a select into
or just any similar ability to write data onto a directory or table.
Would appreciate any tips!
you should be able to use something like
INSERT INTO table_name PARTITION (id = 1234) SELECT name, address FROM persons WHERE name = "ABC";
this is the sql format you should be using as per link here