在 redshift 中使用正则表达式
Posted
技术标签:
【中文标题】在 redshift 中使用正则表达式【英文标题】:using regular expressions in redshift 【发布时间】:2017-11-09 16:51:24 【问题描述】:此查询在 mysql 中有效,但我不确定如何在 redshift / postgresql 中编写相同的查询。
update customer_Details set
customer_No = NULL
WHERE customer_No NOT REGEXP '^[[:digit:]]12$'
【问题讨论】:
将NOT REGEXP
替换为!~
。您可以将正则表达式模式进一步缩短为^\d12$
【参考方案1】:
您需要使用!~ operator。像这样的东西应该可以工作:
UPDATE
customer_details
SET
customer_no = NULL
WHERE
customer_No !~ '^[[:digit:]]12$';
【讨论】:
【参考方案2】:Redshift 基本上是 postgres 8.3 的一个分支,它使用 postgres 的正则表达式语法:
update customer_Details set
customer_No = NULL
WHERE customer_No ! ~ '^[0-9]12$'
【讨论】:
以上是关于在 redshift 中使用正则表达式的主要内容,如果未能解决你的问题,请参考以下文章
在 Redshift 中使用正则表达式来获取匹配模式之前的单词
正则表达式:获取 AWS Redshift 中两个字符串之间的值