alter table 表名 add 新字段名 新字段的类型;
-- 修改表结构 -- 增加性别字段 alter table stu_info add s_sex char(1);
alter table 表名 add 新字段名 新字段的类型 first;
alter table stu_info add s_sex char(1) first;
alter table 表名 add 新字段名 新字段类型 after 旧字段名;
-- 在s_name后添加s_sex alter table stu_info add s_sex char(1) after s_name;
alter table 表名 drop 字段名;
-- 删除s_sex字段 alter table stu_info drop s_sex;
alter table 表名 modify 字段名 新类型;
alter table stu_info modify score double(5, 1);
执行前:
修改后:
alter table 表名 change 旧字段名 新字段名 新类型;
-- 修改字段名+类型 alter table stu_info change score new_score double(5, 1);
drop table 表名;
-- 删除表ip_table drop table ip_table;