开发者学堂课程【MySQL 数据库入门学习:修改某个数据列的名字或者数据类型】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/451/detail/5571
修改某个数据列的名字或者数据类型
内容介绍:
一、修改列信息
二、修改表名
三、通过终端演示
一、修改列信息
alter table 【table_name】 change 【old_column_name】 【new_column_name】 【data_type】
1.只改列名:
data_type 和原来一样,old_column_name != new_column_name
2.只改数据类型:
old _column_name == new_column_name, data_type 改变
3.列名和数据类型都改了
二、修改表名
alter table 【table_name】 rename 【new_table_name】
例子:把account这张表重命名为account1
alter table account rename newaccount;
三、通过终端演示
使用 gc 库,查看现在有哪些表,继续使用表 account
修改列名
alter table account change city newcity varchar(255)
修改数据类型 alter table account change newcity newcity text
修改列名和数据类型 alter table account change newcity city varchar(255)
修改 account 这张表的表名 alter table rename newaccoun
t
,回车再输入 show tables
,可以看到表名变为 newaccount