我有一個數據庫,裏面的數據庫是連接表。Mysql:多個連接在一個表中
我的第一張表是cardtests
只有id
和name
列。 我參與了tests
我的專欄是:
card1_id | card2_id | card3_id
其中它們等於cardtests.id。
我sqlquery的是
SELECT cardtests.name
FROM tests
JOIN cardtests
ON tests.card1_id = cardtests.id
ON tests.card2_id = cardtests.id
ON tests.card3_id = cardtests.id
但問題是,他們沒有工作只是想顯示的3張卡的所有名稱。我將如何做到這一點,謝謝。
非常感謝你很多muahh。 : - * – QWERTY