select tblProductMaster.*,AVG(tblReviewMaster.Rating) from tblProductMaster
left join tblReviewMaster
on tblProductMaster.ProductID = tblReviewMaster.ProductID
Group By tblProductMaster.ProductID
此查询返回错误:
列 'tblReviewMaster.ReviewID' 在选择列表中无效,因为它既不包含在聚合函数中,也不包含在 GROUP BY 子句中。
它不允许我有任何带有 AVG 功能的列......如果我写
select AVG(tblReviewMaster.Rating) from tblProductMaster ...
然后它工作正常
那么如何获取产品详细信息tblProductMaster
呢?