How to Drop a Column in Snowflake
Dropping a column in Snowflake involves using the ALTER TABLE .. DROP COLUMN
command.
Drop one column:
alter table products
drop column description;
Drop multiple columns at the same time:
alter table products
drop column price, description;
Previous
How to Create an IndexShared queries and folders ✅ Version history ✅ One-click connection to Snowflake ✅
Get more done, together, with PopSQL and Snowflake