sqlserver 修改表字段

1、给表添加字段

alter table 表名 add 字段名 int not null default 0;

2、删除表中某个字段

alter table 表名 drop column 字段名;

3、若表原字段有约束

alter table 表名 drop constraint 主/外键ID;

posted @ 2021-12-23 10:22  🍋.レモン  阅读(523)  评论(0编辑  收藏  举报