@denis
You can convert a date string to a date data type in Oracle using the TO_DATE function.
Syntax: TO_DATE(date_string, format_mask)
Example: SELECT TO_DATE('2021-10-15', 'YYYY-MM-DD') AS converted_date FROM dual;
This will convert the date string '2021-10-15' to a date data type in Oracle.