Google大查询按Google Analytics数据的页面路径和自定义维度获取用户数

时间:2018-01-03 21:25:09

标签: google-analytics google-bigquery

我正在尝试通过自定义维度访问某个页面的用户数量。 但是,我的代码与Google Analytics不匹配。任何人都可以帮我这个吗?

SELECT
    PARSE_DATE('%Y%m%d', t.date) as Date
   ,count(distinct( concat(fullVisitorID,cast(visitID as string)))) as visitor_count
   ,(if(customDimensions.index=1, customDimensions.value,null))  as orig
FROM `table` as t
   CROSS JOIN UNNEST(hits) AS hit
   CROSS JOIN UNNEST(hit.customDimensions) AS customDimensions
WHERE
   (hit.page.pagePath ='apple'OR hit.page.pagepath= 'pear')
GROUP BY DATE,orig

非常感谢!!!!

1 个答案:

答案 0 :(得分:2)

没有意识到我只需要计算FullvistorID,就解决了这个问题。希望这可以帮助某人。

C:\Users\alexc\.PyCharm2017.3