Azure – Convert to required date format with date datatype
I have input col as 12/03/08 viz dd/MM/yy . So I beed it in the format of dd/MM/yyyy . SO I have use the below transformation as : toString(toDate(col,'dd/MM/yy'),'dd/MM/yyyy') This works fine. But at the end i need to conver…