oracle 使用nullif解決除數為零的問題
先來說一下nullif的語法。
NULLIF compares expr1 and expr2. If they are equal, then the function returns null. If they are not equal, then the function returns expr1. You cannot specify the literal NULL for expr1.
If both arguments are numeric data types, then Oracle Database determines the argument with the higher numeric precedence, implicitly converts the other argument to that data type, and returns that data type. If the arguments are not numeric, then they must be of the same data type, or Oracle returns an error.
The NULLIF function is logically equivalent to the following CASE expression:
CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END
如果兩個引數相等,返回null,否則返回第一個。第一個引數不可指定為空。對於非數字型別引數,資料型別必須一致。對於數值資料型別,會隱式的轉化為更高優先順序的資料型別。(這個理解可能有誤,我測試了int,integer,float。但是最終都轉化為number型別)。
一般來說,我們處理“除數為零”的問題會用到decode(當然也可以用case,但是寫起來程式碼更多些)。比如
dividend / decode(divisor, 0, null, divisor)
但是在除數divisor非常複雜的時候,就需要把這一大串程式碼寫兩遍,或者是再套一層view。無論是哪種,都是極其不利於維護的。
1 /
decode((sum(t.val) over(order by t.c) +
nvl(lead(val) over(partition by b order by c), 0)) /
sum(val) over(partition by b order by c),
0,
null,
(sum(t.val) over(order by t.c) +
nvl(lead(val) over(partition by b order by c), 0)) / sum(val)
over(partition by b order by c))
對於這種複雜表示式的除數,每回修改都要改兩遍,很容易出錯。
利用nullif,可以讓除數只寫一次。
因為 decode(divisor, 0, null, divisor)
與 nullif(divisor, 0)
是等效的。
相關文章
- 第九周(11.11-11.17)----結對專案----實現任意數量題目、解決除數為零問題
- oracle 鎖問題的解決Oracle
- jsp無法使用bean的問題 等到解決問題為止!!!!JSBean
- 解決“指定的服務已經標記為刪除”問題
- ORACLE中科學計數法顯示問題的解決Oracle
- oracle壞塊問題的解決Oracle
- oracle 小數點前零丟失的問題<轉>Oracle
- 解決程式(因為數字的問題)沒反應的方法
- 解決oracle net manager不允許使用特殊字元的問題Oracle字元
- VSCode除錯Flutter的問題解決VSCode除錯Flutter
- 解決codeblocks無法除錯的問題BloC除錯
- 解決除錯不能命中斷點的問題除錯斷點
- Oracle 解決鎖表問題Oracle
- oracle字元亂碼問題的解決Oracle字元
- oracle的2G問題解決Oracle
- 【DataBase】:使用Oracle遇到的幾個問題及解決辦法DatabaseOracle
- 解決VisualStudio無法除錯的問題除錯
- java解決數字黑洞問題Java
- 解決「問題」,不要解決問題
- vue 新增axios解決post傳引數為null問題VueiOSNull
- oracle imp字符集問題的解決Oracle
- 解決無法使用VI的問題
- CKEditor使用中遇到的問題解決
- 解決在使用Amoeba遇到的問題
- 解決Oracle序列跳號問題Oracle
- JDBC Oracle executeUpdate 卡死問題解決JDBCOracle
- 解決問題oracle學習篇Oracle
- 解決oracle中not like效率問題Oracle
- 用Oracle表函式解決繫結變數集合問題Oracle函式變數
- 元規劃:使用規劃器解決數學問題
- 使用動態規劃完美解決硬幣找零問題(Python)動態規劃Python
- 怎樣成為解決問題的高手?——關於問題解決的關鍵4步驟
- 全域性替換 ‘/home’ 為 ‘/’ 的問題解決!
- 刪除一個使用者遇到的問題和解決
- 解決sqlserver資料庫單一使用者無法刪除的問題SQLServer資料庫
- [oracle]解決centos 7下oracle的中文亂碼問題OracleCentOS
- 將函式作為引數傳遞解決非同步問題函式非同步
- nginx 直播程式數問題(待解決)Nginx