当前位置:Gxlcms > 数据库问题 > Oracle变量的定义、赋值及使用

Oracle变量的定义、赋值及使用

时间:2021-07-01 10:21:17 帮助过:27人阅读

truncate table t4;  --清空表里的数据
declare
op nvarchar2(100);
i int ;
j int :=100;
begin
  while j<200 loop
  select nvl(max(id),0) +1 into i from t4;
  insert into t4 values(i,j,‘test‘||i);
  dbms_output.put_line(i);
  j:=j+1;
  end loop;
end;
-- select * from t4;

  

  

 

Oracle变量的定义、赋值及使用

标签:pre   time   异常   定义数据   绑定   strong   输入   长度   解锁   

人气教程排行