摘要:
--表参照无参光标页信息 --注意:红色就是参数 declare cursor tt(pkeycode temp.keycode%type) is select name,sal from temp where keycode = pkeycode; --定义变量 vname temp.name%t 阅读全文
摘要:
表: 游标 declare cursor tt is select name,sal from temp; vname temp.name%type; vsal temp.sal%type;begin open tt; loop fetch tt into vname,vsal; exit when 阅读全文
摘要:
/*--set serveroutput on;declare mynum number(3) :=0; tip varchar2(10):='结果是 ';begin mynum:=10+100; dbms_output.put_line(tip || mynum);end;/*/ /*declar 阅读全文