Hello Team,
I have the following data in a column 'Fruits'
| Fruits |
| Oranges, Oranges |
| Apple,Apple,Apple |
| Kiwi |
| Grapes,Grapes, Grapes |
This data is part of a large table and this is from the end outcome.
Is there a way I can retain just one value for each row in the column.
Expected outcome is :
| Fruits |
| Oranges |
| Apple |
| Kiwi |
| Grapes |
Thanks