Re: columns refered to in view - Mailing list pgsql-general

From Richard Huxton
Subject Re: columns refered to in view
Date
Msg-id 200404142105.13441.dev@archonet.com
Whole thread Raw
In response to columns refered to in view  (Alexander Cohen <alex@toomuchspace.com>)
List pgsql-general
On Wednesday 14 April 2004 14:59, Alexander Cohen wrote:
> I have created a view with this query:
>
> CREATE VIEW testview AS SELECT table.column AS col1, table2.column AS
> coll2 FROM table, table2;
>
> Later on, i want to get the table and column name that a field refers
> to in this view. In other words i want to get the table and column that
> the column 'col1' refers to. Im looking for 'table.column'. How can i
> get this information?

If you're using 7.4, you can look in the information-schema:

SELECT * FROM information_schema.view_column_usage
WHERE view_name = 'foo_view';

This only lists columns that "show through" not calculated columns (AFAIK).
--
  Richard Huxton
  Archonet Ltd

pgsql-general by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Remove MySQL Tools from Source?
Next
From: Josh Berkus
Date:
Subject: Re: [HACKERS] Remove MySQL Tools from Source?