How to Subtract Time in MySQL

后端 未结 4 1898
孤街浪徒
孤街浪徒 2020-12-16 10:05

How can I subtract time in MySQL? For example, today is 16 March; I want to subtract 15 days to reach 1 March. Are there any methods that can be used to subtract 15 days fro

4条回答
  •  执念已碎
    2020-12-16 10:28

    SELECT DATE(NOW()-INTERVAL 15 DAY)
    

    For a list of units see http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_date-add

提交回复
热议问题