---关于oracle里面的循环 -- while循环 CREATE OR REPLACE function while_test(x in&n
---关于oracle里面的循环
-- while循环
CREATE OR REPLACE
function while_test(x in number,y in number)
return number is
z number;
totalCount number;
begin
z:=x;
totalCount:=0;
while z<y+1
loop
delete USERTEMP where id=z;
z:=z+1;
totalCount:=totalCount+1;
end loop;
return totalCount; --结果为6
end;
--for 循环
CREATE OR REPLACE
function for_test(x in number)
return number is
z number;
begin
z:=0;
for v_sum in 1..50
loop
z:=z+2;
end loop;
return z;
end;
--单循环
CREATE OR REPLACE
function perfunctory_test(x in number)
return number
is z number;
begin
loop
z:=x*x; --实现函数(x)的平方
exit;
end loop;
return z;
end;
--- 注意事项 :Mysql 里面的循环和Oracle里面的不一样,声明,赋值都不一样。这里吃了大亏,自己一直在写mysql的语句,所以运行不成功。
-- 【Mysql】的while循环语句
declare @i int
set @i=1
while @i<10
begin
insert into USERTEMP(id,name,CARDTYPE,CARDNO,status) VALUES(@i,'李','学生','01',2);
set @i=@i+1
end
--结束END--
本文标题: oracel在sql中的循环
本文链接: https://lsjlt.com/news/42233.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0