作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道。今天访问过的人过去访问过吗?人数。
SELECT
COUNT(user_id) AS repeater_user_count
FROM
[access_log] AS table1
WHERE
_PARTITIONTIME = TIMESTAMP('2017-02-28')
AND
EXISTS
(
SELECT
1
FROM
[access_log] AS table2
WHERE
_PARTITIONTIME BETWEEN TIMESTAMP('2017-01-31') AND TIMESTAMP('2017-02-27')
AND
table1.user_id = table2.user_id
)
但是,BigQuery UI 会发出错误。
Error: error at: 8.1 - 13.184. Only one query can be executed at a time.
如何通过 BigQuery 引用同一个表?
谢谢。
最佳答案
确保enable standard SQL第一的。例如,
#standardSQL
SELECT
COUNT(user_id) AS repeater_user_count
FROM
`access_log` AS table1
WHERE
_PARTITIONTIME = '2017-02-28'
AND
EXISTS
(
SELECT
1
FROM
`access_log` AS table2
WHERE
_PARTITIONTIME BETWEEN '2017-01-31' AND '2017-02-27'
AND
table1.user_id = table2.user_id
);
关于google-bigquery - 如何在BigQuery中使用EXISTS获取匹配过去日志的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42508893/
我是一名优秀的程序员,十分优秀!