PopSQL
Renaming a column in Snowflake involves using the ALTER TABLE .. RENAME COLUMN command.
ALTER TABLE .. RENAME COLUMN
-- syntax alter table table_name rename column old_name to new_name; -- rename product_category column in products table alter table products rename column products_category to products;
Spread the word