解决方法
要识别特定行所在的表格,请使用
转换为
tableoid
,就像您已经发现的那样.
转换为
regclass
将检索实际名称,如果当前search_path需要,则自动进行模式限定.
SELECT *,tableoid::regclass::text AS table_name FROM master.tbl WHERE <some_condition>;
更多:
> Find out which schema based on table values
> Select (retrieve) all records from multiple schemas using Postgres