溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何查詢mysql的版本號(hào)

發(fā)布時(shí)間:2021-12-07 12:18:57 來(lái)源:億速云 閱讀:2607 作者:小新 欄目:MySQL數(shù)據(jù)庫(kù)

這篇文章給大家分享的是有關(guān)如何查詢mysql的版本號(hào)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

查詢方法:1、命令行登錄mysql,在輸出的信息中獲取版本號(hào);2、利用navicat連接mysql,右鍵選擇“詳細(xì)信息”,在彈窗中查看版本號(hào)信息;3、執(zhí)行“select version();”語(yǔ)句來(lái)查詢;4、執(zhí)行“status”語(yǔ)句來(lái)查詢。

本教程操作環(huán)境:linux5.9.8系統(tǒng)、mysql 5.7.17版本、Dell G3電腦。

查看mysql的版本號(hào)

1、在命令行登錄mysql,即可看到mysql的版本號(hào)

[root@heyong ~]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 487032Server version: 5.7.17 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.

mysql>

如何查詢mysql的版本號(hào)

2、利用navicat連接mysql的客戶端工具可以查看

連接之后右鍵——詳細(xì)信息

如何查詢mysql的版本號(hào)

3、利用mysql命令查看

mysql> select version();
+-----------+
| version() |
+-----------+
| 5.7.17    |
+-----------+
1 row in set (0.01 sec)

mysql>

如何查詢mysql的版本號(hào)4

4、在命令行使用status查看

mysql> status
--------------
mysql  Ver 14.14 Distrib 5.7.17, for linux-glibc2.5 (x86_64) using  EditLine wrapper

Connection id:        488398
Current database:    
Current user:        root@localhost
SSL:            Not in use
Current pager:        stdout
Using outfile:        ''
Using delimiter:    ;
Server version:        5.7.17 MySQL Community Server (GPL)
Protocol version:    10
Connection:        Localhost via UNIX socket
Server characterset:    utf8
Db     characterset:    utf8
Client characterset:    utf8
Conn.  characterset:    utf8
UNIX socket:        /tmp/mysql.sock
Uptime:            5 days 10 hours 5 min 40 sec

Threads: 154  Questions: 15051829  Slow queries: 0  Opens: 37599  Flush tables: 11  Open tables: 1563  Queries per second avg: 32.138
--------------

mysql>

如何查詢mysql的版本號(hào)

5、使用mysql --help | grep Distrib查看

[root@heyong tools]# mysql --help | grep Distrib 
mysql Ver 14.14 Distrib 5.7.17, for linux-glibc2.5 (x86_64) using EditLine wrapper

如何查詢mysql的版本號(hào)

感謝各位的閱讀!關(guān)于“如何查詢mysql的版本號(hào)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI