数据库常用命令

查询数据库大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='db_crl_costevaluation_uat';
查询数据库某张表大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='db_crl_costevaluation_test' and table_name='sys_user';
查看数据库是否开启函数功能
show variables like '%func%';
开启数据库函数功能
set global log_bin_trust_function_creators = 1;
数据库用户授权(Hello123@123:密码)
grant all on *.* to root@'%' identified by 'Hello123@123';
重新加载权限表
flush privileges;
数据库用户权限表

use mysql;
select * from user;

查看数据库当前连接数
show processlist
显示所有数据库
show databases
查看当前使用的数据库
select database()
查看当前数据库使用端口
show variables like 'port'
查看当前数据库最大连接数
show variables like '%max_connections%'
查看当前数据库连接数、并发数
show status like 'Threads%'

Threads_cached                  线程缓存中空闲线程数
Threads_connected             当前使用的线程数
Threads_created                 已创建的线程数量
Threads_running                 当前正使用的线程数

你可能感兴趣的:(数据库常用命令)