LINQ 學習筆記(8)實作Left Join(2) 多表單多條件式莊創偉·Follow1 min read·Nov 14, 2017--Share資料表如上圖所示實作以Teacher left join Student 與Score三個表,T-SQL 語法如下select o.Classname,.... from Teather as o left join Student as p on o.Classname=p.ClassName left join Score as s on o.Class=s.Class and s.studentID=p.ID order by o.Classname.....