MySQL tutorial: VERSION [EN]
top of page
CerebroSQL

MySQL: 

VERSION

Syntax:
VERSION()

Returns a string that indicates the MySQL server version. The string
uses the utf8 character set. The value might have a suffix in addition
to the version number. See the description of the version system
variable in
https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html.

URL: https://dev.mysql.com/doc/refman/8.0/en/information-functions.html

Example

mysql> SELECT VERSION();
-> '8.0.23-standard'

bottom of page