码迷,mamicode.com
首页 > 数据库 > 详细

PL/SQL异常处理

时间:2018-10-04 23:52:33      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:div   处理   and   异常   技术   ber   inf   number   .com   

declare
  v_price number(10,2);--单价
  v_usenum number;--水费字数
  v_usenum2 number;--使用吨数
begin
  v_price:=2.45;--每吨单价
 -- v_usenum := 10000000;
 select usenum into v_usenum from t_account t where t.id=2 and t.year=2012 and t.month=01;
  v_usenum2 := round(v_usenum/1000,2);
  DBMS_OUTPUT.put_line(字数为:||v_usenum||金额为:||(v_price*v_usenum2));
  exception
   when no_data_found then
    DBMS_OUTPUT.put_line(没有找到账务数据);
end;

技术分享图片

 

PL/SQL异常处理

标签:div   处理   and   异常   技术   ber   inf   number   .com   

原文地址:https://www.cnblogs.com/niwotaxuexiba/p/9743708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!