如何从一个表中选择另一个表中不存在的所有记录?
table1(id,name)table2(id,name)
查询:
SELECT name FROM table2 -- that are not in table1 already
相关分类