Re: all tables in a DB\?

Поиск
Список
Период
Сортировка
От Rolf Hug
Тема Re: all tables in a DB\?
Дата
Msg-id a4ro0l$1641$1@jupiter.hub.org
обсуждение исходный текст
Ответ на all tables in a DB\?  ("D'laila Pereira" <dlailap@home.com>)
Список pgsql-sql
Hi
Try the following SQL-Command:

SELECT relname
FROM pg_class
WHERE relname NOT LIKE 'pg_%';

In the table 'pg_class' you will find all tables created in the database.
Also the system-tables called pg_... (like pg_class).
greetings
rolf


"D'laila Pereira" <dlailap@home.com> schrieb im Newsbeitrag
news:Xh2c8.20270$tg4.228609@vixen.cso.uiuc.edu...
> What SQL command can I issue in Postgresql to list all the tables in a
> database?
>
>
>
>




В списке pgsql-sql по дате отправления:

Предыдущее
От: ishapiro@cogitations.com (Irv Shapiro)
Дата:
Сообщение: Casting pairs of floating point variables as a point in plpgsql
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Why is my index not used