PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

PostgreSQL - Nessuna relazione trovata.

Ciò implicherebbe che il database timlin non contiene tabelle nel pubblico schema (che è ciò che \d normalmente elencherebbe).

Sembra che tu abbia creato un database vuoto, ad esempio:

createdb -h localhost -U postgres timlin

In tal caso, subito dopo la creazione, \d ritornerebbe:

Dovresti creare esplicitamente una o più tabelle per vedere tutto ciò che è elencato nell'output di \d .

per esempio. se fai quanto segue:

create table foo (id serial, val text);

E poi fai un \d , risulterà il seguente output:

             List of relations
 Schema |    Name    |   Type   |  Owner   
--------+------------+----------+----------
 public | foo        | table    | postgres
 public | foo_id_seq | sequence | postgres
(2 rows)