PopSQL

How to Remove a Default Value to a Column in Snowflake

To remove a default value to a column in Snowflake, use the ALTER TABLE <table_name> ALTER <column_name> DROP DEFAULT command:

alter table products
alter id
drop default;
database icon
Better SQL for the people
Get more done with PopSQL and Snowflake