Record

编程入门 行业动态 更新时间:2024-10-11 21:21:57

<a href=https://www.elefans.com/category/jswz/34/1674435.html style=Record"/>

Record

随手记录一下...[@more@]declare
v_id int;
v_id1 v_id%type; --%type不仅可以使用column名,也可以使用已经定义好的变量
cursor c1 is select * from t for update;
v_t c1%rowtype; --%rowtype不仅可以使用表名,也可以使用定义过的cursor
begin
for i in c1 loop
if mod(i.id,2)=0 then
update t set row=i where current of c1;
else
insert into t values i;
end if ;
end loop;
commit;
end ;

来自 “ ITPUB博客 ” ,链接:/,如需转载,请注明出处,否则将追究法律责任。

转载于:/

更多推荐

Record

本文发布于:2024-02-12 12:05:43,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1687723.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Record

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!