Consider the below table (name = keywords):
id keyword
-----------
1 apple mango
2 orange apple
3 fruit beans
I am searching for a query which is capable of producing result like below:
apple mango orange apple fruit beans
The query should just concatenate each row result and should just return a long string of concatenated result.
Try this :::