-- else left(wof.ro_end_date, 4) + '-' +
substring(cast(wof.ro_end_date as varchar(20)), 5, 2) + '-' +
right(wof.ro_end_date, 2)
This is the code that was originally used in SQL Server Management Studio. Is there any way to do this in the Impala data lake?
Try this:
substr(cast(wof.ro_end_date as string),5,2) + '-' + strright(wof.ro_end_date, 2)