Answers for "what version of mysql am i running"

SQL
4

mysql version

# console
mysql --version
mysql -V

# sql query
SHOW VARIABLES LIKE ‘%version%’;
Posted by: Guest on June-03-2020
3

find mysql version linux

SHOW VARIABLES LIKE "%version%";
+-------------------------+------------------------------------------+
| Variable_name           | Value                                    |
+-------------------------+------------------------------------------+
| protocol_version        | 10                                       |
| version                 | 5.0.27-standard                          |
| version_comment         | MySQL Community Edition - Standard (GPL) |
| version_compile_machine | i686                                     |
| version_compile_os      | pc-linux-gnu                             |
+-------------------------+------------------------------------------+
5 rows in set (0.04 sec)
Posted by: Guest on May-11-2020
4

how to get current mysql version

SELECT VERSION ();
Posted by: Guest on December-22-2020
3

mysql version check cmd

mysql -V
Posted by: Guest on August-21-2020
1

what is my mysql version

Mysql version
mysql -V
Posted by: Guest on October-14-2020
0

mysql version

mysqld --version
Posted by: Guest on May-05-2020

Code answers related to "what version of mysql am i running"

Code answers related to "SQL"

Browse Popular Code Answers by Language