This article is half-done without your Comment! *** Please share your thoughts via Comment ***
In this post, I am sharing basic commands to check the PostgreSQL version information.
PostgreSQL Database Administrator can use this command to find the version number, release version name of PostgreSQL.
During the migration activities, we require to check the numeric version number instead of a full version name.
At that time, we can use below commands to get the numeric version number.
First, Get PostgreSQL Version name:
1 2 3 4 5 6 7 |
SELECT VERSION(); /* Sample Result: version -------------------------------------------------------------------------- PostgreSQL 9.5.3, compiled by Visual C++ build 1800, 32-bit */ |
Get only PostgreSQL Version:
1 2 3 4 5 6 7 |
SHOW SERVER_VERSION; /*Sample Result: server_version ----------------------- 9.5.3 */ |
Get PostgreSQL Version Number:
1 2 3 4 5 6 7 |
SELECT current_setting('server_version_num'); /* Sample Result: current_setting ------------------------- 90503 */ |
Leave a Reply