Created
December 20, 2023 03:15
-
-
Save M507/2f414242c4abff2d5ed2fbfcbb3fe34f to your computer and use it in GitHub Desktop.
retrieve information about the version of the database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT version(); | |
SHOW VARIABLES LIKE 'version'; | |
SELECT @@version; | |
SELECT version(); | |
SELECT @@version; | |
SELECT * FROM v$version; | |
SELECT * FROM $version; | |
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY('edition'); | |
SELECT sqlite_version(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment