开发者学堂课程【MySQL 数据库入门学习:给数据表添加或者删除列】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/451/detail/5570
给数据表添加或者删除列
内容介绍:
一、增加列
二、删除列
三、通过终端演示
一、增加列
alter table 【table_name】 add 【column_name】 【data_type】[not null][default ]
例子:
alter table account add c1 int(11) not null default 1;
给 account 这个表增加一个新的列,列名叫 c1 并且数据类型是11位的 int,初始化默认这个列不为空并且默认值是1
二、删除列
alter table 【table_name】drop 【column_name】
例子:
alter table account drop c1;
删除 account 表中名为 c1 的列
三、通过终端演示
首先使用数据库 gc,查看 account 表中有哪些字段
想要添加一个 c1的列,alter table account add c1 int(11) not null default 1
然后再来查看,多了 c1
再来删除 c1,alter table account drop c1
,输入 describe account
就会发现 c1列已经被删除