Afonso_DiazUntitled Query
Updated 2023-01-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with t as (
select
author,
min(date_trunc('month', createdat)) as min_date
from near.beta.github_activity
group by 1
),
t2 as (
select
repo as repository,
min(date_trunc('month', createdat)) as min_date
from near.beta.github_activity
group by 1
),
t4 as (
select
author,
min(date_trunc('month', createdat)) as min_date
from near.beta.github_activity
where contains(url, '/pull/')
group by 1
),
t5 as (
select
author,
min(date_trunc('month', createdat)) as min_date
from near.beta.github_activity
where contains(url, '/issues/')
group by 1
)
select
date_trunc('month', createdat::date) as day,
Run a query to Download Data