Hello,
I know how to take these two fields:
DateValue, 01/01/2007 and IntValue, 10 and create one field: 010107-10
REPLACE(CONVERT (VARCHAR(8), DateValue, 1), '/', '') + N'-' + CAST(IntValue AS VARCHAR(3))
How to I reverse the process, turn 010107-10 into 01/01/2007 and 10?
I know how to take these two fields:
DateValue, 01/01/2007 and IntValue, 10 and create one field: 010107-10
REPLACE(CONVERT (VARCHAR(8), DateValue, 1), '/', '') + N'-' + CAST(IntValue AS VARCHAR(3))
How to I reverse the process, turn 010107-10 into 01/01/2007 and 10?