mysql 查看数据库、表的基本命令

1:show databases;

查看所有的数据库,等同于select schema_name from information_schema.schemata\G。\G 替换;,以纵向报表的形式输出结果,有利于阅读。

2. status 查看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结束。

 

-------------------------------------------------------------

另,查询数据库运行状态的基本命令:

#查询数据库连接
show full  processlist;
show status like '%Max_used_connections%' ;
show status like '%Threads_connected%' ;#当前连接数
show status like '%table_lock%' ;#表锁定
show status like 'innodb_row_lock%' ;#行锁定
show status like '%qcache%' ; #查询缓存情况
show variables like "%query_cache%" ;
SHOW STATUS LIKE 'Qcache%' ;
show variables like "%binlog%" ;
show status like 'Aborted_clients' ;#由于客户没有正确关闭连接已经死掉,已经放弃的连接数量
show variables like '%max_connections%' ;//查看最大连接数量
show variables like '%timeout%' ;#查看超时时间
show variables like 'log_%' ; #查看日志是否启动

 

转载于:https://www.cnblogs.com/onsuccessway/p/3552524.html

  • 7
    点赞
  • 39
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值