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):
SHOW VARIABLES LIKE "%version%";
Example result:
version 10.3.13-MariaDB
Example preview: