查询mysql版本的方法
这篇文章将为大家详细讲解有关查询mysql版本的方法,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
查看MySQL的版本,主要有以下几个方法:
1. 没有连接到MySQL服务器,就想查看MySQL的版本。打开cmd,切换至mysql的bin目录,运行下面的命令即可:
e:\mysql\bin>mysql-VmysqlVer14.14Distrib5.6.32,forWin32(AMD64)(版本为5.6.32)
或者:
e:\mysql\bin>mysql-v
这个命令可以查看到更为详细的信息,因为它会用账号 ODBC,连接上MySQL服务器,默认连接到localhost上的3306端口。
或者:
e:\mysql\bin>mysql--help|find"Distrib"mysqlVer14.14Distrib5.6.32,forWin32(AMD64)
这种方式只有windows系统下才可用,因为windows中才用find命令查找字符串,且后面的字符串必须用双引号包裹起来,而linux系统
下虽然也是用 | 作为管道符,却是使用grep命令查找字符串(如:mysql --help | grep Distrib)。
推荐:MySQL教程
2. 如果已经连接到了MySQL服务器,则运行下面的命令:
mysql>selectversion();+------------+|version()|+------------+|5.6.32-log|+------------+1rowinset(0.00sec)
或者:
mysql> status;
--------------mysqlVer14.14Distrib5.6.32,forWin32(AMD64)Connectionid:9Currentdatabase:Currentuser:root@localhostSSL:NotinuseUsingdelimiter:;Serverversion:5.6.32-logMySQLCommunityServer(GPL)Protocolversion:10Connection:localhostviaTCP/IPServercharacterset:latin1Dbcharacterset:latin1Clientcharacterset:gbkConn.characterset:gbkTCPport:3307Uptime:4hours7min11secThreads:4Questions:126Slowqueries:0Opens:73Flushtables:1Opentables:66Queriespersecondavg:0.008
或者:
mysql> \s
--------------mysqlVer14.14Distrib5.6.32,forWin32(AMD64)Connectionid:9Currentdatabase:Currentuser:root@localhostSSL:NotinuseUsingdelimiter:;Serverversion:5.6.32-logMySQLCommunityServer(GPL)Protocolversion:10Connection:localhostviaTCP/IPServercharacterset:latin1Dbcharacterset:latin1Clientcharacterset:gbkConn.characterset:gbkTCPport:3307Uptime:4hours9min29secThreads:4Questions:144Slowqueries:0Opens:73Flushtables:1Opentables:66Queriespersecondavg:0.009
3. 在命令行连接上MySQL服务器时,其实就已经显示了MySQL的版本,如:
e:\mysql\bin>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.
关于查询mysql版本的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。