Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 202 Bytes

ex13.md

File metadata and controls

12 lines (9 loc) · 202 Bytes

Exercise: 13

Find out the average speed of the PCs produced by maker A.

Solution

SELECT AVG(speed)
FROM PC
	LEFT JOIN Product ON PC.model = Product.model
WHERE Product.maker = 'A'