mysql语法存在哪些查询方法,下面编程教程网小编给大家详细介绍一下各种查询方法!
查看库的大小,剩余空间的大小
select table_schema,round((sum(data_length / 1024 / 1024) + sum(index_length / 1024 / 1024)),2)
dbsize,round(sum(DATA_FREE / 1024 / 1024),2) freesize,
round((sum(data_length / 1024 / 1024) + sum(index_length / 1024 / 1024) +
sum(DATA_FREE / 1024 / 1024)),2) spsize from information_schema.tables
where table_schema not in ('mysql','information_schema','performance_schema')
group by table_schema order by freesize desc;
查询正在运行中的事务
select p.id,p.user,p.host,p.db,p.command,p.time,i.trx_state,i.trx_started,p.info
from information_schema.processlist p,information_schema.innodb_trx i
where p.id=i.trx_mysql_thread_id;
查看库中所有表的大小
select table_name,concat(round(sum(DATA_LENGTH/1024/1024),2),'M')
from information_schema.tables where table_schema='t1'
group by table_name;
查看库中有索引的表
select TABLE_SCHEMA,TABLE_NAME,group_concat(INDEX_NAME) from information_schema.STATISTICS where
TABLE_SCHEMA not in ('sys','mysql','information_schema','performance_schema')
group by TABLE_NAME ;
查看库中没有索引的表
select TABLE_SCHEMA,TABLE_NAME from information_schema.tables
where TABLE_NAME not in (select distinct(any_value(TABLE_NAME))
from information_schema.STATISTICS group by INDEX_NAME)
and TABLE_SCHEMA not in ('sys','mysql','information_schema','performance_schema');
以上是编程学习网小编为您介绍的“mysql语法中有哪些查询方法”的全面内容,想了解更多关于 mysql 内容,请继续关注编程基础学习网。
织梦狗教程
本文标题为:mysql语法中有哪些查询方法


基础教程推荐
猜你喜欢
- 详解PostgreSQL 14.4安装使用及一些安装的异常问题 2023-07-21
- Redis RESTORE命令 2024-02-06
- centos下root运行Elasticsearch异常问题解决 2024-01-10
- MySQL之Join语句执行流程是什么 2024-04-13
- MongoDB数据类型详解 2024-01-31
- MySQL如何开启用户远程登录权限 2023-07-26
- postgresql兼容MySQL on update current_timestamp问题 2023-07-21
- 浅谈数据库索引的作用及原理 2023-12-17
- MySQL数据备份方法的选择与思考 2024-01-10
- 如何优化SQL语句(全) 2023-12-03