From: | Richard Huxton <dev(at)archonet(dot)com> |
---|---|
To: | Alexander Cohen <alex(at)toomuchspace(dot)com>, pgsql-general(at)postgresql(dot)org |
Subject: | Re: columns refered to in view |
Date: | 2004-04-14 20:05:13 |
Message-ID: | 200404142105.13441.dev@archonet.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2004-04-14 20:53:00 | Re: [HACKERS] Remove MySQL Tools from Source? |
Previous Message | Bruce Momjian | 2004-04-14 19:57:52 | Re: [HACKERS] Remove MySQL Tools from Source? |