Ok, this query is driving me crazy. I'd like to get it so that there are no duplicate values in the [T1].Data1 column. Here's what I have:
SELECT [T1].DATA1, [T1].DATA2, [T1].DATA3,
[T2].DATA1, [T2].DATA2, [T2].DATA4
FROM [T2] INNER JOIN ([T1] INNER JOIN [T3] ON [T1].DATA3 =...