mysql命令查看数据库命令_mysql查看数据库、表的基本命令1:show databases;
查看所有的数据库,等同于select schema_name from information_schema.schemata\G。\G 替换;,以纵向报表的形式输出结果,有利于阅读。
2. status 查看mysql数据库的运⾏状态
mysql数据库的方法3. use 命令选择数据库 例如 use information_schema,当使⽤此命令后
select schema_name from information_schema.schemata\G,可以为
select schema_name from schemata\G
4. 查看数据库中的表
show tables
同样也可以在information_schema中查看,show命令是⽅便使⽤的简短模式。
select table_name from tables where table_schema='jblog';
5. 查看表结构
desc  table_name;
6.查看表状态 show table status from db like 条件
可以查看engine数据库引擎,version,row、index等信息
7.⼩技巧,当多⾏命令输⼊,发现错误后,⽤\c结束。
-------------------------------------------------------------
另,查询数据库运⾏状态的基本命令:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。