How to check the MariaDB edition

The queries below return MariaDB version, edition and system information.

Show statement

Option 1 - Specific information

Query

show variables where variable_name = 'version_comment';

Columns

  • Variable_name - name of the variable
  • Value - MariaDB edition information

Rows

  • Query returns just one row

Sample results

Option 2 - Detailed information

Query

show variables where variable_name like '%version%';

Columns

  • Variable_name - name of the variable
  • Value - value stored in the variable

Rows

  • One row: represens the value of the corresponding variable
  • Scope of rows: information such as version, edition and system information

Sample results

MySQL Workbench

In the Navigator pane to the left of the screen, click on the option Server Status to display the MariaDB version and edition, along with some system information

Sample results

Comments are only visible when the visitor has consented to statistics cookies. To see and add comments please accept statistics cookies.
0
There are no comments. Click here to write the first comment.