什么命令返回 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
这篇关于如何检索 MySQL 数据库管理系统 (DBMS) 的当前版本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!