Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL wählt 1 Zeile aus innerer Verknüpfung aus

Sie benötigen eine Abfrage wie diese:

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

Bearbeiten:Um nur eine Farbe für ein Auto zu erhalten, können Sie group:

verwenden
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