MySQL常用SQL语句

2023-10-19 09:48:20 浏览数 (1)

MySQL常用SQL语句

记录一些常用的MySQL语句,方便查找翻阅。

1. 查看MySQL数据库磁盘占用大小

代码语言:javascript复制
select 
TABLE_SCHEMA as '数据库', 
concat(truncate(sum(data_length)/1024/1024,2),'MB') as '数据容量(MB)',
concat(truncate(sum(index_length)/1024/1024,2),'MB') as '索引容量(MB)'
from information_schema.tables
group by TABLE_SCHEMA
ORDER BY data_size desc

2. 查看MySQL数据库中表的磁盘占用

代码语言:javascript复制
select  
table_schema as '数据库',  
table_name as '表名',  
table_rows as '记录数',  
truncate(data_length/1024/1024, 2) as '数据容量(MB)',  
truncate(index_length/1024/1024, 2) as '索引容量(MB)'  
from information_schema.tables  
where table_schema='bwc_plsedu_com'
order by data_length desc, index_length desc;  

3. MySQL创建、删除用户,授权、撤销授权

代码语言:javascript复制
create user user@host identified by 'password';
# 授权
grant all privileges on db.table to user@host;
# 取消授权
revoke all privileges on test.* from 'user'@'host';
#删除用户
drop user 'test'@'127.0.0.1';
# 刷新权限使授权生效
flush privileges;
  • MySQL多层级树形结构表的搜索查询优化
  • 使用WordPress作为小程序后端——APPID有效性前置检查
  • 使用WordPress作为小程序后端——小程序请求前置检查
  • Windows rclone挂载sftp
  • 迁移——从Electron迁移到Eclipse Theia
  • 使用typescript开发chrome扩展
  • use multiple simple queries or a join
  • php: /usr/local/lib/libcurl.so.4: no version information available (required by php)
  • how to improve the rank of search results in google
  • SEO导航

0 人点赞