I need to find the makers producing at least three distinct models of PCs. Result set: maker, number of models.
My tables are Product(maker, model, type) PC(code, model, speed, ram, hd, cd, price)
I have done this for now
SELECT Product.maker, PC.model
FROM PC, Product
WHERE Product.model=PC.model