存储过程备忘1 存储过程入门:-本例的作用:将一个变量赋值,再输出到屏幕(红字为必须结构)create or replace procedure TEST is v_details number(8); begin v_details :=1; dbms_output.put_line(stn是:|v_details);exception when others thendbms_output.put_line(其他异常出现!);end TEST;2 两张汇总表的存储过程create or replace procedure WLRC_T_SUM is begin-以下过程为删除两张汇总表中 当天之前已做过的统计数据delete from t_bnds_in_out_sum where to_char(s_date,yyyy-mm-dd) = to_char(sysdate,yyyy-mm-dd); delete from t_bnds_org_su