创建表:
create table 表名 (字段,字段类型,约束);
修改表名:
alter table 原表名 rename 新表名;
显示所有表:
show tables;
查询表的创建语句:
show create table 表名;
查询表的字段信息
desc 表名称;
修改某个表的字段类型及指定为空或非空
alter table 表名称 change 字段名称 字段名称 字段类型 [是否允许非空];
alter table 表名称 modify 字段名称 字段类型 [是否允许非空];
修改某个表的字段名称及指定为空或非空
aler table 表名称 change 字段原名称 字段新名称 字段类型 [是否允许非空];
例如:
修改表expert_info中的字段birth,允许其为空
alter table expert_info change birth birth varchar(20) null;