Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get the name of a row's source table when querying the parent it inherits from

I have a Postgres database with several tables that inherit from one other. I can SELECT from the parent table to get results from all it's children, but need to get the name of the table that each result originates from.

The method found here does not work since I am only querying the one table, and do not know which children will be in the results ahead of time.

like image 693
ltab Avatar asked Jul 04 '14 20:07

ltab


1 Answers

To identify the source table of a particular row, use the tableoid, like you found yourself already.
A cast to regclass retrieves the actual name, automatically schema-qualified where needed according to the current search_path.

SELECT *, tableoid::regclass::text AS table_name
FROM   master.tbl
WHERE  <some_condition>;

More:

  • Find out which schema based on table values
  • Select (retrieve) all records from multiple schemas using Postgres
  • How does the search_path influence identifier resolution and the "current schema"
like image 118
Erwin Brandstetter Avatar answered Nov 15 '22 15:11

Erwin Brandstetter