sql >> Database >  >> RDS >> PostgreSQL

Hoe de verbinding met een database verbreken en teruggaan naar de standaarddatabase in PostgreSQL?

Het is gemakkelijk, kijk maar naar het voorbeeld.

--mijn databases

postgres=# \l
                               List of databases
   Name    |  Owner   | Encoding | Collate | Ctype |     Access privileges     
-----------+----------+----------+---------+-------+---------------------------
 francs    | postgres | UTF8     | C       | C     | =Tc/postgres             +
           |          |          |         |       | postgres=CTc/postgres    +
           |          |          |         |       | francs=C*T*c*/postgres   +
           |          |          |         |       | select_only=c/francs
 postgres  | postgres | UTF8     | C       | C     | 
 source_db | postgres | UTF8     | C       | C     | =Tc/postgres             +
           |          |          |         |       | postgres=CTc/postgres    +
           |          |          |         |       | source_db=C*T*c*/postgres
 template0 | postgres | UTF8     | C       | C     | =c/postgres              +
           |          |          |         |       | postgres=CTc/postgres
 template1 | postgres | UTF8     | C       | C     | =c/postgres              +
           |          |          |         |       | postgres=CTc/postgres
(5 rows)

--overschakelen naar db-franken als rolfranken

postgres=# \c francs francs
You are now connected to database "francs" as user "francs".

--swith naar db postgres als rol postgres

francs=> \c postgres postgres

You are now connected to database "postgres" as user "postgres".
postgres=# 

--loskoppelen van db

postgres=# \q


  1. De kolom 'groep' veroorzaakt op de een of andere manier een syntaxisfout

  2. Oracle 'Partition By' en 'Row_Number' trefwoord

  3. Wat zijn dekkende indexen en gedekte zoekopdrachten in SQL Server?

  4. Gegevens invoegen met verbindingstabellen