arcs-bench / tasks /readable /006 /task_readable.sql
anon
Upload tasks/ folder for end-to-end loader reproducibility
02edc38
/*
{
"qid": "006",
"task_type": "ambig",
"has_intended_resolution": true,
"language": "SQLite",
"db": "retails",
"question": "Count number of suppliers with negative balance or located in Africa and do not supply Brand#32.",
"gold_ambiguity_points": [
{
"id": "A",
"phrase": "with negative balance or located in Africa and do not supply Brand#32",
"type": "finite",
"ambiguity_type": "syntactic_computation",
"interpretations": [
"suppliers (with negative balance) OR (located in Africa AND do not supply Brand#32)",
"suppliers (with negative balance OR located in Africa) AND (do not supply Brand#32)"
],
"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": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] with negative balance or located in Africa and do not supply Brand#32": "suppliers (with negative balance) OR (located in Africa AND do not supply Brand#32)"
}
}
}
*/
WITH negative_balance_suppliers AS (
SELECT s.s_suppkey
FROM supplier s
WHERE s.s_acctbal < 0
)
, africa_suppliers AS (
SELECT DISTINCT s.s_suppkey
FROM supplier s
JOIN nation n ON s.s_nationkey = n.n_nationkey
JOIN region r ON n.n_regionkey = r.r_regionkey
WHERE r.r_name = 'AFRICA'
)
, brand_32_suppliers AS (
SELECT DISTINCT s.s_suppkey
FROM supplier s
JOIN partsupp ps ON s.s_suppkey = ps.ps_suppkey
JOIN part p ON ps.ps_partkey = p.p_partkey
WHERE p.p_brand = 'Brand#32'
)
SELECT COUNT(DISTINCT s.s_suppkey)
FROM supplier s
WHERE s.s_suppkey IN (SELECT s_suppkey FROM negative_balance_suppliers)
OR (
s.s_suppkey IN (SELECT s_suppkey FROM africa_suppliers)
AND s.s_suppkey NOT IN (SELECT s_suppkey FROM brand_32_suppliers)
);
/* EXEC RESULT
COUNT(DISTINCT s.s_suppkey)
998
*/
----- 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] with negative balance or located in Africa and do not supply Brand#32": "suppliers (with negative balance OR located in Africa) AND (do not supply Brand#32)"
}
}
}
*/
WITH negative_balance_suppliers AS (
SELECT s.s_suppkey
FROM supplier s
WHERE s.s_acctbal < 0
)
, africa_suppliers AS (
SELECT DISTINCT s.s_suppkey
FROM supplier s
JOIN nation n ON s.s_nationkey = n.n_nationkey
JOIN region r ON n.n_regionkey = r.r_regionkey
WHERE r.r_name = 'AFRICA'
)
, brand_32_suppliers AS (
SELECT DISTINCT s.s_suppkey
FROM supplier s
JOIN partsupp ps ON s.s_suppkey = ps.ps_suppkey
JOIN part p ON ps.ps_partkey = p.p_partkey
WHERE p.p_brand = 'Brand#32'
)
SELECT COUNT(DISTINCT s.s_suppkey)
FROM supplier s
WHERE (
s.s_suppkey IN (SELECT s_suppkey FROM negative_balance_suppliers)
OR
s.s_suppkey IN (SELECT s_suppkey FROM africa_suppliers)
) AND s.s_suppkey NOT IN (SELECT s_suppkey FROM brand_32_suppliers);
/* EXEC RESULT
COUNT(DISTINCT s.s_suppkey)
124
*/
----- END OF GOLD QUERY -----