I am getting data from a single column in a datatable. I need it to be combine to a string separated by comma or any delimiter.
The end result should be a string instead of the tabular data.
let words = datatable(word:string, code:string) [
"apple","A",
"orange","B",
"grapes","C"
];
words | project word;
I need to combine the result combined into a string with a delimiter.
Result should be : "apple,orange,grapes"