Regexp_replace在雪花中
我在雪花表中有旧的_column,并希望将值转换为新列,如下所述。
我尝试了Regexp_replace,无法编写精确的逻辑。
old_column | new_column |
---|---|
1,2,4 | ACT,星期六,TOEFL |
6,3 | lnat,雅思 |
5,1 | ACT,BMAT |
I have the old_column in the snowflake table and would like to convert the values to the new column as mentioned below.
I tried with REGEXP_REPLACE and couldn’t able to write exact logic.
old_column | new_column |
---|---|
1,2,4 | ACT,SAT,TOEFL |
6,3 | LNAT,IELTS |
5,1 | ACT,BMAT |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的new_columns不会显示随机订单。假设其订单,一个查询的一个版本可以如下(可以根据数据值进一步添加情况) -
Your new_columns does not shows a random order. Assuming its ordered, one version of query can be as follows (CASE can be added as needed further based on data values) -