如何检索mysql数据库管理系统(dbms)的当前版本?

dbf7pr2w  于 2021-06-20  发布在  Mysql
关注(0)|答案(20)|浏览(383)

哪个命令返回mysql数据库的当前版本?

41zrol4v

41zrol4v1#

E:\>mysql -u root -p
Enter password:*******
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1026
Server version: 5.6.34-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> select @@version;
+------------+
| @@version  |
+------------+
| 5.6.34-log |
+------------+
1 row in set (0.00 sec)
blmhpbnm

blmhpbnm2#

使用 mysql -V 在ubuntu上很适合我。

ux6nzvsh

ux6nzvsh3#

mysql客户端版本:请注意,这不会返回服务器版本,这会返回mysql客户端实用程序版本

mysql -version

mysql服务器版本:有很多方法可以找到 SELECT version();SHOW VARIABLES LIKE "%version%";mysqld --version

xxslljrj

xxslljrj4#

只有这个代码对我有效

/usr/local/mysql/bin/mysql -V
b5buobof

b5buobof5#

许多答案建议使用 mysql --version . 但是 mysql 程序是客户端。服务器正在运行 mysqld . 所以命令应该是

mysqld --version

或者

mysqld --help

在debian和windows上对我有用。
当连接到一个mysql服务器和一个你可以使用的客户端时

select version()

select @@version
inn6fuwd

inn6fuwd6#

mysqladmin version 或者 mysqladmin -V

luaexgnf

luaexgnf7#

试试这个功能-

SELECT VERSION();
-> '5.7.22-standard'

版本()
更多详情请使用:

SHOW VARIABLES LIKE "%version%";
+-------------------------+------------------------------------------+
| Variable_name           | Value                                    |
+-------------------------+------------------------------------------+
| protocol_version        | 10                                       |
| version                 | 5.0.27-standard                          |
| version_comment         | MySQL Community Edition - Standard (GPL) |
| version_compile_machine | i686                                     |
| version_compile_os      | pc-linux-gnu                             |
+-------------------------+------------------------------------------+
5 rows in set (0.04 sec)

MySQL5.0参考手册(pdf)-确定当前mysql版本-第42页

tf7tbtn2

tf7tbtn28#

转到mysql workbench并登录到服务器。有一个名为server status under management的字段。单击服务器状态并找出版本。

或者转到以下位置并打开cmd->c:\windows\system32\cmd.exe。然后点击命令->mysql-v

7d7tgy0s

7d7tgy0s9#

您还可以在第一次登录时查看mysql shell的顶部。它实际上显示了这个版本。

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 67971
Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, 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>
piztneat

piztneat10#

cli在一行中: mysql --user=root --password=pass --host=localhost db_name --execute='select version()';mysql -uroot -ppass -hlocalhost db_name -e 'select version()'; 返回如下内容:

+-----------+
| version() |
+-----------+
| 5.6.34    |
+-----------+
vsdwdz23

vsdwdz2311#

在windows中,打开命令提示符并键入 MySQL -V 或者 MySQL --version . 如果使用linux,请获取终端并键入 MySQL -v

eanckbw9

eanckbw912#

SHOW VARIABLES LIKE "%version%";
+-------------------------+------------------------------------------+
| Variable_name           | Value                                    |
+-------------------------+------------------------------------------+
| protocol_version        | 10                                       |
| version                 | 5.0.27-standard                          |
| version_comment         | MySQL Community Edition - Standard (GPL) |
| version_compile_machine | i686                                     |
| version_compile_os      | pc-linux-gnu                             |
+-------------------------+------------------------------------------+
5 rows in set (0.04 sec)

MySQL5.0参考手册(pdf)-确定当前mysql版本-第42页

iqih9akk

iqih9akk13#

只需使用

mysql -u root -p

然后输入这个命令

select @@version;

结果是,

+-------------------------+
| @@version               |
+-------------------------+
| 5.7.16-0ubuntu0.16.04.1 |
+-------------------------+
1 row in set (0.00 sec)
qlzsbp2j

qlzsbp2j14#

我找到了一个简单的方法。
例如:unix命令(这样您就不需要两个命令了),

$ mysql -u root -p -e 'SHOW VARIABLES LIKE "%version%";'

示例输出:

+-------------------------+-------------------------+
| Variable_name           | Value                   |
+-------------------------+-------------------------+
| innodb_version          | 5.5.49                  |
| protocol_version        | 10                      |
| slave_type_conversions  |                         |
| version                 | 5.5.49-0ubuntu0.14.04.1 |
| version_comment         | (Ubuntu)                |
| version_compile_machine | x86_64                  |
| version_compile_os      | debian-linux-gnu        |
+-------------------------+-------------------------+

在上述情况下,mysql版本是5.5.49。
请找到这个有用的参考资料。

vsmadaxz

vsmadaxz15#

mysql服务器版本

shell> mysqld --version

mysql客户端版本

shell> mysql --version

shell> mysql -V

相关问题