VERSION
Function Description
The VERSION() function is used to obtain the version information of the current MatrixOne. This function usually returns a string containing the version number of MatrixOne. For example, 8.0.30-MatrixOne-v2.0.3 means that the version number of MatrixOn is 8.0.30-MatrixOne-v2.0.3, which is defined as MySQL compatible version number (8.0.30) + MatrixOne + MatrixOne kernel version (v2.0.3).
Function Syntax
> VERSION()
Example
mysql> select version();
+------------------------------+
| version() |
+------------------------------+
| 8.0.30-MatrixOne-v2.0.3 |
+------------------------------+
1 row in set (0.00 sec)