MySQL中Show指令祥解

2021-06-17 19:54:10 字數 1077 閱讀 5098

a. show tables或show tables from database_name; -- 顯示當前資料庫中所有表的名稱。

b. show databases; -- 顯示mysql中所有資料庫的名稱。

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

d. show grants for user_name; -- 顯示乙個使用者的許可權,顯示結果類似於grant 命令。

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

f. show status; -- 顯示一些系統特定資源的資訊,例如,正在執行的執行緒數量。

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

h. show processlist; -- 顯示系統中正在執行的所有程序,也就是當前正在執行的查詢。

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

j. show privileges; -- 顯示伺服器所支援的不同許可權。

k. show create database database_name; -- 顯示create database 語句是否能夠建立指定的資料庫。

l. show create table table_name; -- 顯示create database 語句是否能夠建立指定的資料庫。

m. show engies; -- 顯示安裝以後可用的儲存引擎和預設引擎。

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

o. show logs; -- 顯示bdb儲存引擎的日誌。

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

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

r. show [storage] engines; --顯示安裝後的可用儲存引擎和預設引擎。

tar指令祥解

tar命令 tar可以為檔案和目錄建立檔案。利用tar,使用者可以為某一特定檔案建立檔案 備份檔案 也可以在檔案中改變檔案,或者向檔案中加入新的檔案。tar 最初被用來在磁帶上建立檔案,現在,使用者可以在任何裝置上建立檔案,如軟盤。利用tar命令,可以把一大堆的檔案和目錄全部打包成乙個檔案,這對於備...

Mysql指令 show用法

mysql show的用法 a.show tables或show tables from database name 顯示當前資料庫中所有表的名稱 b.show databases 顯示mysql中所有資料庫的名稱 c.show columns from table name from databa...

Oracle中的Hash Join祥解

oracle中的hash join祥解 一 hash join概念 hashjoin hj 是一種用於equi join 而anti join就是使用not in時的join 的技術。在oracle中,它是從7.3開始引入的,以代替sort merge和nested loop join方式,提高效率...