Inner Joining three tables

前端 未结 5 607
甜味超标
甜味超标 2020-11-30 17:47

I have three tables I wish to inner join by a common column between them.

Say my tables are;

TableA TableB TableC

I wish to join

5条回答
  •  执笔经年
    2020-11-30 18:46

    select *
    from
        tableA a
            inner join
        tableB b
            on a.common = b.common
            inner join 
        TableC c
            on b.common = c.common
    

提交回复
热议问题