- 添加字段
alter table 表名 add 字段名 类型(长度) [comment 注释] [约束];
- 修改数据类型
alter table 表名 modify 字段名 新数据类型(长度)
- 修改字段名和字段类型
alter table 表名 change 旧字段名 新字段名 类型(长度) [comment 注释] [约束];
- 删除字段
alter table 表名 drop 字段名;
- 修改表名
alter table 表名 rename to 新表名;
- 删除表
drop table [if exists] 表名;
- 删除指定表并重新创建该表
truncate table 表名;
网友评论