我只是尝试使用当前日期时间插入两行,然后计算自该日期以来经过的时间。 以下是两次插入后我的表中的行,并使用NOW()函数设置时间戳:
mysql> select * from pendingActivations;
+--------+------------+---------------------+
| userId | code | timestamp |
+--------+------------+---------------------+
| 2 | aaa | 2010-08-23 17:04:02 |
| 2345 | alkfjkla23 | 2010-08-23 16:59:53 |
+--------+------------+---------------------+
插入userId等于2的行后几分钟,我执行了以下命令,我希望它能从每个行的时间戳中获取经过的时间。结果如下:
mysql> select userId, code, timestamp, NOW() - timestamp as elapsedSeconds from pendingActivations;
+--------+------------+---------------------+----------------+
| userId | code | timestamp | elapsedSeconds |
+--------+------------+---------------------+----------------+
| 2 | aaa | 2010-08-23 17:04:02 | 136.000000 |
| 2345 | alkfjkla23 | 2010-08-23 16:59:53 | 4585.000000 |
+--------+------------+---------------------+----------------+
我想知道第二行是如何具有那个巨大的elapsedSeconds值,它表示正好经过了1小时16分25秒,虽然很容易看出它已经过了大约5分钟。
这是表结构:
mysql> describe pendingActivations;
+-----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-----------+-------------+------+-----+---------+-------+
| userId | int(11) | NO | PRI | NULL | |
| code | varchar(32) | NO | UNI | NULL | |
| timestamp | datetime | NO | | NULL | |
+-----------+-------------+------+-----+---------+-------+
任何想法和/或解释?
答案 0 :(得分:3)
我无法解释这个问题,但我怀疑-
操作会以意外的格式返回结果(可能包括微秒或十分之一?)
我会使用TIMEDIFF()
。
返回
expr1
-expr2
表示为时间值。 expr1和expr2是时间或日期和时间表达式,但两者必须属于同一类型。