SQL取整函式ROUND的用法

2021-08-22 10:59:19 字數 699 閱讀 6022

round   (   numeric_expression   ,   length   [   ,   function   ]   )    

引數  

numeric_expression  

精確數字或近似數字資料型別類別的表示式(bit   資料型別除外)。  

length  

是   numeric_expression   將要四捨五入的精度。length   必須是   tinyint、smallint   或int。當   length   為正數時,numeric_expression   四捨五入為   length   所指定的小數字數。當   length   為負數時,numeric_expression   則按   length   所指定的在小數點的左邊四捨五入。  

function  

是要執行的操作型別。function   必須是   tinyint、smallint   或   int。如果省略   function   或   function   的值為   0(預設),numeric_expression   將四捨五入。當指定   0   以外的值時,將截斷   numeric_expression。  

例:select round(150.75, 0)

151.00

select round(150.75, 0, 1)

150.00 

下取整函式的含義 取整函式解讀

關於 x 以及 的性質與應用摘要 x和x是非常重要的數論函式 其他許多數學分支都要涉及到,在國 內外的數學競賽中也經常出現含有x和 x的問題 這類問題新穎獨特 頗具啟發性。本文主要討論x以及 x的性質,和x以及 x在數學中的應用,以及x 以及x在數學競賽中的應用。取整函式 小數函式 性質 應用 例題...

MS SQL取整函式

兩個整數相除將截斷小數部分 select 3 4,4 3,5 3 結果 0,1,1 返回大於或等於所給數字表示式的最小整數 select ceiling 123.55 ceiling 123.45 ceiling 123.45 ceiling 0.0 結果 124,124,123,0 四捨五入 ro...

Delphi取整函式

floor 和 ceil 是 math unit 裡的函式,使用前要先 uses math。trunc 和 round 是 system unit 裡的函式,預設就可以用。floor 直接往小的取,比如 floor 123.55 124,floor 123.55 123 trunc 直接切下整數,比...