在PL/SQL里面直接写就行了。begin
  insert into .... ;
  insert into .... ;
  ....
end;
/

解决方案 »

  1.   

    PL/SQL里面直接写 ,就可以。最后 commit;ok
      

  2.   

    begin
      insert into .... ;
      insert into .... ;
      ....  commit work;end;
      

  3.   

    明白了吗?
    用“;”结束
    在SQL*Plus中执行SQL语句,可用“/”
    比如说:
    insert Into Your(ss,ii,ss,tt,ee,rr)
       values(11,22,33,44,55)
    /
      

  4.   

    先写一个脚本文件
    然后再在pl/sql中利用@命令运行例如
    demo.sql
    begin
      select count(*) from emp;
      
      update emp
      set sal=1000
      where sal<1000;
      
      delete from dept  where deptno<>10;  commit;
    end
    ///运行脚本文件
    @e:\demo.sql