Impala中子串的等价物

时间:2017-07-28 18:13:27

标签: sql impala dbvisualizer

-- 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数据湖中有没有办法做到这一点?

1 个答案:

答案 0 :(得分:2)

尝试下面的一个:

substr(cast(wof.ro_end_date as string),5,2)+' - '+ strright(wof.ro_end_date,2)