获取在一个特定事件之前执行的所有事件?

时间:2019-03-15 07:56:14

标签: google-bigquery

我在BigQuery的数据集中有几个事件及其时间戳。

enter image description here

在我的示例中,我使用一个事件:事件'A'。

我需要弄清楚每个用户在*做事件“ A”之前而不是**之后发生了什么事件和发生频率

这是我正在使用的查询:

select distinct_id,Lead(event,1) over (Partition by distinct_id order by ConvertedEventDate ) 
as nextEvent,ConvertedEventDate from Table 
order by 1

任何想法我该如何解决?

0 个答案:

没有答案