Collections:
VERSION() - Version Number of MySQL Server
How to obtain the version number of the MySQL server using the VERSION() function?
✍: FYIcenter.com
VERSION() is a MySQL built-in function that
returns the version number of the MySQL server.
For example:
SELECT VERSION(); -- +-----------+ -- | VERSION() | -- +-----------+ -- | 8.0.17 | -- +-----------+ SELECT @@version; -- +-----------+ -- | @@version | -- +-----------+ -- | 8.0.17 | -- +-----------+
Reference information of the VERSION() function:
VERSION(): ver Returns the version number of the MySQL server. Arguments, return value and availability: ver: Return value. The version number of the MySQL server. Available since MySQL 4.0.
⇒ MySQL Functions for Miscellaneous Purposes
⇐ USER() - Login Name of Current User
2025-01-07, 2623🔥, 0💬
Popular Posts:
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
Where to find Oracle database server tutorials? Here is a collection of tutorials, tips and FAQs for...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...