最佳答案
我使用的是 PostgreSql 版本:
postgres=# select version();
version
-------------------------------------------------------------
PostgreSQL 9.2.4, compiled by Visual C++ build 1600, 64-bit
(1 row)
我已经连接到一个数据库从 postgres=#
到 newdb=#
... 。
现在我在 newdb=#
数据库我想断开它,回到 postgres=#
数据库... 。
怎么做?
我试过 disconnect newdb;
但它给出的错误是:
postgres=# create database newdb;
CREATE DATABASE
postgres=# \c newdb;
WARNING: Console code page (437) differs from Windows code page (1252)
8-bit characters might not work correctly. See psql reference
page "Notes for Windows users" for details.
You are now connected to database "newdb" as user "postgres".
newdb=# disconnect newdb;
ERROR: syntax error at or near "disconnect"
LINE 1: disconnect newdb;
^
newdb=#
它不工作,有没有其他的方法做到这一点,或者我在任何事情错了! !