自己写段代码,判断"年份,学校,生源地,专业,录取线"
如果不存在就写到数据库,一会应该就可以搞定了.
把b表的数据整到a表中去:
insert into a (年份,学校,生源地,专业,录取线)
select b.年份,b.学校,b.生源地,b.专业,b.录取线 from b where id not in (select b.ID from b inner join a on a.年份=b.年份 and a.学校=b.学校 and a.生源地=b.生源地 and a.专业=b.专业 and a.录取线=b.录取线)