Collections:
Decrementing a Date by 1 in MySQL
How To Decrement Dates by 1 in MySQL?
✍: FYIcenter.com
If you have a date, and you want to decrement it by 1 day, you can use the DATE_SUB(date, INTERVAL 1 DAY) function. You can also use the date interval subtraction operation as "date - INTERVAL 1 DAY". The tutorial exercise below gives you some good examples:
SELECT DATE_SUB(DATE('1997-03-01'), INTERVAL 1 DAY)
FROM DUAL;
1997-02-28
SELECT DATE('1997-01-31') - INTERVAL 1 DAY FROM DUAL;
1997-02-28
⇒ Calculating the Difference between Two Dates in MySQL
⇐ Incrementing a Date by 1 in MySQL
2017-12-26, 3336🔥, 0💬
Popular Posts:
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
How To Generate Random Numbers with the RAND() Function in SQL Server Transact-SQL? Random numbers a...
What Is Transport Network Substrate (TNS) in Oracle? TNS, Transport Network Substrate, is a foundati...
How To Use GO Command in "sqlcmd" in SQL Server? "sqlcmd" is a command line client application to ru...