Is there a way to remove vertical tabulation directly in query in Amazon Redshift using Replace, Translate or Regexp? I'm having problems with this [VT] and I don't want to use sed to remove this characters.
有没有办法在Amazon Redshift中使用Replace,Translate或Regexp直接删除查询中的垂直列表?我遇到了这个[VT]的问题,我不想用sed删除这个字符。
Thansk!
Thansk!
1 个解决方案
#1
0
I found the solution!
我找到了解决方案!
translate(description,chr(11),'')
翻译(介绍,CHR(11), '')
Because chr(11) = vertical tab.
因为chr(11)=垂直制表符。
#1
0
I found the solution!
我找到了解决方案!
translate(description,chr(11),'')
翻译(介绍,CHR(11), '')
Because chr(11) = vertical tab.
因为chr(11)=垂直制表符。