Hello I have a table of 3 fields, the first two are integers and the third is a string, what I need to do is to display a unite string for each two integers (like in GROUP BY). Example: record 1 : 1,1, "a" record 2 : 1,1, "b" record 3 : 1,1, "c" record 4 : 1,2, "d" record 5 : 1,2, "e" record 6 : 1,2, "f" what I want is a query that its outcome will be: record 1: 1,1,"abc" record 2: 1,2,"def" Does anybody have an idea