Adding and multiplying time operators can also be done in reverse order. For example, we add a number of days to a date in the format of Integer + Date.
Copy
Ask AI
select 14 + date '2022-03-15' AS "result";
The result will be the same, which is 14 days after ‘2022-03-15’ is ‘2022-03-29’.