Re: List table with same column name

From: achill(at)matrix(dot)gatewaynet(dot)com
To: Abdul Wahab Dahalan <wahab(at)mimos(dot)my>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: List table with same column name
Date: 2003-10-23 08:31:06
Message-ID: Pine.LNX.4.44.0310231130520.29589-100000@matrix.gatewaynet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thu, 23 Oct 2003, Abdul Wahab Dahalan wrote:

> Hi!
> How do I list all the tables in the database which has a same column name?.

SELECT t1.relname,a1.attname,t2.relname from pg_class t1,pg_attribute
a1,pg_class t2,pg_attribute a2 where a1.attrelid=t1.oid and t1.relkind='r'
and a1.attnum>0 and a2.attrelid=t2.oid and t2.relkind='r' and a2.attnum>0
and t1.relname<t2.relname and a1.attname = a2.attname;

>
> Thanks
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>

--
-Achilleus

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Peter Childs 2003-10-23 08:40:15 Re: List table with same column name
Previous Message Abdul Wahab Dahalan 2003-10-23 07:46:04 List table with same column name