from c in Categories join o in Products on c.CategoryID equals o.CategoryID into ps from o in ps.DefaultIfEmpty() select new { c.CategoryName, o.ProductName }
left語法確保products資料完整出現
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
select * from [dbo].[AFM_CheckList] c RIGHT join [dbo].[AFM_Product] p
on c.ProductID = p.ProductID
沒有留言:
張貼留言