1.round() 函數是四捨五入用,第一個參數是我們要被操作的資料,第二個參數是設定我們四捨五入之後小數點後顯示幾位。
2.numeric 函數的2個參數,第一個表示資料長度,第二個參數表示小數點後位元。
例如:
select cast(round(12.5,2) as numeric(5,2)) 結果:12.50
select cast(round(12.555,2) as numeric(5,2)) 結果:12.56
select cast(round(122.5255,2) as numeric(5,2)) 結果:122.53
select cast(round(1222.5255,2) as numeric(5,2)) 結果:報錯了! 原因是:1222.5255,整數位是4,小數位是2,加起來4+2=6,超出了numeric設定的5位,所以為了保險,可以增減numeric的參數,例如numeric(20,2)。
此文系轉載後作一調整,轉載自:http://blog.csdn.net/caoyuanlang_11/article/details/5410833
1.round() 函數是四捨五入用,第一個參數是我們要被操作的資料,第二個參數是設定我們四捨五入之後小數點後顯示幾位。
2.numeric 函數的2個參數,第一個表示資料長度,第二個參數表示小數點後位元。
例如:
select cast(round(12.5,2) as numeric(5,2)) 結果:12.50
select cast(round(12.555,2) as numeric(5,2)) 結果:12.56
select cast(round(122.5255,2) as numeric(5,2)) 結果:122.53
select cast(round(1222.5255,2) as numeric(5,2)) 結果:報錯了! 原因是:1222.5255,整數位是4,小數位是2,加起來4+2=6,超出了numeric設定的5位,所以為了保險,可以增減numeric的參數,例如numeric(20,2)。
此文系轉載後作一調整,轉載自:http://blog.csdn.net/caoyuanlang_11/article/details/5410833