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: ジョナサン vs ジェニー ,
マッチ 2: サム vs ルビー,
マッチ 3: アリフ vs パミー
多くのクエリを試しましたが、達成できませんでした。
SELECT table1.boy_id, table1.girl_id, table1.ID, table2.id, table2.name, table2.score FROM table1 INNER JOIN table2
SELECT a.ID, b.name BoyName, c.name GirlName FROM table1 a INNER JOIN table2 b On a.boy_id = b.id INNER JOIN table2 c ON a.girl_id = c.id
への参照から 2 つの列があるため、 でtable22 回結合する必要があります。table1table1table2
table2
table1