Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I installed wnsql on postgresql and mysql, but the query list listed on the site don't make much sense. Here is the link to the site

http://wnsqlbuilder.sourceforge.net/sql.html

I want to get synonyms on a certain word and this is an example sql listed in the site

SELECT synsetid,dest.lemma,SUBSTRING(src.definition FROM 1 FOR 60) FROM wordsXsensesXsynsets AS src INNER JOIN wordsXsensesXsynsets AS dest USING(synsetid) WHERE src.lemma = 'option' AND dest.lemma <> 'option'

But the problem is that I don't even have a table called wordsXsensesXsynsets, and when I check the schema on the site, its not listed as a table.

Any ideas what I can to synonyms of a certain word using this database?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.