show global variables like ‘port’;
查看mysql使用的端口是多少
库:
显现所有数据库
创建数据库
删除数据库
显示创建数据库语句
查看当前是连接哪个数据库
使用数据库
表:
查询当前数据库中的全部表
显示创建表的语句
查看表结构
删除表
修改表名
添加字段
修改字段名、字段数据类型、【默认值】、【注释】
例:alter table table01 change id id01 int default 10 comment ‘序号’;
–将table01表中的字段id改名为id01,数据类型为int,默认值为10,注释为“序号”
修改字段的数据类型、【默认值】、【注释】
删除字段
扩展:
注释:
from information_schema.tables
where table_schema = ‘数据库名’
order by table_name;
查看数据库中的所有表注释
from information_schema.tables
where table_schema = ‘数据库名’
order by table_name;
查看数据库下的所有表的表名、表注释及其数据量
from information_schema.columns
where table_name=’表名’ and table_schema=’数据库名’;
查看数据库下的表的表字段注释
表字段,b.column_type 字段类型,b.column_comment 字段注释
from information_schema.tables a,information_schema.columns b
where b.table_name=a.table_name and a.table_schema=’数据库名’;
查看数据库下的所有表的表名、表注释以及对应表字段注释
修改表注释
修改表的表字段注释
注意:字段名和字段类型照写就行,如果之前有规定长度 这里也要指定一下