MySQL 中那些总是记不住的语句
on Back-End
增加字段
alter table <表名> add <字段名> <字段类型> not null default <默认值> auto_increment primary key;
删除字段
alter table <表名> drop <字段名>;
修改字段
-- 修改字段名称
alter table <表名> change <字段名> <新的字段名> <新的字段类型>;
-- 修改字段类型
alter table <表名> modify <字段名> <字段类型> not null default <默认值> after <字段名>;
创建视图
create view <视图名称> as <查询语句>;