create table table_user(
id int(3
),
name varchar(8
),
password varchar(20));
#创建一个表,有3个字段
alter table table_user rename to tab_user;#更改表名
alter table tab_user add email varchar(255)
not null;
#添加一个字段,字段非空
alter table tab_user change id newid int(3);
#修改字段名
alter table tab_user drop email;#删除一个自段
drop table tab_user;删除表
转载于:https://www.cnblogs.com/imageSet/p/7629819.html
转载请注明原文地址: https://mac.8miu.com/read-26696.html