How to find a table having a specific column in postgresql

You can also do

 select table_name from information_schema.columns where column_name="your_column_name"

Leave a Comment