Tja, die Suche ist auf jeden Fall gelöst:
SQL-Code:
select d.document_name, d.document_id, w.word
from documents as d, document_words as dw
left join words as w on dw.word_id=w.word_id
where d.document_id=dw.document_id
and (w.word='der' or w.word='eine')
Jetzt fehlt nur noch die Ausschlussbedingung.