mysql 常用命令

2021-08-20 02:28:37 字數 1189 閱讀 3262

一、檢視是否有死鎖情況及解決

1.show processlist;

檢視是否有waiting for table metadata lock | alter tab等;

2.kill id;

其他查詢語句:

show status like '%lock%';

show status like 'table%';

二、檢視表詳情

desc tablename;

show full columns from tablename;

三、檢視資料庫、表大小

--資料庫大小

select table_schema                                        "db name",     round(sum(data_length + index_length) / 1024 / 1024, 1) "db size in mb"  from   information_schema.tables  group  by table_schema;

--表大小

select table_schema as `database`, table_name as `table`, round(((data_length + index_length) / 1024 / 1024), 2) `size in mb` from information_schema.tables where table_schema = 'purge_qms' order by (data_length + index_length) desc ;

四、檢視資料庫中的儲存過程和觸發器

show procedure status;

show triggers;

五、生成8位16進製制編碼及兩位隨機數

select concat(lpad(concat(conv(left(number, 4), 10, 16),""),8,0),lpad(floor(rand()*100),2,0))from dual;

number替換為序列號,如輸入1,即得到00000001+隨機數兩位

六、檢視資料中含有欄位名為customer_id的資料庫例項名及表名

select table_schema,table_name from information_schema.columns where column_name='customer_id';

mysql基本常用命令 MySQL常用命令(一)

cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...

mysql巡檢常用命令 mysql 常用命令

客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...

mysql常用命令總結 mySql常用命令總結

總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...