What version of the software am I using?
From SQLZOO
What version of the software am I using?
Many implementations of SQL are being developed continuously and new releases are common. Usually there is a version number.
SELECT sqlite_version()
SELECT version()
SELECT * FROM v$version
SELECT @@versionSELECT version()
SELECT @@versionWhat version of the software am I using?