📜  如何在雪花中重命名雪花中的列 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:51.853000             🧑  作者: Mango

代码示例2
-- 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;