Trying to copy on the new data from table1 into table2. I am not sure how to code it another way than this
INSERT table1
SELECT x.*,y.TIMESTAM
FROM table1 x, table2y
WHERE x.TIMESTAM > y.TIMESTAM;
I want to copy all the columns from table1 if the timestamp is newer (>) row 1 in table2
Here’s how you copy all newer data from table2 into table1: