I am using MySQL. I have the following query:
SELECT DISTINCT c.car_id FROM cars AS c JOIN customer_cars bb ON bb.age=40;
When I run the above query I got the error :
ERROR 1054 (42S22): Unknown column 'c.car_id' in 'field list'
Where am I wrong?
(Both cars and customer_cars tables have car_id column)
a. – Tom van der Woerdt Dec 29 '11 at 12:11