Oracle Database SQL — Question 84

The ORDERS table has a column ORDER_DATE of data type DATE.

The default display format for a date is DD-MON-RR.

Which two WHERE conditions demonstrate the correct usage of conversion functions? (Choose two.)

Answer options

Correct answer: A, E

Explanation

Option A is correct because it correctly converts a string date to a DATE type using TO_DATE. Option E is valid as it converts the DATE type to a string format for comparison. Options B and D incorrectly attempt to compare DATE types with strings, while C mixes types in an IN clause, which is not valid.