顯示所有 MySQL 資料庫
mysql> SHOW DATABASES;
顯示該資料庫資料表
mysql> SHOW TABLES;
顯示 data 資料表的欄位資訊
mysql> SHOW COLUMNS FROM data;
顯示系統狀態(詳細)
mysql> show status;
顯示系統狀態(簡單)
mysql> status;
顯示變數
mysql> show variables;
mysql> show variables like '%max%';
顯示 process list
mysql> show processlist;
顯示帳號的權限資訊
mysql> show grants for cross@localhost;
顯示權限有那些
mysql> show privileges;
顯示表格格式
mysql> show table types;
顯示當初表格如何建立
mysql> show create table user;
顯示資料庫
mysqlshow
顯示table
mysqlshow dataname
顯示欄位
mysqlshow dataname table
留言