In sql-server, one can connect to the master db and write a statement in the below syntax to query any table:
SELECT * FROM [database].[dbo].[table]
I've ran some google searches for "postgres full table address" and "postgres object hierarchy" but to no avail. See this question for more on how this is done in sql-server.
Are operations like this possible in Postgres (I'm running version 9.3)?
If so, please explain how with a code example.
If not, please explain why not.