將秒數舍入到 MySQL 中最近的半分鐘?


若要將秒數舍入到最近的半分鐘,可使用 CEILING()。我們首先建立一張表 −

mysql> create table DemoTable (secondValue int);
Query OK, 0 rows affected (0.64 sec)

示例

使用插入命令在表中插入一些記錄 −

mysql> insert into DemoTable values(27);
Query OK, 1 row affected (0.24 sec)
mysql> insert into DemoTable values(56);
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values(118);
Query OK, 1 row affected (0.20 sec)

使用 select 語句顯示錶中的所有記錄 −

mysql> select *from DemoTable;

輸出

+-------------+
| secondValue |
+-------------+
| 27          |
| 56          |
| 118         |
+-------------+
3 rows in set (0.00 sec)

以下是進行舍入的查詢 −

mysql> select secondValue, CEILING(secondValue / 30) / 2 AS ApproxMinutes from DemoTable;

輸出

+-------------+---------------+
| secondValue | ApproxMinutes |
+-------------+---------------+
| 27          | 0.5000        |
| 56          | 1.0000        |
| 118         | 2.0000        |
+-------------+---------------+
3 rows in set (0.00 sec)

更新於: 02-Jul-2020

261 次瀏覽

開啟您的職業

完成課程,獲得認證

開始
廣告
© . All rights reserved.