Posts by Giovanni Sanchés • 1 point
1 post
-
0
votes1
answer264
viewsA: Backdate in mysql
You can use the Sysdate function next to the interval for example: SELECT (SYSDATE() - INTERVAL 3 MONTH) FROM DUAL or leave the fixed number of days: SELECT (SYSDATE() - 90) FROM DUAL…