I am working with a data base that has two tables for words and synonyms. I have managed a query that goes like this:
SELECT word, synonym
FROM pat_words, pat_synonyms
WHERE (pat_words.word_id=pat_synonyms.word_id);
An sample of the result I get is:
word synonym
abandonment desertion
abandonment leaving
abase belittle
abase degrade
The result I'd like to see is :
word synonym
abandonment desertion/ leaving
abase belittle/ degrade
I imagine that, for an expert, it is something quite basic and simple; but for someone like me (very new to Access) it constitutes an effective of headache.
I would appreciate any help.
Ram_son