Home mysql How can I find out the MySQL version

How can I find out the MySQL version

Author

Date

Category

How can I find out the version of MySQL on Windows?


Answer 1, authority 100%

here’s the command run it in the MySql terminal

mysql -V

Answer 2, authority 100%

  1. Opening MySQL 5.6 Command Line Client
  2. Enter the password root ‘a
  3. We write \ s and press Enter
  4. Look for the line Server Version
  5. in the response

 Server Version


Answer 3, authority 100%

Easiest:

SELECT VERSION ()

either:

SHOW VARIABLES LIKE "% version%"

Answer 4

Why be smart: in the cmd console: [path] mysql.exe --version
Or from the bin directory where the mysql.exe file itself is located, then you can simply mysql.exe --version

Programmers, Start Your Engines!

Why spend time searching for the correct question and then entering your answer when you can find it in a second? That's what CompuTicket is all about! Here you'll find thousands of questions and answers from hundreds of computer languages.

Recent questions