Difference between revisions of "What version of the software am I using?"
From SQLZOO
(Created page with "What version of the software am I using? <div class='ht'> <div> Many implementations of SQL are being developed continuously and new releases are common. Usually there is a ve...") |
|||
| Line 8: | Line 8: | ||
<source lang='sql' class='def e-sqlite'>SELECT sqlite_version() | <source lang='sql' class='def e-sqlite'>SELECT sqlite_version() | ||
</source> | </source> | ||
| − | <source lang='sql' class='def e- | + | <source lang='sql' class='def e-postgresql'>select version() |
</source> | </source> | ||
<source lang='sql' class='def e-oracle'>select * from v$version | <source lang='sql' class='def e-oracle'>select * from v$version | ||
Revision as of 08:19, 12 July 2012
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?