gpt4 book ai didi

sql - 使用 REGEXP_SUBSTR 提取网站域名

转载 作者:行者123 更新时间:2023-12-05 03:34:55 28 4
gpt4 key购买 nike

我有一个名为 Website 的字段,其中包含如下示例:

https://ivalore.com.br
https://cornstalk.com
https://penny.co

我正在尝试使用 REGEXP_SUBSTR 来隔离域:REGEXP_SUBSTR("网站", '[^https://]+')

一些结果有效,但其他结果无效,例如,我期待 cornstalk.com 和 penny.co,但我没有收到这些值:

ivalore.com.br
corn
enny.co

如有任何帮助,我们将不胜感激。

最佳答案

使用内置 PARSE_URL :

Returns a JSON object consisting of all the components (fragment, host, path, port, query, scheme) in a valid input URL/URI.

WITH cte(url) AS (
SELECT 'https://ivalore.com.br' UNION ALL
SELECT 'https://cornstalk.com' UNION ALL
SELECT 'https://penny.co'
)
SELECT url, PARSE_URL(url):"host"::TEXT AS host
FROM cte;

输出:

enter image description here

关于sql - 使用 REGEXP_SUBSTR 提取网站域名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70038247/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com