I have a data stored in a xml column and need a comma-separated list of child nodes. Using script below, I can only get \"A B C\". Please help me get \"A,B,C\" using xquery
In a full complain XQuery processor you could use just:
(/fd/field[@i=22])[1]/string-join(*,',')