我在我的数据库中有日期时间字段,如2023-01-18,我想从当前日期中减去此字段。
yqkkidmi1#
使用TIMESTAMPDIFF计算差值:
TIMESTAMPDIFF
TIMESTAMPDIFF(MINUTE, localtimestamp, columnname) AS difference
localtimestamp提供当前日期和时间(不含时区信息)。如果需要时区,也可以使用current_timestamp。https://learnsql.com/cookbook/how-to-calculate-the-difference-between-two-timestamps-in-mysql/
localtimestamp
current_timestamp
1条答案
按热度按时间yqkkidmi1#
使用
TIMESTAMPDIFF
计算差值:localtimestamp
提供当前日期和时间(不含时区信息)。如果需要时区,也可以使用current_timestamp
。https://learnsql.com/cookbook/how-to-calculate-the-difference-between-two-timestamps-in-mysql/