disable/remove 雪花中的自动递增属性
disable/remove auto increment attribute in snowflake
我用的table是,
create or replace table abc(id int autoincrement, name varchar,date_of_birth date, age number, ts timestamp_ntz);
我使用以下查询删除雪花中的自动增量属性
alter table abc modify id int
这里我重新定义了没有自动递增属性的列名。它在 mysql workbench 中工作正常,但在 snowflake 中不起作用。
有没有其他方法可以 disable/remove 在 snowflake 中自动增加属性?
“放弃默认值”正在发挥作用:
alter table abc alter id drop default;
我用的table是,
create or replace table abc(id int autoincrement, name varchar,date_of_birth date, age number, ts timestamp_ntz);
我使用以下查询删除雪花中的自动增量属性
alter table abc modify id int
这里我重新定义了没有自动递增属性的列名。它在 mysql workbench 中工作正常,但在 snowflake 中不起作用。 有没有其他方法可以 disable/remove 在 snowflake 中自动增加属性?
“放弃默认值”正在发挥作用:
alter table abc alter id drop default;