Input:
Days table:+------------+| day |+------------+|2022-04-12||2021-08-09||2020-06-26|+------------+Output:
+-------------------------+| day |+-------------------------+| Tuesday, April 12,2022|| Monday, August 9,2021|| Friday, June 26,2020|+-------------------------+Explanation: Please note that the output iscase-sensitive.
We need to convert a date to a string in the format “day_name, month_name day, year”. SQL and Pandas both provide date formatting functions to achieve this.