arcs-bench / tasks /readable /032 /task_readable.sql
anon
Upload tasks/ folder for end-to-end loader reproducibility
02edc38
/*
{
"qid": "032",
"task_type": "ambig",
"has_intended_resolution": true,
"language": "SQLite",
"db": "professional_basketball",
"question": "List tall players that have played for NBA teams from Los Angeles.",
"gold_ambiguity_points": [
{
"id": "A",
"phrase": "tall players",
"type": "infinite",
"ambiguity_type": "semantic_value",
"parameter_name": "height_threshold",
"parameter_dtype": "int",
"parameter_sample_operators": [
">",
">="
],
"parameter_sample_values": [
84
],
"intended_parameter_operator": ">=",
"intended_parameter_value": 84
},
{
"id": "B",
"phrase": "tall players that have played for NBA teams from Los Angeles",
"type": "finite",
"ambiguity_type": "syntactic_computation",
"interpretations": [
"tall players that have played for (NBA teams from Los Angeles)",
"(tall players from Los Angeles) that have played for NBA teams"
],
"intended_interpretation_idx": 1
}
],
"gold_intended_query_id": "GQRY-B.1",
"extra_info": {}
}
*/
----- START OF GOLD QUERY `GQRY-B.0` -----
/*
{
"id": "GQRY-B.0",
"parameter_names": [
"height_threshold"
],
"parameter_values": {
"height_threshold": 84
},
"other_exec_results": [],
"required_columns": [
1,
2
],
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] tall players": ":height_threshold",
"[B] tall players that have played for NBA teams from Los Angeles": "tall players that have played for (NBA teams from Los Angeles)"
}
}
}
*/
SELECT DISTINCT
p.playerID,
p.firstName,
p.lastName,
p.height
FROM players p
JOIN players_teams pt ON p.playerID = pt.playerID
JOIN teams t ON pt.tmID = t.tmID AND pt.year = t.year
WHERE t.name IN ('Los Angeles Lakers', 'Los Angeles Clippers')
AND pt.lgID = 'NBA'
AND p.height >= :height_threshold
ORDER BY p.lastName, p.firstName;
/* EXEC RESULT
playerID firstName lastName height
abdulka01 Kareem Abdul-Jabbar 85.0
benjabe01 Lenard Benjamin 84.0
bowiesa01 Samuel Bowie 85.0
bryanwa01 Wallace Bryant 84.0
bynuman01 Andrew Bynum 84.0
... TRUNCATED ...
smithel01 Elmore Smith 84.0
smrekmi01 Michael Smrek 84.0
spencel01 Elmore Spencer 84.0
vrankst01 Stojan Vrankovic 86.0
zhizhwa01 Wang Zhizhi 84.0
*/
----- END OF GOLD QUERY -----
----- START OF GOLD QUERY `GQRY-B.1` -----
/*
{
"id": "GQRY-B.1",
"parameter_names": [
"height_threshold"
],
"parameter_values": {
"height_threshold": 84
},
"other_exec_results": [],
"required_columns": [
1,
2
],
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] tall players": ":height_threshold",
"[B] tall players that have played for NBA teams from Los Angeles": "(tall players from Los Angeles) that have played for NBA teams"
}
}
}
*/
SELECT DISTINCT
p.playerID,
p.firstName,
p.lastName,
p.height
FROM players p
JOIN players_teams pt ON p.playerID = pt.playerID
WHERE p.birthCity = 'Los Angeles'
AND p.height >= :height_threshold
AND pt.lgID = 'NBA'
ORDER BY p.lastName, p.firstName;
/* EXEC RESULT
playerID firstName lastName height
willike02 Kevin Willis 84.0
*/
----- END OF GOLD QUERY -----