修改表结构使用alter table,常用的操作有删除列、添加列、更改列、改表名等。其中,删除列的语法格式如下。
alter table table_name DROP column_name
命令如下。
mysql>alter table tb_test DROP name;
Query OK, 2 rows affected (0.36 sec)
Records: 2 Duplicates: 0 Warnings: 0
添加列的语法格式如下。
alter table table_name ADD column_name
命令如下。
alter table tb_test
ADD name varchar(200) not null default ‘Jack’; — 非空的varchar类型列,有默认值
修改列的语法格式如下。
alter table table_name CHANGE column_name new_name。
例如,将name列修改为username列,并将类型改为integer,命令如下。
mysql>alter table tb_test CHANGE name username;
Query OK, 0 rows affected (0.20 sec)
Records: 0 Duplicates: 0 Warnings: 0
本文链接地址: mysql在数据库使用SQL语句修改表命令