oracle循环赋值,求解~~
declareiint:=1;beginforiin1..10loopdeclareseqint:=JW_T2_SEQ.nextval;insertintojw_t2(i...
declare
i int:=1;
begin
for i in 1..10 loop
declare
seq int:=JW_T2_SEQ.nextval;
insert into jw_t2 (id,name,flag) values (seq,'T2NAME_'+seq,'1');
i:=i+1;
end loop;
end;
这样写错在哪里了? 展开
i int:=1;
begin
for i in 1..10 loop
declare
seq int:=JW_T2_SEQ.nextval;
insert into jw_t2 (id,name,flag) values (seq,'T2NAME_'+seq,'1');
i:=i+1;
end loop;
end;
这样写错在哪里了? 展开
3个回答
展开全部
declare
Seq int;
begin
for i in 1..10 loop
-- declare 这个地方不能再declare了
--- seq int:=JW_T2_SEQ.nextval; 同上面个的 不能再循环体里定义变量。还有在低版本的oracle
-- 中序列生成器的值不能直接引用的,需要用select into语句获取
select JW_T2_SEQ.nextval
into seq
from dual;
insert into jw_t2 (id, name, flag)
values (seq, 'T2NAME_' || to_char(seq), '1'); -- 这个地方错了 oracle的字符连接符是||不是+
-- i:=i+1; 这个地方for循环不用对i进行赋值
end loop;
end;
Seq int;
begin
for i in 1..10 loop
-- declare 这个地方不能再declare了
--- seq int:=JW_T2_SEQ.nextval; 同上面个的 不能再循环体里定义变量。还有在低版本的oracle
-- 中序列生成器的值不能直接引用的,需要用select into语句获取
select JW_T2_SEQ.nextval
into seq
from dual;
insert into jw_t2 (id, name, flag)
values (seq, 'T2NAME_' || to_char(seq), '1'); -- 这个地方错了 oracle的字符连接符是||不是+
-- i:=i+1; 这个地方for循环不用对i进行赋值
end loop;
end;
展开全部
for循环里不好声明变量吧,还有for循环的i是自增的,不用给它加
declare
i int;
seq int;
begin
for i in 1..10 loop
seq:=JW_T2_SEQ.nextval;
insert into jw_t2 (id,name,flag) values (seq,'T2NAME_'+seq,'1');
end loop;
end;
declare
i int;
seq int;
begin
for i in 1..10 loop
seq:=JW_T2_SEQ.nextval;
insert into jw_t2 (id,name,flag) values (seq,'T2NAME_'+seq,'1');
end loop;
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
错误提示是什么,请帖出报错误信息
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |