仍在使用BigQuery的google_analytics_sample数据和演示店网站。
当我在Google商品商店中搜索产品时,页面搜索URL看起来像这样/asearch.html vid=20160512512&key=cool&keyword=cool
但是在运行以下查询时:
SELECT
hits.page.searchKeyword as Search,
hits.page.pagePath,
hits.page.pageTitle
FROM
`bigquery-public-data.google_analytics_sample.ga_sessions_20170801` AS GA,
UNNEST(GA.hits) AS hits
where
hits.page.searchKeyword IS NOT NULL
每个搜索的页面路径和页面标题分别为/home
和Home
。
hits.page.searchKeyword
的定义是
If this was a search results page, this is the keyword entered.
因此,查看定义,我会假设返回的Page Path
值将是搜索结果页面的网址?我在这里想念什么?
答案 0 :(得分:1)
在视图设置中,他们选中了“从URL剥离查询参数”选项,因此它们不会显示为路径的一部分。参见https://analytics.google.com/analytics/web/#/a54516992w87479473p92320289/admin/view/settings