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
如何根据条件将上述内容更改为使用 group by 进行更新,而不是使用 group by 插入tableB.column2 = tableA.column2
?
请注意,我正在使用SQL SERVER 2008.