Which two queries execute successfully? (Choose two.)
Which two queries execute successfully? (Choose two.)
The query using SYSTIMESTAMP + INTERVAL '1' DAY is valid because it adds a day interval to the current timestamp, which is an allowed operation. Also, INTERVAL '1' DAY + INTERVAL '1' MONTH is valid because it involves adding two interval values together, which is a permissible operation in SQL. Other queries involve invalid operations such as subtracting dates from intervals or multiplying dates by intervals, which are not supported.
AB is correct
Checked in Oracle