PL/SQL。。 用一个过程将表emp1中的数据插入到emp2中。
PL/SQL。。 用一个过程将表emp1中的数据插入到emp2中。
日期:2011-08-26 22:04:38 人气:1
insert into emp2 (empno,ename,job,sal,comm,deptno,flag,loc,hiredate)
select a.empno,a.ename,a.job,a.sal,
case when a.comm between 0 and 1000 then comm+100 end
case when comm>1000 and comm<2000 then comm+200 end
case when comm>=2000 then co