커서를 써서 select 해온 컬럼을 단순 insert 하는건데
mssql에서 할려니 잘안되네요
예를들어
procedure Test is
cursor c1 is
select col1, col2, col3
from table_A;
c1_rec c1%rowtype;
begin
open c1;
loop
fetch c1 into c1_rec;
exit when c1%notfound;
if c1_rec.col1 = 'A' then
begin
insert into table_B( col5,col6,col7)
values ( c1_rec.col1,c1_rec.col2,c1_rec.col3);
end;
end if;
end loop;
close c1;
end;
이 프로시저를 mssql에서 돌게 하려면 어떻게 해야하나요?