आपको इस तरह की एक क्वेरी चाहिए:
SELECT * FROM car
INNER JOIN car_color ON car.id = car_color.car_id
LIMIT 1 -- this will limit the results to only one row
संपादित करें:कार के लिए केवल एक रंग प्राप्त करने के लिए आप समूह का उपयोग कर सकते हैं:
SELECT * FROM car
INNER JOIN car_color ON car.id = car_color.car_id
GROUP BY car.id -- this will group all the rows with the same car to only one row per car