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

2021-11-20 00:00:00 mysql

什么命令返回 MySQL 数据库的当前版本?

What command returns the current version of a MySQL database?

推荐答案

很多答案都建议使用 mysql --version.但是 mysql 程序是客户端.服务器是mysqld.所以命令应该是

Many answers suggest to use mysql --version. But the mysql programm is the client. The server is mysqld. So the command should be

mysqld --version

mysqld --help

这在 Debian 和 Windows 上对我有用.

That works for me on Debian and Windows.

当连接到带有客户端的 MySQL 服务器时,您可以使用

When connected to a MySQL server with a client you can use

select version()

select @@version

相关文章