Oracle 獲取整數方式程式碼整理

我就是曹總發表於2019-05-11


SELECT ROUND( number, [ decimal_places ] ) FROM DUAL


說明:

number : 將要處理的數值

decimal_places : 四捨五入,小數取幾位,不填預設為0 

Sample :

select round(123.456) from dual;              結果: 123

select round(123.456, 0) from dual;          結果: 123

select round(123.456, 1) from dual;          結果: 123.5

select round(123.456, 2) from dual;          結果:123.46

select round(123.456, 3) from dual;          結果: 123.456

select round(-123.456, 2) from dual;         結果:-123.46

龐順龍最後編輯於:4年前

內容均為作者獨立觀點,不代表八零IT人立場,如涉及侵權,請及時告知。

相關文章