I have created a new table using a SELECT INTO statement. I want the new table to automatically refresh if the original table changes (i.e. new rows of data added).
I have googled around but can only find solutions to refreshing a views, not created tables.
SELECT A, B, C, D
INTO NewTable
FROM OldTable1 LEFT JOIN OldTable2
I would expect that the new table is constantly up to date with the data in the old table. Any advice would be welcome