Details
-
New Feature
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
None
Description
In Oracle, it is possible to perform addition (and presumably subtraction) operations against SYSDATE with the following syntax:
SELECT SYSDATE + 10 FROM dual;
|
This will add 10 days to the current date.
MariaDB requires the + INTERVAL 10 DAYS syntax, which will require query rewriting in the entire application.