Oracle將數值轉化成負數的寫法

feelpurple發表於2016-03-18
最近使用PL SQL在寫報表儲存過程的時候,需求人員提出要將提現金額寫成負值的形式
最初的寫法如下:

--計算提現金額
update elmp_daily_fund
   set WITHDRAW_AMOUNT =
       (select to_number('-' || (sum(l.amount) / 100))
          from mis.ELMP_REPORT_CHARCASHFILL@db_mis l
         where l.countdate >= begin_date
           and l.countdate < begin_date + 1
           and l.reporttype = 1
           and status = 0)
 where REPORT_DATE = begin_date;

報表JOB執行了幾天,出現報錯,ORA-01722 invalid number

查詢了一下論壇,發現有朋友問同樣的問題
解決方法是直接使用 - 和 abs 函式,更改後的SQL如下:

--計算提現金額
update elmp_daily_fund
   set WITHDRAW_AMOUNT =
       (select -abs(sum(l.amount) / 100)
          from mis.ELMP_REPORT_CHARCASHFILL@db_mis l
         where l.countdate >= begin_date
           and l.countdate < begin_date + 1
           and l.reporttype = 1
           and status = 0)
 where REPORT_DATE = begin_date;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26506993/viewspace-2059684/,如需轉載,請註明出處,否則將追究法律責任。

相關文章