本文摘自PHP中文网,作者hzc,侵删。

查看mysql版本的方法:
1 在命令行登录mysql,即可看到mysql的版本号
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | [root@heyong ~]# mysql -uroot -p
Enter password :
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 487032Server version: 5.7.17 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>
|

2.利用mysql命令查看
1 2 3 4 5 6 | mysql> select version();+
| version() |
+
| 5.7.17 |
+
mysql>
|

3.使用mysql --help | grep Distrib查看
1 2 | [root@heyong tools]# mysql
mysql Ver 14.14 Distrib 5.7.17, for linux-glibc2.5 (x86_64) using EditLine wrapper
|

推荐教程: 《mysql教程》
以上就是怎么查看mysql版本的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
如何允许远程客户端连接mysql服务器
mysql 怎么新建连接
笔记之 mysql 优化
mysql如何导入文本数据?
详解mysql实时同步到oracle解决方案
关于mysql与oracle的一些区别介绍
mysql中的启动和关闭命令
mysql怎么配置环境变量?
【mysql数据库】第二章解读:mysql基准测试
mysql存储写入速度快慢是怎么形成的?
更多相关阅读请进入《mysql》频道 >>
机械工业出版社
本书主要讲述了数据模型、基于对象的数据库和XML、数据存储和查询、事务管理、体系结构等方面的内容。
转载请注明出处:木庄网络博客 » 怎么查看mysql版本