I currently have a SQL query that returns a number of fields. I need one f the fields to be effectively a sub query sub that.
The Problem in detail:
With MSSQL you can do something like this:
declare @result varchar(500) set @result = '' select @result = @result + ModuleValue + ', ' from TableX where ModuleId = @ModuleId