不知道你是什么来判断A表和B表中的记录的
如果你的要求是A表中的每条记录内容安全不同于B表中的记录,请用
insert into c select * from a 
where not exists 
(select * from b where b.x1=a.x1 and b.x2=a.x2 and b.x3=a.x3 and b.x4=a.x4)
如果你是以主键来判别A表中的记录是否B表中也存在,请用
insert into c select * from a 
where not exists 
(select * from b where b.主键=a.主键)