对于车库数据库,尝试在部分测试期间找到制造商组件的平均分数。以下 SQL 似乎运行良好:
SELECT component.manufacturer_id, AVG(section.grades) AS Grade_Average
FROM section
INNER JOIN component
ON section.mod_id=component.cid
GROUP BY component.manufacturer_id
但只会给出一行结果(即只有一个manufacturer_id)