File size: 3,406 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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | /*
{
"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 ----- |