Hi All,
I need to produce a comma seperated result in a subquery that way reducing the record count in the main query, how do I do that.
example:
SELECT field1, field2, field3
FROM TABLEA
because of field3, i end up with multiple records. But if i concatenate the values with commas of field3 into one subquery, then i will end up with unique records
thanks.