Is it possible to do a 3 table join in MS-Access?

后端 未结 4 1537
别那么骄傲
别那么骄傲 2020-12-20 06:10

I try to do a 3-table join in Access and it will not work. Is it possible?

4条回答
  •  自闭症患者
    2020-12-20 06:47

    Yes, it's possible:

    Select *
    From A, B, C
    Where A.a = B.b
    And A.c = C.c
    

    or

    Select *
    From A, B, C
    Where A.a = B.b
    And B.c = C.c
    

提交回复
热议问题