使用 MySQL 获取不同列中值的时间差
为此,你可以使用 time_format() 和 time_diff()。要查找时间差,你需要使用 time_diff() 方法。我们首先创建一个表 -
mysql> create table DemoTable624 (PunchIn datetime,PunchOut datetime); Query OK, 0 rows affected (0.60 sec)
使用 insert 命令在表中插入一些记录 -
mysql> insert into DemoTable624 values('2019-07-14 12:10:00', '2019-07-14 12:50:00'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable624 values('2019-07-14 11:00:00', '2019-07-14 11:30:00'); Query OK, 1 row affected (0.34 sec)
使用 select 语句从表中显示所有记录 -
mysql> select *from DemoTable624;
这将生成以下输出 -
+---------------------+---------------------+ | PunchIn | PunchOut | +---------------------+---------------------+ | 2019-07-14 12:10:00 | 2019-07-14 12:50:00 | | 2019-07-14 11:00:00 | 2019-07-14 11:30:00 | +---------------------+---------------------+ 2 rows in set (0.00 sec)
以下是获取时间差的查询 -
mysql> select time_format(timediff(PunchIn,PunchOut),'%H hrs, %i min.') from DemoTable624;
这将生成以下输出 -
+-----------------------------------------------------------+ | time_format(timediff(PunchIn,PunchOut),'%H hrs, %i min.') | +-----------------------------------------------------------+ | -00 hrs, 40 min. | | -00 hrs, 30 min. | +-----------------------------------------------------------+ 2 rows in set (0.00 sec)
广告