這篇文章給大家分享的是有關(guān)如何查詢(xún)MySQL的版本號(hào)的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
創(chuàng)新互聯(lián)專(zhuān)業(yè)為企業(yè)提供贛榆網(wǎng)站建設(shè)、贛榆做網(wǎng)站、贛榆網(wǎng)站設(shè)計(jì)、贛榆網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、贛榆企業(yè)網(wǎng)站模板建站服務(wù),十年贛榆做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
查詢(xún)方法:1、命令行登錄mysql,在輸出的信息中獲取版本號(hào);2、利用navicat連接mysql,右鍵選擇“詳細(xì)信息”,在彈窗中查看版本號(hào)信息;3、執(zhí)行“select version();”語(yǔ)句來(lái)查詢(xún);4、執(zhí)行“status”語(yǔ)句來(lái)查詢(xún)。
本教程操作環(huán)境:linux5.9.8系統(tǒng)、mysql 5.7.17版本、Dell G3電腦。
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>
2、利用navicat連接mysql的客戶(hù)端工具可以查看
連接之后右鍵——詳細(xì)信息
3、利用mysql命令查看
mysql> select version(); +-----------+ | version() | +-----------+ | 5.7.17 | +-----------+ 1 row in set (0.01 sec) mysql>
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>
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
感謝各位的閱讀!關(guān)于“如何查詢(xún)mysql的版本號(hào)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!