I do not understand why this query is not working:
SELECT product.maker, product.model, product.type FROM product EXCEPT
(Select top 3 with ties product.maker, product.model, product.type
FROM Product ORDER BY model DESC)
The database scheme consists of four tables:
Product(maker, model, type)
PC(code, model, speed, ram, hd, cd, price)
Laptop(code, model, speed, ram, hd, screen, price)
Printer(code, model, color, type, price)
UPDATE: I actually tried inputting this code using mssql in the online site im in, but it still does not work. Could it be that its a possible site error (ie. something wrong with their DBMS). * NOT EXIST also does not seem to work, however I have used it before in other query questions on the site.