36

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 from the current date?

4

5 に答える 5

57
SELECT DATE(NOW()-INTERVAL 15 DAY)

ユニットのリストについては、http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_date-add を参照してください

于 2010-11-08T10:33:02.070 に答える