I am having trouble with a homework question. Specifically, find the maker(s) who produce(s) a PC faster than all laptops. The query I am using is
SELECT DISTINCT maker
From Product
Where model = (SELECT model
FROM PC
WHERE speed > ALL (SELECT speed
FROM Laptop));
However I keep getting an error saying that my sub query is returning more than one row. Is this a syntax error on my part or is my logic just off?