postgresql select version code example
Example 1: get postgres version
postgres -V
// or
psql --version
Example 2: postgresql version command
# SSH
psql --version
# SQL
SELECT version();
postgres -V
// or
psql --version
# SSH
psql --version
# SQL
SELECT version();