Обсуждение: View the contents of a database

Поиск
Список
Период
Сортировка

View the contents of a database

От
nuno.barros@fc.ul.pt (Nuno Barros)
Дата:
I am a beginner with Postgres and my question is quite simple.
I want to make a query to see the contents of a database, i mean, see
wich tables exist in a database.

All the best
               Nuno Barros

Re: View the contents of a database

От
Ralph Graulich
Дата:
> I am a beginner with Postgres and my question is quite simple.
> I want to make a query to see the contents of a database, i mean, see
> wich tables exist in a database.

Within the psql command line client type "\d" (without the quotation
marks).


Kind regards
... Ralph ...



Re: View the contents of a database

От
Richard Huxton
Дата:
On Tuesday 06 Aug 2002 11:36 am, Nuno Barros wrote:
> I am a beginner with Postgres and my question is quite simple.
> I want to make a query to see the contents of a database, i mean, see
> wich tables exist in a database.

At the psql prompt use the "\d" command - use "\?" to see other commands
available. Check the manual for full details of psql.

The "\d" command is just a shortcut for standard sql - you can start psql with
a -E flag to see how it does it.

- Richard Huxton