i am wondering why this fails
mysql> SELECT Continent C, Name, SurfaceArea
-> FROM Country
-> WHERE SurfaceArea = (
-> SELECT MAX(SurfaceArea)
-> FROM Country
-> WHERE Continent = C);
ERROR 1054 (42S22): Unknown column 'C' in 'where clause'
its a answer provided by the certification guide for some sample exercises.
btw, for alias when do i have to use AS? isit optional?
