查詢資料庫大小
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';
資料庫使用者許可權表
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 當前正使用的執行緒數
MySQL 資料庫常用命令
1 mysql常用命令 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 表的詳細描述 select 中加上disti...
MySQL 資料庫常用命令
1 mysql常用命令 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 表的詳細描述 select 中加上disti...
MySQL資料庫常用命令
連線命令 mysql h 主機位址 u 使用者名稱 p 使用者密碼 建立資料庫 create database 庫名 顯示所有資料庫 show databases 開啟資料庫 use 庫名 建立資料表 create table 表名 欄位名 字段型別 字段引數 顯示資料表字段 desc 表名 當前庫...