Linux基礎命令---mysqlshow顯示資料庫

一生有你llx發表於2019-07-22

mysqlshow

mysqlshow 是一個客戶端的程式,它可以顯示資料庫的資訊、表資訊、欄位資訊。

此命令的適用範圍:RedHat、RHEL、Ubuntu、CentOS、Fedora。

 

1 、語法

mysqlshow [options]  [db_name  [tbl_name  [col_name]]] 

 

2 、選項引數列表

選項

說明

- ? | --help

顯示幫助資訊

--bind-address = ip

繫結ip

--character-sets-dir

預設的字符集目錄

-i | --status

顯示錶格的額外資訊

-count

顯示錶中的行數

-C | --compress

在伺服器和客戶端之間使用壓縮語句

-P | --port

指定埠

--protocol

指定協議

-v | --verbose

顯示詳細過程

-V | --version

顯示版本資訊

-u | --user

指定使用者

-p | --password

指定密碼

 

3 、例項

1 )檢視有哪些資料庫

[root@localhost ~]#  mysqlshow -u root –p              // 顯示有哪些資料庫

Enter password: 

+--------------------+

|     Databases      |

+--------------------+

| information_schema |

| david              |

| discuz             |

| drupal             |

| mediawiki          |

| mysql              |

| phpmyvisites       |

| test               |

| test01             |

| test02             |

| wordpress          |

+--------------------+

2 )檢視資料庫中有哪些表

[root@localhost ~]#  mysqlshow -u root -p test               // 顯示資料庫 test 的資訊

Enter password: 

Database: test

+--------+

| Tables |

+--------+

| wj     |

+--------+

3 )檢視錶中有哪些欄位

[root@localhost ~]#  mysqlshow -u root -p test wj              // 顯示資料庫 test 中的表 wj 的資訊

Enter password: 

Database: test  Table: wj

+-------+---------+-------------------+------+-----+---------+-------+---------------------------------+---------+

| Field | Type    | Collation         | Null | Key | Default | Extra | Privileges                      | Comment |

+-------+---------+-------------------+------+-----+---------+-------+---------------------------------+---------+

| id    | int(11) |                   | NO   |     |         |       | select,insert,update,references |         |

| name  | text    | latin1_swedish_ci | NO   |    |         |       | select,insert,update,references |         |

+-------+---------+-------------------+------+-----+---------+-------+---------------------------------+---------+

 

      做了一個Linux學習的平臺,目前出來一個雛形,各位可以參考使用
      連結:https://pan.baidu.com/s/1GOLVU2CbpBNGtunztVpaCQ 密碼:n7bk

     



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29270124/viewspace-2644023/,如需轉載,請註明出處,否則將追究法律責任。

相關文章