编写一个过程,可以输入一个雇员名,如果该雇员的工资低于2000,就
给该员工工资增加10%。create or replace procedure sp_pro6(spName varchar2) is
--定义
v_sal emp.sal%type;
begin
    --执行
    select sal into v_sal from emp where ename=spName;
    --判断
    if v_sal<2000 then
        update emp set sal=sal+sal*10% where ename=spName;
    end if;
end;
我从网上找了好多,都是上面的写法,可是写完执行,老是报错,无效字符,这是怎么回事,我是在scott用户下执行的