| /* | |
| { | |
| "qid": "003", | |
| "task_type": "ambig", | |
| "has_intended_resolution": true, | |
| "language": "SQLite", | |
| "db": "retails", | |
| "question": "Which supplier has the largest inventory value?", | |
| "gold_ambiguity_points": [ | |
| { | |
| "id": "A", | |
| "phrase": "inventory value", | |
| "type": "finite", | |
| "ambiguity_type": "semantic_column", | |
| "interpretations": [ | |
| "value at supply cost", | |
| "value at retail price" | |
| ], | |
| "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": [ | |
| 1 | |
| ], | |
| "required_sorted": false, | |
| "extra_info": { | |
| "ambiguity_resolution": { | |
| "[A] inventory value": "value at supply cost" | |
| } | |
| } | |
| } | |
| */ | |
| SELECT | |
| s.s_suppkey, | |
| s.s_name, | |
| SUM(ps.ps_supplycost * ps.ps_availqty) as inventory_value_supply_cost | |
| FROM supplier s | |
| JOIN partsupp ps ON s.s_suppkey = ps.ps_suppkey | |
| GROUP BY s.s_suppkey, s.s_name | |
| ORDER BY inventory_value_supply_cost DESC | |
| LIMIT 1; | |
| /* EXEC RESULT | |
| s_suppkey s_name inventory_value_supply_cost | |
| 5704 Supplier#000005704 281196358.57 | |
| */ | |
| ----- END OF GOLD QUERY ----- | |
| ----- START OF GOLD QUERY `GQRY-A.1` ----- | |
| /* | |
| { | |
| "id": "GQRY-A.1", | |
| "parameter_names": [], | |
| "parameter_values": {}, | |
| "other_exec_results": [], | |
| "required_columns": [ | |
| 1 | |
| ], | |
| "required_sorted": false, | |
| "extra_info": { | |
| "ambiguity_resolution": { | |
| "[A] inventory value": "value at retail price" | |
| } | |
| } | |
| } | |
| */ | |
| SELECT | |
| s.s_suppkey, | |
| s.s_name, | |
| SUM(p.p_retailprice * ps.ps_availqty) as inventory_value_retail_price | |
| FROM supplier s | |
| JOIN partsupp ps ON s.s_suppkey = ps.ps_suppkey | |
| JOIN part p ON ps.ps_partkey = p.p_partkey | |
| GROUP BY s.s_suppkey, s.s_name | |
| ORDER BY inventory_value_retail_price DESC | |
| LIMIT 1; | |
| /* EXEC RESULT | |
| s_suppkey s_name inventory_value_retail_price | |
| 7482 Supplier#000007482 813862297.75 | |
| */ | |
| ----- END OF GOLD QUERY ----- |