PostgreSQL – Get Database Version
To get the version of your PostgreSQL database, you can use the SQL query below when connected to the database: SELECT version(); When you run this query, it will return a result similar to the following: PostgreSQL x.x.x on x86_64-pc-linux-gnu, compiled by … In the result, “x.x.x” represents the PostgreSQL version number. It also provides…