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
Use:
SELECT NOW() - INTERVAL 15 DAY
to keep the datetime precision.