I'm using PostgreSQL 9.1. I have the column name of a table. Is it possible to find the table(s) that has/have this column? If so, how?
You can also do
select table_name from information_schema.columns where column_name = 'your_column_name'
1.4m articles
1.4m replys
5 comments
57.0k users