I would run like hell (or abandon) this training series, when they write code that look like thisselect Sales.Customers.Zip 'Zip Code', FlowerResults.CommonName 'Common Name', case when FlowerResults.Performance = '1' then 'Star Performer' when FlowerResults.Performance = '2' then 'Good Performer' else 'Inconsistant in your climate' end 'Result'from Sales.Customers, ( Select Sales.Flowers.CommonName, Sales.ClientFlowerMatch.Performance, ClientFlowerMatch.Zip from Sales.ClientFlowerMatch, Sales.Flowers where Sales.ClientFlowerMatch.FlowerID = Sales.Flowers.FlowerID ) as FlowerResultswhere FlowerResults.Zip = Sales.Customers.Zip and Sales.Customers.CustomerNumber = '10'order by FlowerResults.Performance, FlowerResults.CommonName
Other than this, the reason behind the code is to check the conditions for all other customers living in the same zip as customer #10.
N 56°04'39.26"E 12°55'05.63"