Examine the description of the EMPLOYEES table:
NLS_DATE_FORMAT is set to DD-MON-YY.
Which query requires explicit data type conversion?
Examine the description of the EMPLOYEES table:
NLS_DATE_FORMAT is set to DD-MON-YY.
Which query requires explicit data type conversion?
The query that requires explicit data type conversion is: SELECT join_date FROM employees WHERE join_date > '10-02-2018';. In this query, the date format '10-02-2018' does not match the NLS_DATE_FORMAT which is set to DD-MON-YY. The correct format should be '10-FEB-18'. Therefore, to execute this query correctly, the string '10-02-2018' needs to be explicitly converted to a date using the TO_DATE() function in the correct format.
A is the correct answer
https://www.examtopics.com/discussions/oracle/view/13453-exam-1z0-071-topic-1-question-296-discussion/
All executed without error.
D is executed without conversion. A is the correct