表的删除和修改

Posted stakes-ds

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表的删除和修改相关的知识,希望对你有一定的参考价值。

表的修改操作:

alter table score add type nchar(1) null //为score表新添加一个属性type,属性值为 type nchar(1) null

alter table score alter column type nchar(2) //修改score表的type属性的类型为nchar(2)

alter table score add check (type in (‘选修‘,‘重修‘,‘必修‘)) //为score表的type属性添加一个限定的选项范围

alter table score drop column type//删除score表中的type属性

 

表的删除操作:

drop table student

 

以上是关于表的删除和修改的主要内容,如果未能解决你的问题,请参考以下文章

MySQL之数据库及表的修改和删除

MySQL的修改和删除数据表字段

DDL 数据库定义语言--库创建/修改/删除--表的创建/修改/删除/复制

Mysql数据库及表的修改和删除

dbeaver如何进行级联删除和修改

修改和删除表字段