File size: 2,881 Bytes
02edc38 | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | /*
{
"qid": "039",
"task_type": "ambig",
"has_intended_resolution": true,
"language": "SQLite",
"db": "github_repos",
"question": "Show the top 20 user names that contribute most events in January 2023 and 2022.",
"gold_ambiguity_points": [
{
"id": "A",
"phrase": "January 2023 and 2022",
"type": "finite",
"ambiguity_type": "syntactic_table",
"interpretations": [
"January 2023 and January 2022",
"January 2023 and the entire 2022"
],
"intended_interpretation_idx": 0
}
],
"gold_intended_query_id": "GQRY-A.0",
"extra_info": {}
}
*/
----- START OF GOLD QUERY `GQRY-A.0` -----
/*
{
"id": "GQRY-A.0",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": [
0
],
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] January 2023 and 2022": "January 2023 and January 2022"
}
}
}
*/
WITH stats AS (
SELECT json_extract(actor, '$.login') AS user, COUNT(*) AS event_count
FROM (
SELECT * FROM MONTH_202301
UNION ALL
SELECT * FROM MONTH_202201
) t
GROUP BY user
)
SELECT user, event_count
FROM stats
ORDER BY event_count DESC
LIMIT 20;
/* EXEC RESULT
user event_count
LombiqBot 23522
github-actions[bot] 5471
ivy-root 4954
aws-connector-for-github[bot] 2822
happyfish2024 2564
... TRUNCATED ...
rreichl90 761
algotables 700
chrismailer 697
wweuwsaq 672
mhutchinson-witness 592
*/
----- END OF GOLD QUERY -----
----- START OF GOLD QUERY `GQRY-A.1` -----
/*
{
"id": "GQRY-A.1",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": [
0
],
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] January 2023 and 2022": "January 2023 and the entire 2022"
}
}
}
*/
WITH stats AS (
SELECT json_extract(actor, '$.login') AS user, COUNT(*) AS event_count
FROM (
SELECT * FROM MONTH_202301
UNION ALL
SELECT * FROM YEAR_2022
) t
GROUP BY user
)
SELECT user, event_count
FROM stats
ORDER BY event_count DESC
LIMIT 20;
/* EXEC RESULT
user event_count
LombiqBot 167231
github-actions[bot] 38226
aws-connector-for-github[bot] 16979
brokjad 16224
milesholt 15051
... TRUNCATED ...
ideallya 5396
rreichl90 4857
bsc-predict 4801
happyfish2024 4703
Rolleander 4400
*/
----- END OF GOLD QUERY ----- |