How to Rename a Table in Snowflake
Renaming a table in Snowflake is performed by using ALTER TABLE .. RENAME TO
statement:
--the syntax
alter table old_table_name rename to new_table_name;
--rename users_marketing to users table
alter table sessions_db1 rename to sessions_db_1;
Previous
How to Rename a ColumnFrom Snowflake query to chart to Slack in seconds
Get to answers faster, together, with PopSQL and Snowflake