Newbie to Postgres so naive question here -
what is the difference between schemaname and tableowner? https://www.postgresql.org/docs/8.3/view-pg-tables.html
schemaname -> Name of schema containing table
tableowner -> Name of table's owner
schemaname | tablename | tableowner
------------+---------------------+------------
admcdba | class_dim | postgres
admcdba | product_dim | postgres
admcdba | exch_84041_84057 | postgres
admcdba | exch_84041_84061 | postgres
admcdba | part_maint_log | postgres
(5 rows)
in above output schemaname and tableowner are different and hence trying to understand.
Appreciate your response in advance.