Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我真的不知道它是否可能,但你能计算重复的行,左连接到适当的行,然后在 1 个表中分组吗?
SELECT count(name) FROM table1 t1, table2 t2 WHERE t1.name = t2.name;
这将为您提供 table1 中的名称与 table2 中的名称相同的行数。我假设这就是你所说的重复。不需要左侧外部,因为它将显示左侧(table1)中没有右侧(table2)匹配的记录。如果他们没有匹配,他们是 n