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?