Google News
logo
MySQL - Interview Questions
How to check the MySQL version?
We can check the MySQL version on Linux using the below command :
 
mysql-v 

If we use the MySQL in windows, opening the MySQL command-line tool displayed the version information without using any flags. If we want to know more about the server information, use the below statement :
 
SHOW VARIABLES LIKE "%version%";
Advertisement