您好,登錄后才能下訂單哦!
MySQL中支持浮點數的類型有FLOAT
、DOUBLE
和DECIMAL
類型,DECIMAL 類型不同于FLOAT和DOUBLE,DECIMAL 實際是以串存放的。DECIMAL 可能的最大取值范圍與DOUBLE 一樣,但是其有效的取值范圍由M 和D 的值決定。如果改變M 而固定D,則其取值范圍將隨M 的變大而變大。
對于精度比較高的東西,比如money,建議使用decimal類型,不要考慮float,double, 因為他們容易產生誤差,numeric和decimal同義,numeric將自動轉成decimal。
DECIMAL從MySQL 5.1引入,列的聲明語法是DECIMAL(M,D)。在MySQL 5.1中,參量的取值范圍如下:
說明:float占4個字節,double占8個字節,decimail(M,D)占M+2個字節。
如DECIMAL(5,2) 的最大值為9999.99,因為有7 個字節可用。
所以M 與D 是影響DECIMAL(M, D) 取值范圍的關鍵
類型說明 取值范圍(MySQL < 3.23) 取值范圍(MySQL >= 3.23) DECIMAL(4,1) -9.9 到 99.9 -999.9 到 9999.9 DECIMAL(5,1) -99.9 到 999.9 -9999.9 到 99999.9 DECIMAL(6,1) -999.9 到 9999.9 -99999.9 到 999999.9 DECIMAL(6,2) -99.99 到 999.99 -9999.99 到 99999.99 DECIMAL(6,3) -9.999 到 99.999 -999.999 到 9999.999
給定的DECIMAL 類型的取值范圍取決于MySQL數據類型的版本。對于MySQL3.23 以前的版本,DECIMAL(M, D) 列的每個值占用M 字節,而符號(如果需要)和小數點包括在M 字節中。因此,類型為DECIMAL(5, 2) 的列,其取值范圍為-9.99 到99.99,因為它們覆蓋了所有可能的5 個字符的值。
# 在MySQL 3.23 及以后的版本中,DECIMAL(M, D) 的取值范圍等于早期版本中的DECIMAL(M + 2, D) 的取值范圍。
結論:
JAVA+Mysql+JPA實踐
msyql-Decimal對應java-BigDecimal
數據表定義
@Entity public class TestEntity extends Model { @Column(nullable = true, columnDefinition = "decimal(11,2)") public BigDecimal price; }
測試結果及說明
/** * 1.mysql-Decimal(9+2,2)對應java-BigDecimal * 2.整數部分9位,小數部分2位,小數四舍五入 * 3.整除部分超過限定位數9位,報錯. * 4.小數部分超過位數四舍五入截斷,保留2位小數 */ TestEntity entity = new TestEntity(); entity.price = new BigDecimal(Double.toString(123456789.12d)); entity.save(); // 整數超過9位報錯 /* entity = new TestEntity(); entity.price = new BigDecimal(Double.toString(1234567891.123d)); entity.save(); */ entity = new TestEntity(); entity.price = new BigDecimal(Double.toString(123456789.123d)); entity.save(); entity = new TestEntity(); entity.price = new BigDecimal(Double.toString(123456789.126d)); entity.save(); entity = new TestEntity(); entity.price = new BigDecimal(Double.toString(123456789d)); entity.save(); entity = new TestEntity(); entity.price = new BigDecimal(Double.toString(123456.2355)); entity.save(); entity = new TestEntity(); entity.price = new BigDecimal(Double.toString(123456.2356)); entity.save(); entity = TestEntity.find("price = ?", new BigDecimal(Double.toString(123456789.12d))).first(); System.out.println("查詢結果:" + entity.id + ", " + entity.price);
插入結果
1 123456789.12
2 123456789.12
3 123456789.13
4 123456789.00
5 123456.24
6 123456.24
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。