数据库操作(表结构修改) 2020-04-22 本文已影响0人 生命有一种执着 1、修改表名 alter table tb1 rename student; 2、修改字段名 alter table student change sex gender char(1); 3、添加一个字段 alter table student add class varchar(20); 4、删除一个字段 alter table student drop class1;