我有 3 张桌子。
Table1: Group_Code, Group_Name,companyID;(PK: Group_Code)
Table2: PartyID,GroupID,companyID;(FK: GroupID, PK:PartyID)
Table3: VendorID, companyID;(FK:VendorID)
我想Group_Name
从Table1中获取Table3的所有VendorID。我怎样才能做到这一点?
在这里我写了一个代码。但它显示"Syntex error in FROM clause."
我的数据库在 ms 访问。
select Group_Name from Table1 join Table2 on Table1.Group_Code= Table2.GroupID
join Table3 on Table2.PartyID=Table3.VendorID