Hay muchas versiones sugeridas aquí, pero creo que se me ocurrió una nueva.
select *
from @T as T1
where exists (select *
from @T as T2
where
T1.ID <> T2.ID and
T1.C1 = T2.C1 and
T1.C2 = T2.C2 and
T1.C3 = T2.C3)