sybase怎样修改字段的默认值

2025-01-02 19:58:17
推荐回答(2个)
回答1:

不能修改字段,只能够添加了.
步骤是这样:1新建立一个字段一样的表t2,将你的数据导入那个表中:
insert into t2
select * from table_name;
go
2 drop table table_name;
3 create table table_name .....
4 再将t2中的数据导回来
5 删除t2

回答2:

alter table 表名 modify xc default 0