W
William Ryan
Instead of distinct you can use a Having Clause with
Group BY
Select Col1, Col2, Col3 From Sometable
Group by Col1 Having COunt(Col1) = 1
I think this should work for you.
Good Luck,
Bill
(e-mail address removed)
Group BY
Select Col1, Col2, Col3 From Sometable
Group by Col1 Having COunt(Col1) = 1
I think this should work for you.
Good Luck,
Bill
(e-mail address removed)