Select 姓名 InTO 表三 --将搜索结果自动插入一张新表(不用建表3)From 表1 Where not Exists (Select 姓名 From 表2 Where 表2.姓名 = 表1.姓名)
如果不懂,可以去看看sqlselect * from 表1 where 字段名 not in(select * from 表1)
上边完了之后在Select * From 表3