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

MySQL:trova le righe corrispondenti a tutte le righe della tabella unita

Non ha senso i join sinistro se stai solo cercando tracce che abbiano tutte le parole. Presumo che (trackid ,wordid ) la combinazione è unica in trackwords .

SELECT t.id
  FROM track as t,  trackwords as tw, wordlist as wl
 WHERE t.id=tw.trackid
   AND wl.id=tw.wordid
   AND wl.trackusecount>0 /* not sure what that is - you have it in your query */
   AND wl.word in ('folsom','prison','blues')
 GROUP by t.id
HAVING count(*) = 3

Questa query trarrebbe vantaggio dagli indici su wordlist(word), trackwords(trackid,wordid) e track(id).