cnmarkao

alter table tableA add columnN NUMBER(4) DEFAULT 0;

此语句会执行很久(当然根据表大小)

可以使用下面两条替代:

alter table tableA add columnN number(4);

alter table tableA modify columnN number(4) default 0;

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
  • 2021-08-29
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
猜你喜欢
  • 2022-12-23
  • 2022-02-24
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案