The column [PAYOFF DATE] has some blank values and some values in mm/dd/yy format.
I have to replace \'/\' with \'-\' and return the date as yyyy-mm-dd. The below qu
CASE WHEN [Pay Date] = '' THEN NULL ELSE TRY_CONVERT(DATE, [Pay Date]) END