I have a table with a column which has data in week_month_year format
Table 1
1_1_2014
1_2_2014
2_3_2015
5_7_2019
XXXXXXX
YYYYYYY
I want to replace the values in the table with W1 and month name, like
W1_Jan_2014
W1_Feb_2014
xxxxxxx
yyyyyyy
Week numbers go from 1-7 and I have years from 2014-2020.How do I solve this? Another constraint is I have other values as well in this column which should remain as it is if the data is not like this.