Home > Database > Mysql Tutorial > mysql 查看版本的方法图文演示_MySQL

mysql 查看版本的方法图文演示_MySQL

WBOY
Release: 2016-06-01 13:20:10
Original
954 people have browsed it

bitsCN.com

第一种方法:

1:在终端或windows下:mysql -V 即可。

mysql 查看版本的方法图文演示_MySQL

能看出来版本是mysql Ver 14.14 Distrib 5.1.42, for Win32 (ia32),这个里面的5.1.42就是版本了。

第二种:在mysql中:mysql> status; 这个需要登录以后才可以。
mysql -u root -p
密码;
效果如下图所示:
mysql 查看版本的方法图文演示_MySQL

第三种:使用mysql的函数 select version();
效果如下图所示
mysql 查看版本的方法图文演示_MySQL

第四种方法:在help里面查找 ,这里分为windows下与linux下的查找方法

windows下使用如下命令: mysql --help | find "Distrib"

linux下使用如下命令:mysql --help | grep Distrib
mysql 查看版本的方法图文演示_MySQL

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template