当前位置:   article > 正文

用SQL语言ALTER语句修改表结构_用sql语言alter语句修改表结构;student表中sno设为非空和唯一;student表中增加

用sql语言alter语句修改表结构;student表中sno设为非空和唯一;student表中增加一
1、

l STUDENT表中SNO设为非空和唯一,

非空:alter table student  modify sno char(8) not null;

唯一:alter table student add unique(sno);

l STUDENT表中增加一个字段SBIRTH

Alter table student add sbirth text;

l 删除STUDENT表中ADDRESS字段;

Alter table student drop column address;

l COURSE表中CNO字段设为非空和唯一;

非空:alter table course  modify cno char(3) not null;

唯一:alter table course add unique(cno);


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/525614
推荐阅读
相关标签
  

闽ICP备14008679号