I have a column with data like
And they want me to convert it all to the mm/yyyy format. The field is a varchar field. So, they want it to become
Is there some trick to this that I can't find, or am I going to have to do a lot of updating and replacing?
wb
Code:
02/17/2005
Apr 1 2006 12:00AM
Apr 1 2006 12:00AM
Mar 1 1996 12:00AM
Mar 1 1996 12:00AM
Jan 1 1995 12:00AM
12/1998
Jan 1 2003 12:00AM
09/2001
Nov 1 2000 12:00AM
Jan 1 1993 12:00AM
Mar 1 2003 12:00AM
03/2003
06/2004
And they want me to convert it all to the mm/yyyy format. The field is a varchar field. So, they want it to become
Code:
02/2005
04/2006
04/2006
03/1996
03/1996
01/1995
12/1998
01/2003
09/2001
03/2000
03/1993
03/2003
03/2003
06/2004
Is there some trick to this that I can't find, or am I going to have to do a lot of updating and replacing?
wb