Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Inner Junção de três tabelas

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