摘要:
```plsql select dbms_random.value from dual; --产生一个0-1的随机数 select dbms_random.value(100,0) from dual;--产生一个0-100之间的小数 select dbms_random.normal from d 阅读全文
摘要:
集合-Test1 bulk collect into 批量插入,可用limit 限制插入行数 type ... is table of DataType Index by binary_Integer 其中 index by binary_integer 在定义schema级 type 时没有使用, 阅读全文
摘要:
动态数组语法: type <类型名> is table of 类型 index by binary_integer; <变量名> 类型名 示例: declare type jo_arr_type is table of pljson; --jo_arr_type 为表(数组)类型 jo_arr jo 阅读全文