EN
PostgreSQL - check version using SQL
0
points
In this short article, we would like to show how to check the PostgreSQL version using SQL.
Quick solution:
SELECT version()
Example output:
PostgreSQL 13.2, compiled by Visual C++ build 1914, 64-bit
Another solution:
SHOW server_version;
Example output:
13.2