BigQueryでURLをデコードする方法
関数で定義すればOK
CREATE TEMPORARY FUNCTION urlDecode(s STRING)
RETURNS STRING
LANGUAGE js AS "return decodeURI(s);";
-- with句でdbの代わりをしているだけです
-- アクセスログなどに代替してください
with db as (
select '%e3%83%86%e3%82%b9%e3%83%88' as url
)
select
urlDecode(db.url) AS decoded
from
db
Author And Source
この問題について(BigQueryでURLをデコードする方法), 我々は、より多くの情報をここで見つけました https://qiita.com/IZUMIRU/items/0cf2faf3bce2c4f0081c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .