Re: [SQL] list of tables?

Поиск
Список
Период
Сортировка
От Jose' Soares Da Silva
Тема Re: [SQL] list of tables?
Дата
Msg-id Pine.LNX.3.96.980521092612.361A-100000@proxy.bazzanese.com
обсуждение исходный текст
Ответ на list of tables?  (The Hermit Hacker <scrappy@hub.org>)
Ответы Re: [SQL] list of tables?  (Oleg Broytmann <phd@comus.ru>)
Список pgsql-sql
On Wed, 20 May 1998, The Hermit Hacker wrote:

>
> Hello
>
> I d like to know if it is possible to have the list of tables like we can do with psql with \dt
>
> thanks
>
-- list all and only tables/views...
SELECT usename, relname
FROM pg_class, pg_user
WHERE ( relkind = 'r')
AND relname !~ '^pg_'
AND relname !~ '^xin[vx][0-9]+'
AND usesysid = relowner
ORDER BY relname;
                                           Jose'



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

Предыдущее
От: The Hermit Hacker
Дата:
Сообщение: list of tables?
Следующее
От: Oleg Broytmann
Дата:
Сообщение: Re: [SQL] list of tables?