cool.. I made the following change to add the wordid requirement and it works fine (really slow but I think I need to add some indexes)
SELECT wordid, synsetid
FROM sense S
WHERE NOT EXISTS (SELECT synsetid FROM synset P WHERE S.synsetid = P.synsetid AND P.wordid=1)
is it possible to use a similar kind of subquery to solve the problem I am having in the below question?
http://www.experts-exchang
Main Topics
Browse All Topics





by: tigin44Posted on 2008-11-17 at 13:29:01ID: 22979659
this will give you what you want
SELECT wordid, synsetid
FROM sense S
WHERE NOT EXISTS (SELECT synsetid FROM synset P WHERE S.synsetid = P.synsetid)