Is it possible to transfer a table from one schema to another schema in Spark Delta Lake just like ALTER SCHEMA new_schema_name TRANSFER old_schema_name.table_name
in SQL Server without having to drop and create table again?
I am using Spark Delta Lake in my local machine.