Additional SQL Server features and topics not covered by specific categories
Hi @loop
If I understand correctly, this simple query can do it.
select * from table1 as A left outer join table2 as B on A.ClassID = B.ClassID
left outer join table3 as C on C.ClassID = A.ClassID;
Best regards,
Percy Tang
If the answer is the right solution, please click "Accept Answer". If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our Documentation to enable e-mail notifications if you want to receive the related email notification for this thread.