Re: is there a 'table' data type in pg?

Поиск
Список
Период
Сортировка
От Gregory Stark
Тема Re: is there a 'table' data type in pg?
Дата
Msg-id 87sl7d28pn.fsf@oxford.xeocode.com
обсуждение исходный текст
Ответ на is there a 'table' data type in pg?  (Louis-David Mitterrand <vindex+lists-pgsql-sql@apartia.org>)
Ответы Re: is there a 'table' data type in pg?  (Louis-David Mitterrand <vindex+lists-pgsql-sql@apartia.org>)
Список pgsql-sql
"Louis-David Mitterrand" <vindex+lists-pgsql-sql@apartia.org> writes:

> Can I use a another column to store the type of the id_subject (ie: the 
> tabled it belongs to) ? Then I would be able to query that table for 
> additional info to print alongside the forum posts.

There are ways to identifier tables in Postgres but there's no way to run a
query against a table using them.

I would strongly recommend you define your own list of "object_types",
probably even have an object_type table with a primary key, a description
column, and a table_name column. Then you can in your application construct
the appropriate query depending on the object_type. 

One alternative you could do is have a set-returning plpgsql function which
has a big if statement and performs the right kind of query. I think the
records would have to all be the same -- they can't be different kinds of
records depending on the type of object.

--  Gregory Stark EnterpriseDB          http://www.enterprisedb.com



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

Предыдущее
От: Louis-David Mitterrand
Дата:
Сообщение: is there a 'table' data type in pg?
Следующее
От: Louis-David Mitterrand
Дата:
Сообщение: Re: is there a 'table' data type in pg?