以下所有命令都是在進入mysql監控器中執行的:
show tables或show tables from database_name; // 顯示當前資料庫中所有表的名稱
show databases; // 顯示mysql中所有資料庫的名稱
show columns from table_name from database_name; 或show columns from database_name.table_name; // 顯示表中列名稱
show grants for user_name; // 顯示乙個使用者的許可權,顯示結果類似於grant 命令
show index from table_name; // 顯示表的索引
show status; // 顯示一些系統特定資源的資訊,例如,正在執行的執行緒數量
show variables; // 顯示系統變數的名稱和值
show processlist; // 顯示系統中正在執行的所有程序,也就是當前正在執行的查詢。大多數使用者可以檢視他們自己的程序,但是如果他們擁有process許可權,就可以檢視所有人的程序,包括密碼。
show table status; // 顯示當前使用或者指定的database中的每個表的資訊。資訊包括表型別和表的最新更新時間
show privileges; // 顯示伺服器所支援的不同許可權
show create database database_name; // 顯示create database 語句是否能夠建立指定的資料庫
show create table table_name; // 顯示create database 語句是否能夠建立指定的資料庫
show innodb status; // 顯示innodb儲存引擎的狀態
show logs; // 顯示bdb儲存引擎的日誌
show warnings; // 顯示最後乙個執行的語句所產生的錯誤、警告和通知
show errors; // 只顯示最後乙個執行語句所產生的錯誤
MySQL 常用show命令
命令為show databases 上圖就是所有資料庫了.前四個資料庫是預設的資料庫,後面兩個是我之後自己建立的資料庫.information schema資料庫是內部資料庫,裡面儲存的是其他資料庫的資訊 mysql資料庫用於儲存一些使用者資訊 performance schema資料庫主要用於收集...
mysql 查詢show 4 查詢命令 show
一 查詢資料庫 1.展示系統中當前所有資料庫 show databases 例 sql mysql show databases database information schema mysql performance schema school school 01 shop sys 7 rows...
mysql 隨機產生show命令失敗
1.系統環境 centos release 6.7 percona server 5.6.21 70.0 原始碼編譯安裝 2.故障簡述 mysql會不定期發生執行show 命令失敗的情況。3.故障排查 3.1.檢視錯誤日誌 客戶端返回錯誤資訊 can t create write tofile tm...