arcs-bench / tasks /readable /033 /task_readable.sql
anon
Upload tasks/ folder for end-to-end loader reproducibility
02edc38
/*
{
"qid": "033",
"task_type": "ambig",
"has_intended_resolution": true,
"language": "SQLite",
"db": "professional_basketball",
"question": "Find all William Smith who played forward and guard.",
"gold_ambiguity_points": [
{
"id": "A",
"phrase": "played forward and guard",
"type": "finite",
"ambiguity_type": "semantic_computation",
"interpretations": [
"played both forward and guard ('and' means logical AND)",
"played either forward or guard ('and' means UNION)"
],
"intended_interpretation_idx": 1
}
],
"gold_intended_query_id": "GQRY-A.1",
"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] played forward and guard": "played both forward and guard ('and' means logical AND)"
}
}
}
*/
SELECT DISTINCT playerID, firstName, lastName, pos
FROM players
WHERE firstName = 'William'
AND lastName = 'Smith'
AND (pos LIKE '%F%' AND pos LIKE '%G%');
/* EXEC RESULT
playerID firstName lastName pos
smithbi01 William Smith G-F
*/
----- 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] played forward and guard": "played either forward or guard ('and' means UNION)"
}
}
}
*/
SELECT DISTINCT playerID, firstName, lastName, pos
FROM players
WHERE firstName = 'William'
AND lastName = 'Smith'
AND (pos LIKE '%F%' OR pos LIKE '%G%');
/* EXEC RESULT
playerID firstName lastName pos
smithbi01 William Smith G-F
smithwi02 William Smith G
*/
----- END OF GOLD QUERY -----