Hi I have a string dates like below and I want to change it into date data.
2 format of data is present below.
1. yyyy-mm-dd
2. dd/mm/yyyy
| Date |
| 2020-01-17 |
| 7/07/2022 |
| 2021-02-16 |
| 15/03/2023 |
Now 2 changes we have to do in the above input
1. Change String to date (Data Type)
2. Change the format to yyyy-mm-dd
Output:
| Date |
| 2020-01-17 |
| 2022-07-07 |
| 2021-02-16 |
| 2023-03-15 |