We are attempting to build a query for an SQL override grid field that could return more than one result, i.e. query Item FullName to determine associated open sales order line items, returning the sales order refnumber. Problem is, all we can do currently is display the most recent, or MAX sales order refnumber. What I would like to do is to present a comma-separated list of values. In MySQL, this would be accomplished using GROUP_CONCAT to present a list of comma-separated values.
How can this be accomplished in Method, if at all?