Is there an SWQL equivalent to MS SQL's String_AGG function? that takes a list of items a combines it into a delimited string.
Here is a sample SQL that I would like to do as a single SWQL statement.
SELECT top 10
Nodes.Caption,
Nodes.NodeID,
( SELECT String_AGG( '['+c.Name+']', ',' ) as GroupList FROM [dbo].[ContainerMemberSnapshots] cmss Left Join [dbo].[Containers] c on c.ContainerID = cmss.ContainerID Where cmss.EntityID = Nodes.NodeID and c.Owner = 'Core' and cmss.EntityType = 'Orion.Nodes' ) as Groups
FROM Nodes
This gets me a list of groups as a string list that looks like [group1],[group2],[group3], and I would prefer to do this in SWQL.