您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“MySQL查看版本的方法有哪些”,內容詳細,步驟清晰,細節處理妥當,希望這篇“MySQL查看版本的方法有哪些”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
每次通過 mysql 客戶端連接服務器之后,都會顯示一個歡迎信息,里面包含了服務器的版本:
mysql -uroot Enter password: ****** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 21 Server version: 8.0.32 MySQL Community Server - GPL Copyright (c) 2000, 2022, Oracle and/or its affiliates. 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 全局變量 @@version 存儲了服務器的版本號,我們可以利用一個簡單的 SELECT 語句查詢其中的信息。例如:
SELECT @@version;
查詢結果示例如下:
+-----------+
| @@version |
+-----------+
| 8.0.32 |
+-----------+
系統函數 VERSION() 也可以返回 MySQL 服務器的版本信息,例如:
SELECT VERSION(); +-----------+ | VERSION() | +-----------+ | 8.0.32 | +-----------+
SHOW VARIABLES 語句可以返回 MySQL 系統變量。通過添加 WHERE 條件,我們可以獲取服務器的版本信息:
SHOW VARIABLES WHERE variable_name LIKE 'version%'; +--------------------------+-----------------------------+ | Variable_name | Value | +--------------------------+-----------------------------+ | version | 8.0.32 | | version_comment | MySQL Community Server - GPL| | version_compile_machine | x86_64 | | version_compile_os | Win64 | | version_compile_zlib | 1.2.11 | +--------------------------+-----------------+
連接到 MySQL 服務器之后,輸入 STATUS 命令可以返回版本和其他信息:
STATUS;
返回結果示例如下:
--------------
C:\Program Files\MySQL\MySQL Server 8.0\bin\mysql.exe Ver 8.0.32 for Win64 on x86_64 (MySQL Community Server - GPL)Connection id: 21
Current database:
Current user: root@localhost
SSL: Cipher in use is TLS_AES_256_GCM_SHA384
Using delimiter: ;
Server version: 8.0.32 MySQL Community Server - GPL
Protocol version: 10
Connection: localhost via TCP/IP
Server characterset: utf8mb4
Db characterset: utf8mb4
Client characterset: gbk
Conn. characterset: gbk
TCP port: 3306
Binary data as: Hexadecimal
Uptime: 12 days 10 hours 10 min 48 secThreads: 2 Questions: 443 Slow queries: 0 Opens: 350 Flush tables: 3 Open tables: 251 Queries per second avg: 0.000
--------------
讀到這里,這篇“MySQL查看版本的方法有哪些”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。