我願做下面的查詢中MySQL的:如何使我的查詢工作(多表查詢)
SELECT DINSTINCT cstc.car_id FROM cars
JOIN customer_cars cstc ON cstc.age = student_cars.age
其中:
cars
表中的列:car_id
,name
, ...
customer_cars
表中的列:car_id
,age
student_cars
表中的列:car_id
,age
我知道查詢語法是錯誤的,因爲student_cars
表不能在此查詢識別(MySQL的提高誤差)。
(基本上,我想用查詢,找出所有的汽車IDS其中customer_cars年齡等於student_cars歲)
所以,我怎麼能修改查詢,以使其正常工作?