摘要:
***************************************** PLSQL流程控制*****************************************if判断declare v_b boolean:=true;begin if v_b then dbms_outpu... 阅读全文
摘要:
表类型变量table语法如下: type 表类型 is table of 类型 index by binary_integer; 表变量名 表类型;类型可以是前面的类型定义,index by binary_integer 子句代表以符号整数为索引,这样访问表类型变量中的数据方法就是“表变量名(索引符... 阅读全文