Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows教程綜合 >> Windows資訊 >> 詳細解析Show命令的用法

詳細解析Show命令的用法

日期:2017/2/7 11:42:13      編輯:Windows資訊

Show命令的用法:

1. show tables或show tables from database_name; -- 顯示當前數據庫中所有表的名稱。

2. show databases; -- 顯示mysql中所有數據庫的名稱。

3. show columns from table_name from database_name; 或show columns from database_name.table_name; -- 顯示表中列名稱。

4. show grants for user_name; -- 顯示一個用戶的權限,顯示結果類似於grant 命令。

5. show index from table_name; -- 顯示表的索引。

6. show status; -- 顯示一些系統特定資源的信息,例如,正在運行的線程數量。

7. show variables; -- 顯示系統變量的名稱和值。

8. show processlist; -- 顯示系統中正在運行的所有進程,也就是當前正在執行的查詢。大多數用戶可以查看他們自己的進程,但是如果他們擁有process權限,就可以查看所有人的進程,包括密碼。

9. show table status; -- 顯示當前使用或者指定的database中的每個表的信息。信息包括表類型和表的最新更新時間。

10. show privileges; -- 顯示服務器所支持的不同權限。

11. show create database database_name; -- 顯示create database 語句是否能夠創建指定的數據庫。

12. show create table table_name; -- 顯示create database 語句是否能夠創建指定的數據庫。

13. show engies; -- 顯示安裝以後可用的存儲引擎和默認引擎。

14. show innodb status; -- 顯示innoDB存儲引擎的狀態。

15. show logs; -- 顯示BDB存儲引擎的日志。

16. show warnings; -- 顯示最後一個執行的語句所產生的錯誤、警告和通知。

17. show errors; -- 只顯示最後一個執行語句所產生的錯誤。

18. show [storage] engines; --顯示安裝後的可用存儲引擎和默認引擎。

本文摘自: 我愛電腦技術論壇(http://bbs.520dn.com) 詳細出處請參考:http://bbs.520dn.com/forum.php?mod=viewthread&tid=11011

Copyright © Windows教程網 All Rights Reserved