Oracle Database SQL — Question 123

The INVOICE table has a QTY_SOLD column of data type NUMBER and an INVOICE_DATE column of data type DATE.
NLS_DATE_FORMAT is set to DD-MON-RR.
Which two are true about data type conversions involving these columns in query expressions? (Choose two.)

Answer options

Correct answer: A, B

Explanation

Option A is correct because the string '15-MAR-2019' can be implicitly converted to a DATE. Option B is also correct since the strings '101' and '110' can be implicitly converted to NUMBER. The other options require explicit conversion due to discrepancies between data types.