Possible Duplicate:
every derived table must have its own alias
SELECT * FROM (SELECT Customer , Count(Customer) AS Reservation FROM Reservation GROUP BY customer) WHERE Reservation>=8 ORDER BY 1;
And getting the following error
#1248 - Every derived table must have its own alias.
the same works with MS Access. Appreciate your help in advance, thanks!!!