使用变量将数据插入特定列

时间:2017-03-11 05:37:58

标签: oracle11g

是否可以使用变量将数据插入特定列?当我执行下面的代码时,它会无限期地运行。

set serveroutput on;
declare
maxi number(5);
begin
select max(salary) into maxi from employees;
insert into employees
values
(207,'Soumya','Ghosh','sghosh87','245.322.4322','22-FEB-16','MK_MAN',maxi,NULL,100,20);
dbms_output.put_line('Value of maximum salary is :' ||maxi);
end;

0 个答案:

没有答案