arcs-bench / tasks /readable /050 /task_readable.sql
anon
Upload tasks/ folder for end-to-end loader reproducibility
02edc38
/*
{
"qid": "050",
"task_type": "ambig",
"has_intended_resolution": true,
"language": "SQLite",
"db": "github_repos",
"question": "What is the monthly average number of events during the period of the last quarter of 2022 and 2023?",
"gold_ambiguity_points": [
{
"id": "A",
"phrase": "last quarter of 2022 and 2023",
"type": "finite",
"ambiguity_type": "syntactic_table",
"interpretations": [
"last quarter of 2022 and last quarter of 2023",
"last quarter of 2022 and entire 2023"
],
"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": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] last quarter of 2022 and 2023": "last quarter of 2022 and last quarter of 2023"
}
}
}
*/
SELECT COUNT(*) / 6 AS event_count
FROM (
SELECT * FROM MONTH_202210
UNION ALL
SELECT * FROM MONTH_202211
UNION ALL
SELECT * FROM MONTH_202212
UNION ALL
SELECT * FROM MONTH_202310
UNION ALL
SELECT * FROM MONTH_202311
UNION ALL
SELECT * FROM MONTH_202312
) t;
/* EXEC RESULT
event_count
28032
*/
----- END OF GOLD QUERY -----
----- START OF GOLD QUERY `GQRY-A.1` -----
/*
{
"id": "GQRY-A.1",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] last quarter of 2022 and 2023": "last quarter of 2022 and entire 2023"
}
}
}
*/
SELECT COUNT(*) / 15 AS event_count
FROM (
SELECT * FROM MONTH_202210
UNION ALL
SELECT * FROM MONTH_202211
UNION ALL
SELECT * FROM MONTH_202212
UNION ALL
SELECT * FROM YEAR_2023
) t;
/* EXEC RESULT
event_count
32200
*/
----- END OF GOLD QUERY -----