In PostgreSQL, is there a way to get all of the tables that a view/table depends on based on its use of foreign keys and access to a given table?
Basically, I want t
In psql, adding + to the usual \d gives you a "Referenced by" list along with the table definition.
+
\d
\d+ tablename