7、表操作-修改添加字段 alter table 表名 add 字段名 类型(长度) [comment 注释][约束]; 1. eg: 2. alter tabel test add city varchar(20) comment '籍贯'; 8、修改数据类型 alter table 表名 modify 字段名 新数据类型(长度); 1. eg: 2. alter tabel test modify age varchar(10); 9、修改字段名和字段类型 alter table 表名 change 旧字段名 新字段名 类型(长度)[comment 注释][约束]; 1. eg: 2. alter tabel test change name newname varchar(20) comment '新名字'; 10、删除字段 alter table 表名 drop 字段名; 1, eg: 2, alter table test drop city; 11、修改表名 alter table 表名 rename to 新表名; 1. eg: 2. alter table test rename to newtest; 12、表操作-删除删除表(让指定表从数据库消失) drop table [if exists] 表名; 1. eg: 2. drop table if exists newtest;
|