Sql Server 保留幾位小數的兩種做法

來源:互聯網
上載者:User

問題:

資料庫裡的 float momey 類型,都會精確到多位小數。但有時候 我們不需要那麼精確,例如,只精確到兩位有效數字。

解決:

1. 使用 Round() 函數,如 Round(@num,2)  參數 2 表示 保留兩位有效數字。

2. 更好的方法是使用 Convert(decimal(18,2),@num) 實現轉換,decimal(18,2) 指定要保留的有效數字。

這兩個方法有一點不同:使用 Round() 函數,如果 @num 是常數,如 Round(2.3344,2) 則 會在把有效數字後面的 變為0 ,成 2.3300。但 Convert() 函數就不會。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.