一.异常 1.处理异常 (1)除数不为0 declare b number; begin b:; exception when zero_divide then dbms_output.put_line('除数不能为0'); end; DBMS输出:除数不能为0. (2)找不到参数 declare vename ); begin ; --此处会报no date found异常 exception when no_date_found then dbms_output.put_line('未找到任…