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 と同じ行の数が得られます。それが重複とはあなたが言っていることだと思います。右側 (table2) に一致しない左側 (table1) のレコードを表示するため、左アウターは必要ありません。それらが一致しない場合、それらは n です