Basically I am trying to convert a date (which is stored as a VARCHAR(8)) in the format DDMMCCYY into DD/MM/CCYY.
What I have tried:
1. CONVERT(VARCHAR,Create_Date,103) - returns: DDMMCCYY
2. CONVERT(VARCHAR,CAST(Create_Date as datetime),103) - returns: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.
Any suggestions would be appreciated
/Nice
What I have tried:
1. CONVERT(VARCHAR,Create_Date,103) - returns: DDMMCCYY
2. CONVERT(VARCHAR,CAST(Create_Date as datetime),103) - returns: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.
Any suggestions would be appreciated
/Nice