Possible Duplicate:
Oracle column query or search
I need a query which will bring name of the tables that contains that column name in oracle.
Example: Lets say that I have table1
with columns (a,b)
, table2
with columns (b,c)
and table3
with columns (a,b,c,d)
so I need a know which tables contain C
column so I need a query which will bring table names, how I can do that ?
Thanks