Prova questo (non l'ho testato):
with t2 as (
select ColA2, ColB2, count(*) cnt
from TableTwo
group by ColA2, ColB2
)
select t1.Id1,
( select max(cnt) MaxDup
from t2
where t2.ColA2=t1.Id1)
from TableOne t1
Prova questo (non l'ho testato):
with t2 as (
select ColA2, ColB2, count(*) cnt
from TableTwo
group by ColA2, ColB2
)
select t1.Id1,
( select max(cnt) MaxDup
from t2
where t2.ColA2=t1.Id1)
from TableOne t1
Come ottenere l'elenco delle colonne con vincoli univoci nel database di SQL Server - Tutorial SQL Server / TSQL Parte 98
Quanto sono costose le conversioni implicite lato colonna?
Conversione di DateTime in formato AAAA-MM-GG in SQL Server
Sei ordinato? Suggerimenti sull'ordinamento delle finestre T-SQL