To confirm the version of MySQL installed on your system, follow this simple guide:

  1. Log in: First, access your system as a "mysql" user or as "root". This step is crucial for gaining the necessary permissions to check the software version.
  2. Execute the version command: Once logged in, enter the command

    SELECT @@version;

    in the MySQL interface. This command will display the current version of MySQL that is installed on your system.

  • No labels