Answers for "get the value of previous date and the before previous in mysql"

SQL
1

mysql previous year

SELECT * FROM my_table
WHERE YEAR(my_date) = YEAR(DATE_SUB(CURDATE(), INTERVAL 1 YEAR));
Posted by: Guest on May-16-2021

Code answers related to "get the value of previous date and the before previous in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language