I deleted the ColumnA at the table and want to drop the ColumnB.
ALTER TABLE Project.Schema.Table DROP COLUMN ColumnB;
But i got an error
Column `ColumnA` was recently deleted in the table `Table`. Deleted column name is reserved for up to the time travel duration, use a different column name instead.
Why I can`t delete ColumnB? How to do this? Only recreate the table?