摘要:
1 3.1 自定义记录类型 2 3 declare 4 --定义一个记录类型 5 type customer_type is record( 6 v_cust_name varchar2(20), 7 v_cust_id number(10)); 8 9 --声明自定义记录类型的变量 10 v_cu 阅读全文
摘要:
1 0. 准备工作: 2 --打开oracle自带的输出方法baidbms_output,在执行du以后,使用dbms_output方法可以输出信息 3 set serveroutput on 4 5 hellowrold 程序 6 7 begin 8 dbms_output.put_line('h 阅读全文