jbfraleigh
Registered User.
- Local time
- Today, 11:14
- Joined
- Aug 8, 2000
- Messages
- 22
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 = [T3].DATA1)
ON [T2].DATA5 = [T1].DATA4
ORDER BY [T1].DATA1;
Hmmm, It's hard enough for me to read... Hopefully someone out there is good at this stuff. The problem that I'm having is that I'm getting duplicate values for [T1].DATA1... I need to get rid of these.
Any help is greatly appreciated.
Thanks!
SELECT [T1].DATA1, [T1].DATA2, [T1].DATA3,
[T2].DATA1, [T2].DATA2, [T2].DATA4
FROM [T2] INNER JOIN ([T1] INNER JOIN [T3] ON [T1].DATA3 = [T3].DATA1)
ON [T2].DATA5 = [T1].DATA4
ORDER BY [T1].DATA1;
Hmmm, It's hard enough for me to read... Hopefully someone out there is good at this stuff. The problem that I'm having is that I'm getting duplicate values for [T1].DATA1... I need to get rid of these.
Any help is greatly appreciated.
Thanks!