I tried the following SQL query.
(我尝试了以下SQL查询。)
select start_time, end_time, end_time-start_time from orders
This printed the following output.
(这打印了以下输出。)
start_time |end_time |end_time-start_time
...
2019-11-29 15:55:54 | 2019-12-01 15:59:00 | 72000346
...
I have no idea what the result means.
(我不知道结果意味着什么。)
I know that we can use TIMESTAMPDIFF to calculate difference between two datetime. (我知道我们可以使用TIMESTAMPDIFF来计算两个日期时间之间的差异。)
Does anyone know what the result means? (有人知道结果意味着什么吗?)
ask by Ma Long translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…