sybase 中可以对现有的表结构进行增加,修改(可以增大长度,也可以减少,在oracle中
只能增大),删除(在oracle中不容许)
alter table add  ... (增加)
alter table modify ... (修改)
alter table drop ...  (删除)
比如:
alter table ABC add a1 varchar(10) null,a2 numeric(10) null,....
alter table ABC modify a1 varchar(20) null,a2 numeric(5) null,...
alter table ABC drop a2

相关文章:

  • 2022-12-23
  • 2021-09-30
  • 2022-12-23
  • 2021-06-25
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
猜你喜欢
  • 2021-12-12
  • 2021-06-15
  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
相关资源
相似解决方案