Which three queries execute successfully? (Choose three.)
Which three queries execute successfully? (Choose three.)
The query in option B is valid because subtracting a date from SYSDATE and then subtracting 1 is a valid operation. Option D is also correct because it similarly involves valid date arithmetic. Option E is correct because dividing the result of date subtraction by 1 is valid. However, options A, C, and F involve invalid operations such as subtracting and dividing SYSDATE by non-date values directly, which would result in errors.
Tried all the alternatives
I am assuming it is supposed to be to_date
it worked in 19c exactly like below syntax SELECT SYSDATE - DATE '2019-01-01' - 1 FROM DUAL