In PostgreSQL: Creating a third table by joining columns of two table and new table rows should be updated in realtime
I am having N number of tables(around 100) as shown below. These are base tables CREATE TABLE table1 ( SignalID NCHAR(36) NOT NULL, Timestamp VARCHAR(24) NOT NULL, Value DOUBLE NOT NULL ) CREATE TABLE table2 ( SignalID NCHAR(36) NOT NULL,…