Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL si unisce al valore massimo

Una semplice sottoquery dovrebbe funzionare bene;

SELECT * FROM food_brands WHERE type_id=
  (SELECT MAX(t.id) tid FROM types t
   JOIN foods f ON f.id=t.food_id AND f.entry_id=12230)

Un SQLfiddle con cui testare .