我有以下結構的與會者表找到匹配:如何連接表,包括行,不使用非外鍵字段
+--------------+---------+
| attendee_id | others1 |
+--------------+---------+
| abcd | B |
| ghij | A |
| defg | C |
+--------------+---------+
而且還與以下結構的eventattendees表:
+--------------+---------+----------+
| attendee_id | others2 | event_id |
+--------------+---------+----------+
| wxyz | D | 1 |
| mlno | E | 2 |
| defg | F | 3 |
+--------------+---------+----------+
我想要的是創建一個查詢,給出了一些事項標識,返回一個連接這些表(由attendee_id),而且還返回與沒有找到匹配的IDS attenddes參加者表信息的行爲那event_id。說,對於event_id 3:
+--------------+---------+---------+----------+
| attendee_id | others1 | others2 | event_id |
+--------------+---------+--------------------+
| abcd | A | null | null |
| ghij | B | null | null |
| defg | C | F | 3 |
+--------------+---------+--------------------+
我該怎麼做mysql?
這可以與外部進行連接。 –
我剛纔給你提供了以前的數據答案後,你剛剛改變了問題 – Drew
使用更新的答案。我現在得走了。如果您願意,您可以按任意欄目進行訂購。 – Mojtaba