Hi!
This ticket existed before as an idea, but since it is not implemented, I was wondering if someone could advise me on a workaround.
My use case: renaming tables with table names passed for a macro through the text box.
So what I would want to do -- update my existing post SQL which could look something like this:
alter table TABLE_NAME
rename to TABLE_NAME_OLD;
alter table TABLE_NAME_NEW
rename to TABLE_NAME;
With a value for TABLE_NAME that is passed through text box.
Any help would be appreciated!