str1:='alter table '|| tablename||' add t number(38)';
execute immediate str1;

解决方案 »

  1.   

    execute immediate 'update '||v_param1||' set pui_howold='||v_howold||
    'where billno='||v_billno
      

  2.   

    execute immediate 'update '||v_param1||' set pui_howold='||v_howold||' where billno='||v_billno;
      

  3.   

    execute immediate 'update '||v_param1||' set pui_howold='||v_howold||' where billno='||v_billno;
      

  4.   

    execute immediate 'update '||v_param1||' set pui_howold='||v_howold||
    'where billno='||v_billno
    变量都应该||连接