如何在 MySQL 中将时间转换为秒来求和?

mysqlmysqli database

要将时间转换为秒,请使用 TIME_TO_SEC() 方法。让我们首先创建一个表 −

mysql> create table DemoTable
   -> (
   -> ArrivalTime time
   -> );
Query OK, 0 rows affected (0.63 sec)

使用 insert 命令在表中插入一些记录 −

mysql> insert into DemoTable values('04:10:00');
Query OK, 1 row affected (0.15 sec)

mysql> insert into DemoTable values('05:20:50');
Query OK, 1 row affected (0.14 sec)

mysql> insert into DemoTable values('06:40:10');
Query OK, 1 row affected (0.18 sec)

使用 select 语句显示表中的所有记录 −

mysql> select *from DemoTable;

输出

+-------------+
| ArrivalTime |
+-------------+
| 04:10:00    |
| 05:20:50    |
| 06:40:10    |
+-------------+
3 rows in set (0.00 sec)

以下是在 MySQL 中计算时间总和的查询 −

mysql> select SEC_TO_TIME( SUM( TIME_TO_SEC( ArrivalTime) ) ) from DemoTable;

输出

+-------------------------------------------------+
| SEC_TO_TIME( SUM( TIME_TO_SEC( ArrivalTime) ) ) |
+-------------------------------------------------+
| 16:11:00                                        |
+-------------------------------------------------+
1 row in set (0.00 sec)

相关文章