-- else left(wof.ro_end_date, 4) + '-' +
substring(cast(wof.ro_end_date as varchar(20)), 5, 2) + '-' +
right(wof.ro_end_date, 2)
这是最初在SQL Server Management Studio中使用的代码。在Impala数据湖中有没有办法做到这一点?
答案 0 :(得分:2)
尝试下面的一个:
substr(cast(wof.ro_end_date as string),5,2)+' - '+ strright(wof.ro_end_date,2)