From Snowflake's documentation, it's clear how to add or overwrite a comment on a table column, but it doesn't look like you can remove a comment one without re-creating the table.
CREATE TABLE "My_Table" (
"my_column" INT
);
ALTER TABLE "My_Table" ALTER "my_column" COMMENT 'New Comment'; -- Works
ALTER TABLE "My_Table" ALTER "my_column" COMMENT NULL; -- Fails
ALTER TABLE "My_Table" ALTER "my_column" COMMENT ''; -- Works, but prefer NULL
As shown above, the best I can find is to set the comment to '', but I would really prefer it to be null. Does anyone know how to remove a comment?
