o change the date format from "yyyy-mm-ddThh:mm:ss.0000" to "yyyy-mm-dd", you can use a Derived Column transformation in your Data Flow in Azure Data Factory.
Assuming the input date is stored in a column called "inputDate", you can use the following expression in the Derived Column transformation:
substring(inputDate, 1, 10)
This expression extracts the first 10 characters from the inputDate column, which corresponds to the "yyyy-mm-dd" part of the date string.
Once you've added the Derived Column transformation with this expression, you can map the output column to the target column in your dedicated table that stores dates in the "yyyy-mm-dd" format.
I hope this helps