編寫一個PL/SQL程序塊,從emp表中對名字以"A"或"S"開始的全部僱員按他們基本薪水的10%給他們加薪。

declare cursor s2 is select * from emp where (ename like'A%' or ename like 'S%'); v_res emp%rowtype;  begin    open s2;    fetch s2 into v_res;    loop     exit when s2% notfound;     update emp set s
相關文章
相關標籤/搜索