我想按顺序向表中添加和更新一些列(P_1、P_2、P_3...)。要更新 P_2,我需要在上一步中更新 P_1。有没有办法编写一个可以在SSMS中执行此操作的循环
for i in (1 to 10)
alter table tab1 add P_i
if(i>1)
update tab1 set P_i = P_(i-1)*2+[blah blah]
else
update tab1 set p_i = [blah blah]
end
end