Hello there,
I have a text file with dates in yymmdd format, which I have managed to convert to mm/dd/yy with this:
select CAST ( ENDDATE AS datetime) as ENDDATE from JobImportHeader
but I really need yyyy. Is there a way to convert yy to yyyy? Thanks in advance!
I have a text file with dates in yymmdd format, which I have managed to convert to mm/dd/yy with this:
select CAST ( ENDDATE AS datetime) as ENDDATE from JobImportHeader
but I really need yyyy. Is there a way to convert yy to yyyy? Thanks in advance!