Exercise: 12
Find out the average speed of the laptops priced over $1000.
Solution
SELECT AVG(speed)
FROM laptop
WHERE price > 1000
Exercise: 12
Find out the average speed of the laptops priced over $1000.
Solution
SELECT AVG(speed)
FROM laptop
WHERE price > 1000