EN
MySQL - check server version using SQL query
6 points
In this short, article we would like to show SQL query that lets to check MySQL / MariaDB version.
Quick solution (execute the query from MySQL command line):
xxxxxxxxxx
1
SHOW VARIABLES LIKE "%version%";
Example result:
xxxxxxxxxx
1
version 10.3.13-MariaDB
Example preview:
