CentOS 5のPostgreSQLでバージョン確認のために「select version();」を実行した結果
「select version();」というSQLを実行することで、PostgreSQLのバージョンを確認することができる。
《CentOS 5のyumコマンドでPostgreSQLをパッケージインストールした後、CentOS 5のコンソールからpsqlコマンドでPostgreSQLデータベースに接続し、「select version();」というSQLを実行した時の結果》
# psql -U postgres
Welcome to psql 8.1.23, the PostgreSQL interactive terminal.
Type: \copyright for distribution terms
\h for help with SQL commands
\? for help with psql commands
\g or terminate with semicolon to execute query
\q to quit
postgres=# select version();
version
-----------------------------------------------------------------------------------------------------------
PostgreSQL 8.1.23 on x86_64-redhat-linux-gnu, compiled by GCC gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-51)
(1 row)
postgres=#