impala中子串的sql等价

erhoui1w  于 2021-06-26  发布在  Impala
关注(0)|答案(1)|浏览(435)
-- else left(wof.ro_end_date, 4) + '-' + 
        substring(cast(wof.ro_end_date as varchar(20)), 5, 2) + '-' +
        right(wof.ro_end_date, 2)

这是最初在SQLServerManagementStudio中使用的代码。在 Impala 数据湖有没有办法做到这一点?

iqxoj9l9

iqxoj9l91#

试试这个:

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

相关问题