Hello ,
I have a table WORDS.
Word_id | word_name | word synonym
1 | oval | egg-shaped
2 | oval | rounded
3 | voyage | travel
4 | voyage | journey
5 | voyage | trip
In the output I’m looking to have two fields word_name and word_synonym, but values in word_synonym field will be comma delimited.
world_name | world synonym
oval | egg-shaped, rounded
voyage | travel, journey, trip
Thank you
I have a table WORDS.
Word_id | word_name | word synonym
1 | oval | egg-shaped
2 | oval | rounded
3 | voyage | travel
4 | voyage | journey
5 | voyage | trip
In the output I’m looking to have two fields word_name and word_synonym, but values in word_synonym field will be comma delimited.
world_name | world synonym
oval | egg-shaped, rounded
voyage | travel, journey, trip
Thank you