假设表的字段有id Name 和Mark
则Insert table1(id, name, mark)
Select id, name, mark From table2
Where Not Exists (Select id From table1 Where id = table2.id and name = table2.name And mark = table2.mark)
假如id是唯一的
可以简化为
Insert table1(id, name, mark)
Select id, name, mark From table2
Where id not in (Select id From table1)