Angenommen, wir haben drei Tische:
Tabelle 1
| c_id | categories | |-------------------|------------------| | 7 | a | | 4 | b | | 3 | c |
Tabelle 2
| c_id | dup_id | |-------------------|--------------| | 9 | 10 | | 5 | 3 | | 6 | 2 |
Tabelle 3
| c_id | description | |-------------------|--------------| | 22 | xxxx | | 5 | yyyy | | 11 | zzzz |
Angenommen, dup_id
中的某些值等于Table2中的dup_id
,那么我们可以找到dup_id
对应的dup_id
,并利用它来查找Table3中的description
in Tabelle 1. Wie geht das am besten?
Ausgabe:
| c_id | description | |-------------------|--------------| | 5 | yyyy |
似乎是 3 个表的直接连接: