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

Come limitare le parole ma non le definizioni usando mysql

Prova questa domanda. Limiterà i dati principali e unirà le tabelle

SELECT w.word,d.definition,d.pos FROM 
  (SELECT id, word FROM words ORDER BY id LIMIT 5) w 
  JOIN definition  d ON d.wordid = w.id