Wordnet sqlite Synonyms and Samples
问题 I am trying to get the list of Synonyms and Samples given the wordid. After a lot of trial and error I can get the samples for all the synsets but not the actual synonyms. Here is my query which gives me the following results. select senses.wordid, senses.synsetid, senses.sensekey, synsets.definition FROM senses LEFT OUTER JOIN synsets ON senses.synsetid = synsets.synsetid where senses.wordid = 79459 I know you can get the synonyms by submiting the synsetid back to the senses table which