用SQL语言ALTER语句修改表结构

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);

    原文作者:D小冰
    原文地址: https://blog.csdn.net/yuewenyao/article/details/80573217
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞