編碼的世界 / 優質文選 / 歷史

如何查看MySQL的版本?


2022年7月18日
-   

原文地址:http://blog.csdn.net/lamp_yang_3533/article/details/52266320
查看MySQL的版本,主要有以下幾個方法:
1. 沒有連接到MySQL服務器,就想查看MySQL的版本。打開cmd,切換至mysql的bin目錄,運行下面的命令即可:
e:mysqlin>
mysql -V
mysql  Ver 14.14 Distrib 5.6.32, for Win32 (AMD64)
(版本為 5.6.32)
或者:
e:mysqlin>
mysql -v
這個命令可以查看到更為詳細的信息,因為它會用賬號 
ODBC,連接上MySQL服務器,默認連接到localhost上的3306端口。
或者:
e:mysqlin>
mysql help | find "Distrib"
mysql  Ver 14.14 Distrib 5.6.32, for Win32 (AMD64)
這種方式只有windows系統下才可用,因為windows中才用find命令查找字符串,且後面的字符串必須用雙引號包裹起來,而linux系統下雖然也是用 | 作為管道符,卻是使用grep命令查找字符串(如:
mysql help | grep Distrib)。
2. 如果已經連接到了MySQL服務器,則運行下面的命令:
mysql>
 select version();
++
| version()  |
++
| 5.6.32-log |
++
1 row in set (0.00 sec)
或者:
mysql> 
status;
mysql  Ver 14.14 Distrib 5.6.32, for Win32 (AMD64)
Connection id:          9
Current database:
Current user:           
root@localhost
SSL:                    Not in use
Using delimiter:        ;
Server version:         5.6.32-log MySQL Community Server (GPL)
Protocol version:       10
Connection:             localhost via TCP/IP
Server characterset:    latin1
Db     characterset:    latin1
Client characterset:    gbk
Conn.  characterset:    gbk
TCP port:               3307
Uptime:                 4 hours 7 min 11 sec
Threads: 4  Questions: 126  Slow queries: 0  Opens: 73  Flush tables: 1  Open tables: 66  Queries per second avg: 0.008
或者:
mysql> 
s
mysql  Ver 14.14 Distrib 5.6.32, for Win32 (AMD64)
Connection id:          9
Current database:
Current user:           
root@localhost
SSL:                    Not in use
Using delimiter:        ;
Server version:         5.6.32-log MySQL Community Server (GPL)
Protocol version:       10
Connection:             localhost via TCP/IP
Server characterset:    latin1
Db     characterset:    latin1
Client characterset:    gbk
Conn.  characterset:    gbk
TCP port:               3307
Uptime:                 4 hours 9 min 29 sec
Threads: 4  Questions: 144  Slow queries: 0  Opens: 73  Flush tables: 1  Open tables: 66  Queries per second avg: 0.009
3. 在命令行連接上MySQL服務器時,其實就已經顯示了MySQL的版本,如:
e:mysqlin>
mysql -uroot -p -P3307
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 10
Server version: 5.6.32-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

熱門文章