哪个命令返回MySQL数据库的当前版本?
当前回答
mysqladmin版本或mysqladmin -V
其他回答
Mysql客户端版本:请注意,这不会返回服务器版本,这提供了Mysql客户端实用版本
mysql -version
Mysql服务器版本:有很多方法可以找到
选择版本();
显示变量“%版本%”;
mysqld——版本
试试这个功能-
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)
MySQL 5.0参考手册(pdf) -确定您当前的MySQL版本-第42页
对于UBUNTU,您可以尝试以下命令来检查mysql版本:
mysql --version
您还可以在第一次登录时查看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>
只有这个代码对我有用
/usr/local/mysql/bin/mysql -V