【发布时间】:2019-08-28 01:43:14
【问题描述】:
我绝不是编码员,所以我尝试过,但在这方面摔倒了。
我想使用 Google 的 Google Analytics Big Query Cookbook 中的这个查询
购买产品 A(增强型电子商务)的客户购买的产品
我已经粘贴了下面的代码
进入标准 SQL。
我尝试了几次,但都摔倒了,没有
提前谢谢你 约翰
SELECT hits.product.productSKU AS other_purchased_products,
COUNT(hits.product.productSKU) AS quantity
FROM (
SELECT fullVisitorId, hits.product.productSKU, hits.eCommerceAction.action_type
FROM TABLE_DATE_RANGE([bigquery-public-data:google_analytics_sample.ga_sessions_],
TIMESTAMP('2017-04-01'), TIMESTAMP('2017-04-20'))
)
WHERE fullVisitorId IN (
SELECT fullVisitorId
FROM TABLE_DATE_RANGE([bigquery-public-data:google_analytics_sample.ga_sessions_],
TIMESTAMP('2017-04-01'), TIMESTAMP('2017-04-20'))
WHERE hits.product.productSKU CONTAINS 'GGOEYOCR077799'
AND hits.eCommerceAction.action_type = '6'
GROUP BY fullVisitorId
)
AND hits.product.productSKU IS NOT NULL
AND hits.product.productSKU !='GGOEYOCR077799'
AND hits.eCommerceAction.action_type = '6'
GROUP BY other_purchased_products
ORDER BY quantity DESC;
【问题讨论】:
-
你得到了什么结果?有什么错误吗?您期待什么结果?
标签: google-bigquery bigquery-standard-sql legacy-sql