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'
2.1m questions
2.1m answers
60 comments
57.0k users