/* { "qid": "019", "task_type": "ambig", "has_intended_resolution": true, "language": "SQLite", "db": "retails", "question": "For each manufacturer, count the number of parts with over 2000 retail price or size 40.", "gold_ambiguity_points": [ { "id": "A", "phrase": "parts with over 2000 retail price or size 40", "type": "finite", "ambiguity_type": "syntactic_computation", "interpretations": [ "parts with over (2000 retail price or size 40)", "parts with (over 2000 retail price) or (size 40)" ], "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] parts with over 2000 retail price or size 40": "parts with over (2000 retail price or size 40)" } } } */ SELECT p_mfgr, SUM(CASE WHEN p_retailprice > 2000 OR p_size > 40 THEN 1 ELSE 0 END) FROM part GROUP BY p_mfgr; /* EXEC RESULT p_mfgr SUM(CASE WHEN p_retailprice > 2000 OR p_size > 40 THEN 1 ELSE 0 END) Manufacturer#1 8697 Manufacturer#2 8735 Manufacturer#3 8810 Manufacturer#4 8694 Manufacturer#5 8899 */ ----- 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] parts with over 2000 retail price or size 40": "parts with (over 2000 retail price) or (size 40)" } } } */ SELECT p_mfgr, SUM(CASE WHEN p_retailprice > 2000 OR p_size = 40 THEN 1 ELSE 0 END) FROM part GROUP BY p_mfgr; /* EXEC RESULT p_mfgr SUM(CASE WHEN p_retailprice > 2000 OR p_size = 40 THEN 1 ELSE 0 END) Manufacturer#1 1836 Manufacturer#2 1735 Manufacturer#3 1756 Manufacturer#4 1728 Manufacturer#5 1786 */ ----- END OF GOLD QUERY -----