加分号就行了update table set address='b' where name='b';
update table set address='c' where name='c';

解决方案 »

  1.   

    每一条SQL的结尾要用"/"或者";"结束。
      

  2.   

    begin
    update table set address='b' where name='b';
    update table set address='c' where name='c';
    end;
      

  3.   

    SQL> begin
      2  update table set address='b' where name='b';
      3  update table set address='c' where name='c';
      4  end;
      5  /PL/SQL 过程已成功完成。SQL> 这是在SQL PLUS中写的
      

  4.   

    谢谢 ORARichard(没钱的日子......)