如何將數字格式化為 MySQL 中的 2 位小數?


你可以使用 MySQL 中的 TRUNCATE() 函式將數字格式化為 2 位小數。語法如下 −

SELECT TRUNCATE(yourColumnName,2) as anyVariableName from yourTableName;

為了理解上述語法,我們首先建立一個表。建立表的查詢如下 −

mysql> create table FormatNumberTwoDecimalPlace
   -> (
   -> Number float
   -> );
Query OK, 0 rows affected (0.59 sec)

使用 insert 命令在表中插入一些記錄。查詢如下 −

mysql> insert into FormatNumberTwoDecimalPlace values(123.456);
Query OK, 1 row affected (0.13 sec)

mysql> insert into FormatNumberTwoDecimalPlace values(1.6789);
Query OK, 1 row affected (0.19 sec)

mysql> insert into FormatNumberTwoDecimalPlace values(12.2);
Query OK, 1 row affected (0.14 sec)

mysql> insert into FormatNumberTwoDecimalPlace values(12356.23145);
Query OK, 1 row affected (0.40 sec)

mysql> insert into FormatNumberTwoDecimalPlace values(12356);
Query OK, 1 row affected (0.14 sec)

mysql> insert into FormatNumberTwoDecimalPlace values(.5678);
Query OK, 1 row affected (0.28 sec)

現在,讓我們使用 select 命令從表中顯示所有記錄。查詢如下 −

mysql> select *from FormatNumberTwoDecimalPlace;

輸出

+---------+
| Number  |
+---------+
| 123.456 |
|  1.6789 |
|    12.2 |
| 12356.2 |
|   12356 |
|  0.5678 |
+---------+
6 rows in set (0.04 sec)

以下是將數字格式化為兩位小數的查詢 −

mysql> select truncate(Number,2) as TwoValueAfterDecimal from
FormatNumberTwoDecimalPlace;

輸出

+----------------------+
| TwoValueAfterDecimal |
+----------------------+
|               123.45 |
|                 1.67 |
|                12.19 |
|             12356.23 |
|             12356.00 |
|                 0.56 |
+----------------------+
6 rows in set (0.00 sec)

更新時間:19-Mar-2023

4K+ 閱讀次數

啟動你的職業生涯

完成課程以獲得認證

立即開始
廣告
© . All rights reserved.