how to check mysql version ubuntu

Solutions on MaxInterview for how to check mysql version ubuntu by the best coders in the world

showing results for - "how to check mysql version ubuntu"
Angelo
27 May 2020
1#Type
2mysql --version
3#to see if it is installed.
Annette
25 Jan 2017
1SHOW VARIABLES LIKE "%version%";
2+-------------------------+------------------------------------------+
3| Variable_name           | Value                                    |
4+-------------------------+------------------------------------------+
5| protocol_version        | 10                                       |
6| version                 | 5.0.27-standard                          |
7| version_comment         | MySQL Community Edition - Standard (GPL) |
8| version_compile_machine | i686                                     |
9| version_compile_os      | pc-linux-gnu                             |
10+-------------------------+------------------------------------------+
115 rows in set (0.04 sec)
Constanza
01 Jul 2020
1Mysql version
2mysql -V
Riccardo
09 Feb 2017
1# Console:
2mysql -V
3mysql --version
4# Query:
5SHOW VARIABLES LIKE "%version%";
6# PHPMyAdmin Interface, on the right side:
7> Database server > Server version
similar questions
queries leading to this page
how to check mysql version ubuntu