insert into tableA (column1)
select min(tableC.column1)
from tableB
inner join tableC on (tableC.coumn2 = tableB.column1
and tableB.column2 = tableA.column2)
group by tableA.column2
グループを挿入するのではなく、グループを挿入するのではなく、上記のように更新する方法を教えてください。tableB.column2 = tableA.column2
?私はSQL SERVER 2008.
グループによるSQL Serverの更新
が重複する可能性(http://stackoverflow.com/questions/2853403/sql-server-update-group-by) –