您如何将 table1 列引用到表 2 中的 2 列
我创建了一个包含 50 行的表“ State ”
试图在“婚礼”表中关联 (weddingState,contactState)
这是我创建的语句,但它只正确加入了顶部的WeddingState - 似乎并不关心它下面的 INNER Join ......
选择 *
从婚礼
INNER JOIN 状态为 s1 ON 婚礼。WeddingState = s1.StateId //婚姻状态
INNER JOIN 状态为 s2 ON weddings.ContactState = s2.StateId //新娘的联系状态
WHERE 婚礼.weddingid="094829292"