zoukankan      html  css  js  c++  java
  • MySQL管理一些基础SQL语句

     1 1、进入information_schema 数据库(存放了其他的数据库的信息)
     2 use information_schema;
     3 
     4 2、查询所有数据的大小:
     5 select concat(round(sum(data_length/1024/1024),2),'MB') as data from information_schema.tables;
     6 
     7 3、查看指定数据库的大小:
     8 比如查看数据库home的大小
     9 select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home';
    10 查看数据所占的空间大小 11 SELECT CONCAT(ROUND(SUM(data_length)/(1024*1024),2) + ROUND(SUM(index_length)/(1024*1024),2),'MB') AS 'DB Size' 12 FROM information_schema.`TABLES` WHERE table_schema='dbname' 13 14 15 4、查看指定数据库的某个表的大小 16 比如查看数据库home中 members 表的大小 17 select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home' and table_name='members'; 18 select concat(round(sum(data_length/1024/1024),2),'MB') as data from information_schema.tables where table_schema='dbname' and table_name='t_msg_app_new'; 19 20 5、查看指定数据库的表的大小 大到小 21 SELECT table_name,CONCAT(ROUND((data_length/1024/1024),2),'MB') AS DATA FROM TABLES WHERE table_schema='dbname' ORDER BY data_length DESC; 22 23 6、查看指定数据库表的创建时间,更新时间。 24 SELECT table_name,create_time,update_time FROM information_schema.`TABLES` WHERE table_schema='dbname' ORDER BY update_time DESC 25 26 SELECT table_name,table_rows,create_time,update_time 27 FROM information_schema.`TABLES` WHERE table_schema='dbname' and table_name='tablename' ORDER BY update_time DESC

    28 7、查看所有存储引擎为MyISAM的表 29 SELECT * FROM `information_schema`.`TABLES` WHERE TABLE_SCHEMA='dbname' AND `engine`='MyISAM' 30 31 8、查询表中的所有列 32 SELECT GROUP_CONCAT(column_name)AS namestr 33 FROM information_schema.`COLUMNS` WHERE table_name='tablename' ; 34 35 9、查询表中的所有列(拼接插入INSERT SQL) 36 SELECT CONCAT('INSERT INTO ',table_name,'(',GROUP_CONCAT(column_name),')VALUES()')AS namestr 37 FROM information_schema.`COLUMNS` WHERE table_schema='dbname' AND table_name='tablename' ; 38 39 10、#查看是否开启事件 40 select @@event_scheduler
  • 相关阅读:
    升讯威微信营销系统开发实践:目录
    升讯威微信营销系统开发实践:订阅号和服务号深入分析( 完整开源于 Github)
    ASP.NET MVC (Razor)开发<<周报与绩效考核系统>>,并免费提供园友们使用~~~
    使用 SailingEase WinForm 框架构建复合式应用程序(插件式应用程序)
    vertica提取json字段值
    centos上配置redis从节点
    查看出网IP
    centos上tcp抓包
    修改centos服务器时区并同步最新时间
    解决centos下tomcat启动太慢 & JDBC连接oracle太慢的问题
  • 原文地址:https://www.cnblogs.com/cyun/p/5565612.html
Copyright © 2011-2022 走看看