I have two tables as it is seen in the schematic picture. I want to copy data from three columns URI
, fields
and details
in table1
and insert them into table2
if date in table1
is greater than 12/11/2013. Something like below query:
INSERT INTO table2 (all_links, fields_one, fields_two)
FROM table1 (URI, fields, details) WHERE date>"12-11-2013 00-00-00";
Could you please help to solve this problem?