Greetings,
I'm looking for a straight-forward way to express this date format: 2026-08-01 00:00:00.000 as 260801
Using the following
Right(DATEPART(yy,maturity_date),2)+DATEPART(mm,maturity_date)
adds the integers together and I'd like not to have to concatentate etc..
Thank you
I'm looking for a straight-forward way to express this date format: 2026-08-01 00:00:00.000 as 260801
Using the following
Right(DATEPART(yy,maturity_date),2)+DATEPART(mm,maturity_date)
adds the integers together and I'd like not to have to concatentate etc..
Thank you