I might be wrong but is there a small thing missing on page 67 (PDF Page 75)?
There is an "order by" for the attribut Make_Model, but the alias is not set for the Car.Make + '_' Car.Model
Unless i am wrong:
Is:
select Car.Make + '_ ' + Car.Model
should:
select Make_Model = Car.Make + '_ ' + Car.Model
select Car.Make + '_ ' + Car.Model as Make_Model
- This reply was modified 5 months, 2 weeks ago by ktflash.
I want to be the very best
Like no one ever was