arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

version_minor

This function returns the minor version number of the MariaDB Server instance, such as the 6 in 10.6.4.

circle-info

Sys Schema is available from MariaDB 10.6.

hashtag
Syntax

sys.version_minor()

hashtag
Description

version_minor is a available with the .

It returns the MariaDB Server minor release version.

hashtag
Examples

hashtag
See Also

This page is licensed: CC BY-SA / Gnu FDL

stored function
Sys Schema
version_major
version_patch
spinner
SELECT VERSION(),
 sys.version_major() AS major, 
 sys.version_minor() AS minor,
 sys.version_patch() AS patch;
+----------------+-------+-------+-------+
| VERSION()      | major | minor | patch |
+----------------+-------+-------+-------+
| 10.8.2-MariaDB |    10 |     8 |     2 |
+----------------+-------+-------+-------+