2010-10-09 89 views

回答

7

round功能,你可以試試這個

select round(4.584406, 1, 1) 

輸出將是

4.5 

關鍵是第三個參數

ROUND (numeric_expression , length [ ,function ]) 

功能

Is the type of operation to perform. function must be tinyint, 

smallint或int。當函數 省略或值爲0(默認值)時, 數值表達式已舍入。 如果指定了 以外的值,則會截斷 numeric_expression。

相關問題