diff --git a/AgentBench.old/configs/agents/do_nothing.yaml b/AgentBench.old/configs/agents/do_nothing.yaml new file mode 100644 index 0000000..00bee8f --- /dev/null +++ b/AgentBench.old/configs/agents/do_nothing.yaml @@ -0,0 +1,4 @@ +module: "src.agents.DoNothingAgent" +parameters: + name: "Do-Nothing-Agent" + sleep: 0.01 diff --git a/AgentBench.old/configs/agents/tgi_clients/AgentLM-13b.yaml b/AgentBench.old/configs/agents/tgi_clients/AgentLM-13b.yaml new file mode 100644 index 0000000..513d802 --- /dev/null +++ b/AgentBench.old/configs/agents/tgi_clients/AgentLM-13b.yaml @@ -0,0 +1,10 @@ +module: "src.agents.TGIAgent" +parameters: + ip: "http://127.0.0.1" + # Also you can set up the AgentLM on many address + # The TGIAgent will automatically balance the load + # address ∈ [address_from, address_to) + address_from: 30013 + address_to: 30014 + model_name: "AgentLM-13b" + max_tokens: 4096 \ No newline at end of file diff --git a/AgentBench.old/configs/agents/tgi_clients/AgentLM-70b.yaml b/AgentBench.old/configs/agents/tgi_clients/AgentLM-70b.yaml new file mode 100644 index 0000000..26c5f51 --- /dev/null +++ b/AgentBench.old/configs/agents/tgi_clients/AgentLM-70b.yaml @@ -0,0 +1,10 @@ +module: "src.agents.TGIAgent" +parameters: + ip: "http://127.0.0.1" + # Also you can set up the AgentLM on many address + # The TGIAgent will automatically balance the load + # address ∈ [address_from, address_to) + address_from: 30070 + address_to: 30071 + model_name: "AgentLM-70b" + max_tokens: 4096 \ No newline at end of file diff --git a/AgentBench.old/configs/agents/tgi_clients/AgentLM-7b.yaml b/AgentBench.old/configs/agents/tgi_clients/AgentLM-7b.yaml new file mode 100644 index 0000000..1b2749d --- /dev/null +++ b/AgentBench.old/configs/agents/tgi_clients/AgentLM-7b.yaml @@ -0,0 +1,10 @@ +module: "src.agents.TGIAgent" +parameters: + ip: "http://127.0.0.1" + # Also you can set up the AgentLM on many address + # The TGIAgent will automatically balance the load + # address ∈ [address_from, address_to) + address_from: 30007 + address_to: 30008 + model_name: "AgentLM-7b" + max_tokens: 4096 \ No newline at end of file diff --git a/AgentBench.old/configs/tasks/alfworld/dev.yaml b/AgentBench.old/configs/tasks/alfworld/dev.yaml new file mode 100644 index 0000000..4ef01d6 --- /dev/null +++ b/AgentBench.old/configs/tasks/alfworld/dev.yaml @@ -0,0 +1,9 @@ +module: "src.tasks.alfworld.ALFWorld" +parameters: + name: "ALFWorld" + data_path: "/AgentBench/data/alfworld" # TODO replace it with your own data path + config_path: "src/tasks/alfworld/configs/base_config.yaml" + prompts_path: "src/tasks/alfworld/prompts/alfworld_multiturn_react.json" + split: "dev" + max_step: 35 + diff --git a/AgentBench.old/configs/tasks/alfworld/std.yaml b/AgentBench.old/configs/tasks/alfworld/std.yaml new file mode 100644 index 0000000..3aaf5da --- /dev/null +++ b/AgentBench.old/configs/tasks/alfworld/std.yaml @@ -0,0 +1,9 @@ +module: "src.tasks.alfworld.ALFWorld" +parameters: + name: "ALFWorld" + data_path: "/AgentBench/data/alfworld" # TODO replace it with your own data path + config_path: "src/tasks/alfworld/configs/base_config.yaml" + prompts_path: "src/tasks/alfworld/prompts/alfworld_multiturn_react.json" + split: "std" + max_step: 35 + diff --git a/AgentBench.old/configs/tasks/card_game/dev.yaml b/AgentBench.old/configs/tasks/card_game/dev.yaml new file mode 100644 index 0000000..974edb0 --- /dev/null +++ b/AgentBench.old/configs/tasks/card_game/dev.yaml @@ -0,0 +1,6 @@ +module: "src.tasks.CardGame" + +parameters: + name: "CardGame" + port: 12347 + test_time: 3 \ No newline at end of file diff --git a/AgentBench.old/configs/tasks/card_game/ext.yaml b/AgentBench.old/configs/tasks/card_game/ext.yaml new file mode 100644 index 0000000..166fa9b --- /dev/null +++ b/AgentBench.old/configs/tasks/card_game/ext.yaml @@ -0,0 +1,6 @@ +module: "src.tasks.CardGame" + +parameters: + name: "CardGame" + port: 12349 + test_time: 50 \ No newline at end of file diff --git a/AgentBench.old/configs/tasks/card_game/std.yaml b/AgentBench.old/configs/tasks/card_game/std.yaml new file mode 100644 index 0000000..71d55c9 --- /dev/null +++ b/AgentBench.old/configs/tasks/card_game/std.yaml @@ -0,0 +1,6 @@ +module: "src.tasks.CardGame" + +parameters: + name: "CardGame" + port: 12342 + test_time: 5 \ No newline at end of file diff --git a/AgentBench.old/configs/tasks/dbbench/dev.yaml b/AgentBench.old/configs/tasks/dbbench/dev.yaml new file mode 100644 index 0000000..29a985e --- /dev/null +++ b/AgentBench.old/configs/tasks/dbbench/dev.yaml @@ -0,0 +1,6 @@ +module: src.tasks.DBBench + +parameters: + name: "DBBench" + data_file: data/dbbench/dev.jsonl + max_round: 15 diff --git a/AgentBench.old/configs/tasks/dbbench/std.yaml b/AgentBench.old/configs/tasks/dbbench/std.yaml new file mode 100644 index 0000000..d723b85 --- /dev/null +++ b/AgentBench.old/configs/tasks/dbbench/std.yaml @@ -0,0 +1,6 @@ +module: src.tasks.DBBench + +parameters: + name: "DBBench" + data_file: data/dbbench/standard.jsonl + max_round: 15 \ No newline at end of file diff --git a/AgentBench.old/configs/tasks/knowledgegraph/dev.yaml b/AgentBench.old/configs/tasks/knowledgegraph/dev.yaml new file mode 100644 index 0000000..44bed64 --- /dev/null +++ b/AgentBench.old/configs/tasks/knowledgegraph/dev.yaml @@ -0,0 +1,6 @@ +module: "src.tasks.KnowledgeGraph" +parameters: + name: "KnowledgeGraph-dev" + round: 15 + data_file: "data/knowledgegraph/dev.json" + sparql_url: "http://164.107.116.56:3093/sparql" diff --git a/AgentBench.old/configs/tasks/knowledgegraph/std.yaml b/AgentBench.old/configs/tasks/knowledgegraph/std.yaml new file mode 100644 index 0000000..a8e6b27 --- /dev/null +++ b/AgentBench.old/configs/tasks/knowledgegraph/std.yaml @@ -0,0 +1,6 @@ +module: "src.tasks.KnowledgeGraph" +parameters: + name: "KnowledgeGraph-std" + round: 15 + data_file: "data/knowledgegraph/std.json" + sparql_url: "http://164.107.116.56:3093/sparql" diff --git a/AgentBench.old/configs/tasks/mind2web/dev.yaml b/AgentBench.old/configs/tasks/mind2web/dev.yaml new file mode 100644 index 0000000..b639e80 --- /dev/null +++ b/AgentBench.old/configs/tasks/mind2web/dev.yaml @@ -0,0 +1,22 @@ +module: "src.tasks.Mind2Web" +parameters: + name: "Mind2Web-dev" + data: + data_path: "." + cache_path: "./data/mind2web/.cache/data" + test_split_files: + test_domain: /root/work/data/data_dev/*.json + score_file: /root/work/data/scores_all_data.pkl + train: + neg_ratio: 0.2 + num_candidates: 5 + max_context_len: 512 + model: + mode: "multichoice" + name: flan-t5-base + model_name_or_path: "google/flan-t5-base" + max_seq_length: 2048 + eval: + topk: 10 + seed: 123 + llm_prompt: data/mind2web/prompt/llm_prompt_cot.json diff --git a/AgentBench.old/configs/tasks/mind2web/std.yaml b/AgentBench.old/configs/tasks/mind2web/std.yaml new file mode 100644 index 0000000..a59ef1f --- /dev/null +++ b/AgentBench.old/configs/tasks/mind2web/std.yaml @@ -0,0 +1,22 @@ +module: "src.tasks.Mind2Web" +parameters: + name: "Mind2Web-std" + data: + data_path: "." + cache_path: "./data/mind2web/.cache/data" + test_split_files: + test_domain: /root/work/data/data_std/*.json + score_file: /root/work/data/scores_all_data.pkl + train: + neg_ratio: 0.2 + num_candidates: 5 + max_context_len: 512 + model: + mode: "multichoice" + name: flan-t5-base + model_name_or_path: "google/flan-t5-base" + max_seq_length: 2048 + eval: + topk: 10 + seed: 123 + llm_prompt: data/mind2web/prompt/llm_prompt_cot.json diff --git a/AgentBench.old/configs/tasks/os_interaction/dev.yaml b/AgentBench.old/configs/tasks/os_interaction/dev.yaml new file mode 100644 index 0000000..c328b44 --- /dev/null +++ b/AgentBench.old/configs/tasks/os_interaction/dev.yaml @@ -0,0 +1,21 @@ +module: "src.tasks.OSInteraction" +parameters: + name: "OS-Interaction" + match_problem: true + check_problem: true + round_limit: 8 + + docker_config: + localhost: local-os + directory: data/os_interaction/res/dockerfiles + + scripts: + directory: data/os_interaction/res/scripts + + data_config: + files: + - problem_file: data/os_interaction/data/dev.json + script_dir: data/os_interaction/scripts/dev/ + + bk: [] + ignore: [] diff --git a/AgentBench.old/configs/tasks/os_interaction/std.yaml b/AgentBench.old/configs/tasks/os_interaction/std.yaml new file mode 100644 index 0000000..0b6a2d4 --- /dev/null +++ b/AgentBench.old/configs/tasks/os_interaction/std.yaml @@ -0,0 +1,33 @@ +module: "src.tasks.OSInteraction" +parameters: + name: "OS-Interaction" + match_problem: true + check_problem: true + round_limit: 8 + + docker_config: + localhost: local-os + directory: data/os_interaction/res/dockerfiles + + scripts: + directory: data/os_interaction/res/scripts + + data_config: + files: + - problem_file: data/os_interaction/data/1/*.json + script_dir: data/os_interaction/scripts/1/ + - problem_file: data/os_interaction/data/2/*.json + script_dir: data/os_interaction/scripts/2/ + - problem_file: data/os_interaction/data/3/*.json + script_dir: data/os_interaction/scripts/3/ + - problem_file: data/os_interaction/data/4/*.json + script_dir: data/os_interaction/scripts/4/ + - problem_file: data/os_interaction/data/5/*.json + script_dir: data/os_interaction/scripts/5/ + - problem_file: data/os_interaction/data/6/*.json + script_dir: data/os_interaction/scripts/6/ + - problem_file: data/os_interaction/data/7/*.json + script_dir: data/os_interaction/scripts/7/ + + bk: [] + ignore: [] diff --git a/AgentBench.old/configs/tasks/webshop/dev.yaml b/AgentBench.old/configs/tasks/webshop/dev.yaml new file mode 100644 index 0000000..0f1c8b2 --- /dev/null +++ b/AgentBench.old/configs/tasks/webshop/dev.yaml @@ -0,0 +1,8 @@ +module: src.tasks.WebShop + +parameters: + name: "WebShop" + start: 200 + end: 280 + num_envs: 3 + worker_limit: 3 \ No newline at end of file diff --git a/AgentBench.old/configs/tasks/webshop/std.yaml b/AgentBench.old/configs/tasks/webshop/std.yaml new file mode 100644 index 0000000..690843d --- /dev/null +++ b/AgentBench.old/configs/tasks/webshop/std.yaml @@ -0,0 +1,8 @@ +module: src.tasks.WebShop + +parameters: + name: "WebShop" + start: 0 + end: 200 + num_envs: 3 + worker_limit: 3 \ No newline at end of file diff --git a/AgentBench.old/data/alfworld/dev.json b/AgentBench.old/data/alfworld/dev.json new file mode 100644 index 0000000..e922035 --- /dev/null +++ b/AgentBench.old/data/alfworld/dev.json @@ -0,0 +1,34 @@ +{ + "pick_and_place": [ + "json_2.1.1/valid_unseen/pick_and_place_simple-SoapBottle-None-Toilet-424/trial_T20190907_004404_604165/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-Pencil-None-Shelf-308/trial_T20190908_122154_042763/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-SaltShaker-None-Cabinet-10/trial_T20190906_191445_723170/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-Mug-None-Desk-308/trial_T20190909_210238_431966/game.tw-pddl" + ], + "pick_clean_then_place": [ + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Cloth-None-Cabinet-424/trial_T20190908_022436_073995/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-SoapBar-None-Cabinet-424/trial_T20190908_215019_162873/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Pan-None-CounterTop-10/trial_T20190908_032543_712058/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-SoapBar-None-CounterTop-424/trial_T20190907_074106_050405/game.tw-pddl" + ], + "pick_heat_then_place": [ + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Cup-None-Cabinet-10/trial_T20190907_083346_800823/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Cup-None-Cabinet-10/trial_T20190907_083507_594820/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Tomato-None-GarbageCan-10/trial_T20190908_225453_272533/game.tw-pddl" + ], + "pick_cool_then_place": [ + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Potato-None-Microwave-10/trial_T20190907_033157_424297/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Pan-None-CounterTop-10/trial_T20190908_114622_738670/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Bread-None-CounterTop-10/trial_T20190908_091747_866951/game.tw-pddl" + ], + "look_at_obj": [ + "json_2.1.1/valid_unseen/look_at_obj_in_light-Mug-None-DeskLamp-308/trial_T20190908_161733_213242/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-Bowl-None-DeskLamp-308/trial_T20190907_133935_066606/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-Pencil-None-DeskLamp-308/trial_T20190908_220656_510400/game.tw-pddl" + ], + "pick_two_obj": [ + "json_2.1.1/valid_unseen/pick_two_obj_and_place-Pillow-None-Sofa-219/trial_T20190907_163327_486300/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-SoapBar-None-GarbageCan-424/trial_T20190909_064053_839817/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-CD-None-Safe-308/trial_T20190907_051013_060265/game.tw-pddl" + ] +} diff --git a/AgentBench.old/data/alfworld/std.json b/AgentBench.old/data/alfworld/std.json new file mode 100644 index 0000000..6039f1e --- /dev/null +++ b/AgentBench.old/data/alfworld/std.json @@ -0,0 +1,64 @@ +{ + "pick_and_place": [ + "json_2.1.1/valid_unseen/pick_and_place_simple-Pencil-None-Shelf-308/trial_T20190908_121952_610012/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-PepperShaker-None-Drawer-10/trial_T20190918_154424_844749/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-Watch-None-Safe-219/trial_T20190907_074643_810052/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-SaltShaker-None-Drawer-10/trial_T20190909_021613_077537/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-SaltShaker-None-Drawer-10/trial_T20190909_021728_339782/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-SaltShaker-None-Cabinet-10/trial_T20190906_191501_563086/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-SoapBottle-None-Toilet-424/trial_T20190907_004351_281384/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-SoapBottle-None-Toilet-424/trial_T20190907_004321_405868/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_and_place_simple-SaltShaker-None-Cabinet-10/trial_T20190906_191429_743650/game.tw-pddl" + ], + "pick_clean_then_place": [ + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Mug-None-CoffeeMachine-10/trial_T20190907_221355_558505/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Egg-None-Microwave-10/trial_T20190909_120712_273910/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Bowl-None-Cabinet-10/trial_T20190909_061158_110530/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Plate-None-CounterTop-10/trial_T20190908_213533_897289/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-SoapBar-None-CounterTop-424/trial_T20190907_074045_109439/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-SoapBar-None-CounterTop-424/trial_T20190907_074124_966890/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Knife-None-CounterTop-10/trial_T20190909_110347_624008/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Spatula-None-Drawer-10/trial_T20190907_080730_211959/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_clean_then_place_in_recep-Cloth-None-Cabinet-424/trial_T20190908_022321_380927/game.tw-pddl" + ], + "pick_heat_then_place": [ + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Mug-None-Cabinet-10/trial_T20190909_021247_306737/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Apple-None-GarbageCan-10/trial_T20190908_145356_918528/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Egg-None-GarbageCan-10/trial_T20190908_113610_425142/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Apple-None-GarbageCan-10/trial_T20190908_145143_820541/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Apple-None-GarbageCan-10/trial_T20190908_145050_918567/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Tomato-None-GarbageCan-10/trial_T20190908_225359_617900/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Potato-None-GarbageCan-10/trial_T20190907_161745_664033/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_heat_then_place_in_recep-Mug-None-Cabinet-10/trial_T20190909_021200_669381/game.tw-pddl" + ], + "pick_cool_then_place": [ + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Mug-None-Cabinet-10/trial_T20190909_121635_622676/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Lettuce-None-CounterTop-10/trial_T20190909_174807_646433/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Mug-None-Cabinet-10/trial_T20190909_121710_650938/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Lettuce-None-CounterTop-10/trial_T20190909_123133_763972/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Tomato-None-Microwave-10/trial_T20190909_102608_318800/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Potato-None-Microwave-10/trial_T20190907_033228_194678/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Tomato-None-Microwave-10/trial_T20190909_102644_926781/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_cool_then_place_in_recep-Mug-None-CoffeeMachine-10/trial_T20190907_183715_299073/game.tw-pddl" + ], + "look_at_obj": [ + "json_2.1.1/valid_unseen/look_at_obj_in_light-CD-None-DeskLamp-308/trial_T20190908_141942_810052/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-Book-None-DeskLamp-308/trial_T20190908_020048_814402/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-Mug-None-DeskLamp-308/trial_T20190908_201421_021646/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-Pencil-None-DeskLamp-308/trial_T20190908_220604_010430/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-Pencil-None-DeskLamp-308/trial_T20190908_220545_153480/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-CD-None-DeskLamp-308/trial_T20190908_142046_281296/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-Bowl-None-DeskLamp-308/trial_T20190907_133919_856963/game.tw-pddl", + "json_2.1.1/valid_unseen/look_at_obj_in_light-Mug-None-DeskLamp-308/trial_T20190908_201444_037645/game.tw-pddl" + ], + "pick_two_obj": [ + "json_2.1.1/valid_unseen/pick_two_obj_and_place-KeyChain-None-Safe-219/trial_T20190909_012027_782483/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-PepperShaker-None-Drawer-10/trial_T20190912_221016_460197/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-SoapBar-None-GarbageCan-424/trial_T20190909_064309_357168/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-CD-None-Safe-308/trial_T20190907_051056_585414/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-SoapBar-None-GarbageCan-424/trial_T20190909_064221_368939/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-CD-None-Safe-308/trial_T20190907_050942_897916/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-KeyChain-None-Safe-219/trial_T20190909_011803_423115/game.tw-pddl", + "json_2.1.1/valid_unseen/pick_two_obj_and_place-PepperShaker-None-Drawer-10/trial_T20190908_010306_215435/game.tw-pddl" + ] +} \ No newline at end of file diff --git a/AgentBench.old/data/dbbench/dev.jsonl b/AgentBench.old/data/dbbench/dev.jsonl new file mode 100644 index 0000000..ef5e2c4 --- /dev/null +++ b/AgentBench.old/data/dbbench/dev.jsonl @@ -0,0 +1,60 @@ +{"description": "What is the Presentation of Credentials has a Termination of Mission listed as August 15, 2000?", "label": ["March 19, 1998"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "US Ambassadors and Envoy Extraordinary to Colombia", "table_info": {"columns": [{"name": "Representative", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Presentation of Credentials", "type": "TEXT"}, {"name": "Termination of Mission", "type": "TEXT"}, {"name": "Appointed by", "type": "TEXT"}], "rows": [["Dabney H. Maury", "Envoy Extraordinary and Minister Plenipotentiary", "January 20, 1887", "June 22, 1889", "Grover Cleveland"], ["Luther F. McKinney", "Envoy Extraordinary and Minister Plenipotentiary", "July 17, 1893", "December 6, 1896", "Grover Cleveland"], ["Charles Burdett Hart", "Envoy Extraordinary and Minister Plenipotentiary", "July 19, 1897", "March 19, 1903", "William McKinley"], ["Arthur M. Beaupre", "Envoy Extraordinary and Minister Plenipotentiary", "April 13, 1903", "December 19, 1903", "Theodore Roosevelt"], ["William W. Russell", "Envoy Extraordinary and Minister Plenipotentiary", "December 9, 1904", "May 24, 1905", "Theodore Roosevelt"], ["John Barrett", "Envoy Extraordinary and Minister Plenipotentiary", "November 27, 1905", "September 24, 1906", "Theodore Roosevelt"], ["Thomas C. Dawson", "Envoy Extraordinary and Minister Plenipotentiary", "October 16, 1907", "April 25, 1909", "Theodore Roosevelt"], ["Elliott Northcott", "Envoy Extraordinary and Minister Plenipotentiary", "August 13, 1909", "September 16, 1910", "William H. Taft"], ["Thaddeus Austin Thompson", "Envoy Extraordinary and Minister Plenipotentiary", "August 30, 1913", "June 26, 1916", "Woodrow Wilson"], ["Hoffman Philip", "Envoy Extraordinary and Minister Plenipotentiary", "February 22, 1919", "May 29, 1922", "Woodrow Wilson"], ["Samuel H. Piles", "Envoy Extraordinary and Minister Plenipotentiary", "May 29, 1922", "September 17, 1928", "Warren G. Harding"], ["Jefferson Caffery", "Envoy Extraordinary and Minister Plenipotentiary", "November 28, 1928", "May 20, 1933", "Calvin Coolidge"], ["Sheldon Whitehouse", "Envoy Extraordinary and Minister Plenipotentiary", "December 6, 1933", "December 8, 1934", "Franklin D. Roosevelt"], ["Spruille Braden", "Ambassador Extraordinary and Plenipotentiary", "February 15, 1939", "March 12, 1942", "Franklin D. Roosevelt"], ["John C. Wiley", "Ambassador Extraordinary and Plenipotentiary", "December 16, 1944", "May 3, 1947", "Franklin D. Roosevelt"], ["Willard L. Beaulac", "Ambassador Extraordinary and Plenipotentiary", "September 30, 1947", "June 29, 1951", "Harry S. Truman"], ["Capus M. Waynick", "Ambassador Extraordinary and Plenipotentiary", "August 23, 1951", "September 21, 1953", "Harry S. Truman"], ["Rudolf E. Schoenfeld", "Ambassador Extraordinary and Plenipotentiary", "January 28, 1954", "January 26, 1955", "Dwight D. Eisenhower"], ["Philip W. Bonsal", "Ambassador Extraordinary and Plenipotentiary", "April 1, 1955", "April 24, 1957", "Dwight D. Eisenhower"], ["Dempster McIntosh", "Ambassador Extraordinary and Plenipotentiary", "July 30, 1959", "January 6, 1961", "Dwight D. Eisenhower"], ["Fulton Freeman", "Ambassador Extraordinary and Plenipotentiary", "June 15, 1961", "March 14, 1964", "John F. Kennedy"], ["Covey T. Oliver", "Ambassador Extraordinary and Plenipotentiary", "August 13, 1964", "August 29, 1966", "Lyndon B. Johnson"], ["Viron P. Vaky", "Ambassador Extraordinary and Plenipotentiary", "April 5, 1974", "June 23, 1976", "Richard Nixon"], ["Diego C. Asencio", "Ambassador Extraordinary and Plenipotentiary", "December 6, 1977", "June 22, 1980", "Jimmy Carter"], ["Thomas D. Boyatt", "Ambassador Extraordinary and Plenipotentiary", "December 3, 1980", "April 14, 1983", "Jimmy Carter"], ["Lewis Arthur Tambs", "Ambassador Extraordinary and Plenipotentiary", "May 2, 1983", "February 15, 1985", "Ronald Reagan"], ["Thomas Edmund McNamara", "Ambassador Extraordinary and Plenipotentiary", "October 4, 1988", "August 14, 1991", "Ronald Reagan"], ["John Doe", "Ambassador Extraordinary and Plenipotentiary", "January 1, 2020", "December 31, 2022", "Donald Trump"], ["Jane Smith", "Envoy Extraordinary and Minister Plenipotentiary", "June 1, 2018", "May 31, 2021", "Barack Obama"], ["Robert Jones", "Ambassador Extraordinary and Plenipotentiary", "March 1, 2019", "February 28, 2022", "Joe Biden"], ["Amanda Lee", "Envoy Extraordinary and Minister Plenipotentiary", "September 1, 2020", "August 31, 2023", "Donald Trump"], ["Kevin Kim", "Ambassador Extraordinary and Plenipotentiary", "December 1, 2021", "November 30, 2024", "Joe Biden"], ["Sarah Johnson", "Envoy Extraordinary and Minister Plenipotentiary", "July 1, 2019", "June 30, 2022", "Donald Trump"], ["Michael Brown", "Ambassador Extraordinary and Plenipotentiary", "August 1, 2020", "July 31, 2023", "Joe Biden"], ["Rachel Garcia", "Envoy Extraordinary and Minister Plenipotentiary", "October 1, 2022", "September 30, 2025", "Kamala Harris"], ["Daniel Lee", "Ambassador Extraordinary and Plenipotentiary", "February 1, 2023", "January 31, 2026", "Joe Biden"], ["Alexis Kim", "Envoy Extraordinary and Minister Plenipotentiary", "April 1, 2024", "March 31, 2027", "Hillary Clinton"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Representative", "Title", "Presentation of Credentials", "Termination of Mission", "Appointed by"], "add_description": "The name of this table is US Ambassadors and Envoy Extraordinary to Colombia, and the headers of this table are Representative,Title,Presentation of Credentials,Termination of Mission,Appointed by.", "sql": {"query": "SELECT Presentation of Credentials FROM \"US Ambassadors and Envoy Extraordinary to Colombia\" WHERE \"Termination of Mission\" = 'August 15, 2000';", "length": 144}, "source": "wikisql"} +{"description": "his nickname is \"jimmy,\" but what is his full name?", "label": ["Checco D'Angelo"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "race_results", "table_info": {"columns": [{"name": "Class", "type": "TEXT"}, {"name": "No", "type": "INT"}, {"name": "Team", "type": "TEXT"}, {"name": "Drivers", "type": "TEXT"}, {"name": "Chassis", "type": "TEXT"}, {"name": "Engine", "type": "TEXT"}, {"name": "Laps", "type": "INT"}], "rows": [["S\\n1.6", "160", "Silvestre Semilia", "Silvestre Semilia\\n Giuseppe Crescenti", "Alfa Romeo Giulia Spider", "Alfa Romeo 1.6 I4", "6"], ["GT\\n1.6", "186", "Luigi Rinaldi", "Luigi Rinaldi\\n Mario Radicella", "Alfa Romeo GTA", "Alfa Romeo 1.6 I4", "6"], ["P\\n3.0", "14", "Autodelta SpA", "Toine Hezemans\\n Masten Gregory", "Alfa Romeo T33/3", "Alfa Romeo 3.0L V8", "5"], ["P\\n2.0", "52", "Etna", "\"Peter von Serzawa\"\\n Santo Scigliano", "Fiat 124 Spider", "Fiat 2.0L I4", "5"], ["GT\\n1.6", "188", "Etna", "Checco D'Angelo\\n \"Jimmy\"", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "5"], ["GT\\n1.3", "288", "V10 Kleber", "Ferdi B\u00f6kmann\\n Hans E. B\u00f6hm", "Simca 1300", "Simca 1.3L I4", "5"], ["GT\\n2.0", "128", "", "Ignazio Capuano\\n Giancarlo Barba", "Porsche 911S", "Porsche 2.0L Flat-6", "4"], ["GT\\n1.6", "180", "Scuderia Pegaso", "Paolo de Luca\\n Giuseppe Vassallo", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "4"], ["S\\n1.6", "156", "Scuderia Pegaso", "Salvatore Barraco\\n \"Amphicar\"", "Alfa Romeo Giulia TZ", "Alfa Romeo 1.6L I4", "3"], ["S\\n1.6", "156", "Etna", "Giuseppe D'Amico\\n Girolamo Perniciaro", "Alfa Romeo Giulia TZ", "Alfa Romeo 1.6L I4", "3"], ["GT\\n1.6", "192", "Scuderia Pegaso", "Giovanni Dell'Olio\\n Vincenzo Virgilio", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "3"], ["GT\\n1.6", "198", "Salvatore Gagliano", "Salvatore Gagliano\\n Alfonso di Garbo", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "3"], ["GT\\n1.6", "204", "Gianluigi Verna", "Francesco Cosentino\\n Gianluigi Verna", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "3"], ["P\\n1.0", "254", "Romano Martini", "Francesco Patan\u00e9\\n \"Oras\"", "Fiat-Abarth 1000SP", "Abarth 1.0L I4", "3"], ["GT\\n1.6", "264", "Romano Martini", "Romano Martini\\n Alessandro Federico", "ATS 1000 SP", "Ford 1.0L I4", "3"], ["P\\n3.0", "38", "Abarth-Osella", "Arturo Merzario\\n Johannes Ortner", "Abarth 3000SP", "Abarth 3.0L V8", "2"], ["P\\n1.0", "256", "Scuderia Brescia Corse", "Luigi Moreschi\\n \"Patrizia\"", "AMS SP", "Ford 1.0L I4", "2"], ["P\\n1.0", "266", "\"Gero\"", "\"Gero\"\\n \"Roger\"", "De Sanctis", "Ford 1.0L I4", "2"], ["GT\\n1.6", "276", "Scuderia Pegaso", "Antonio Catalano\\n Marco de Bartoli", "Lancia Fulvia HF", "Lancia 1.6L V4", "2"], ["GT\\n2.0", "124", "Giampaolo Baruffi", "Giancarlo Sala\\n Giampaolo Baruffi", "Porsche 911", "Porsche 2.0L Flat-6", "1"], ["GT\\n1.6", "196", "Giovanni Rizzo", "Giovanni Rizzo\\n Stefano Alongi", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "1"], ["S\\n1.3", "232", "Aldo Bersano", "Aldo Bersano\\n William Scheeren", "Abarth 1300S", "Abarth 1.3L I4", "1"], ["GT\\n1.3", "272", "Jolly Club", "Antonio Trenti\\n Alberto Fasce", "Lancia Fulvia HF", "Lancia 1.6L V4", "1"], ["P\\n3.0", "20", "Porsche System", "Vic Elford\\n Hans Herrmann", "Porsche 908/03", "Porsche 3.0L Flat-8", "0"], ["P\\n3.0", "32", "Autodelta SpA", "Umberto Maglioli\\n Nanni Galli", "Alfa Romeo T33/3", "Alfa Romeo 3.0L V8", "0"], ["GT\\n1.6", "204", "Antonio Guagliardo", "Antonio La Luce\\n Antonio Guagliardo", "Abarth 2000S", "Alfa Romeo 1.6L I4", "0"], ["P\\n1.3", "220", "Jack Wheeler", "Jack Wheeler\\n Martin Davidson", "Jerboa SP", "BMC 1.3L I4", "0"], ["S\\n1.3", "234", "Settecolli", "Enzo Buzzetti\\n Gianni Marini", "Abarth 1300S", "Abarth 1.6L I4", "0"], ["GT\\n1.3", "280", "Scuderia Pegaso", "Giuseppe Chiaramonte\\n Giuseppe Spatafora", "Lancia Fulvia HF", "Lancia 1.6L V4", "0"], ["Class TEXT", "No INT", "Team TEXT", "Drivers TEXT", "Chassis TEXT", "Engine TEXT", "Laps INT"], ["GT\\n1.6", "190", "Scuderia Pegaso", "Giovanni Florio\\n Dr. Piero Baruffi", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "5"], ["P\\n3.0", "26", "Autodelta SpA", "Franco Labate\\n Andrea Niccolai", "Alfa Romeo T33/3", "Alfa Romeo 3.0L V8", "4"], ["GT\\n2.0", "120", "Scuderia Pegaso", "Pino Castello\\n Filippo Caldara", "Porsche 911", "Porsche 2.0L Flat-6", "6"], ["S\\n1.6", "162", "Giovanni d'Amico", "Giovanni d'Amico\\n Mario Attard", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "4"], ["GT\\n1.6", "194", "Scuderia Pegaso", "Nin\u00ec Todaro\\n Giovanni Mollica", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "3"], ["GT\\n1.6", "200", "Giuseppe Simone", "Giuseppe Simone\\n Giuseppe Rabito", "Alfa Romeo GTA", "Alfa Romeo 1.6L I4", "3"], ["P\\n1.0", "260", "Scuderia Brescia Corse", "Giorgio Moreschi\\n Franco Morosini", "AMS SP", "Ford 1.0L I4", "2"], ["GT\\n1.6", "286", "Scuderia Pegaso", "Francesco Restivo\\n Salvatore Cali", "Fiat-Abarth 1000", "Abarth 1.0L I4", "2"], ["P\\n3.0", "44", "David Piper Racing", "David Piper\\n Tony Maggs", "Ferrari 365 P2", "Ferrari 4.0L V12", "1"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Class", "No", "Team", "Drivers", "Chassis", "Engine", "Laps"], "add_description": "The name of this table is race_results, and the headers of this table are Class,No,Team,Drivers,Chassis,Engine,Laps.", "sql": {"query": "SELECT Drivers FROM race_results WHERE Drivers LIKE '%jimmy%' LIMIT 1;", "length": 70}, "source": "wikitq"} +{"description": "how many weeks did julie covington's \"don't cry for me argentina\" spend at the top of australia's singles chart?", "label": ["7"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Music Chart History", "table_info": {"columns": [{"name": "#", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Artist", "type": "TEXT"}, {"name": "Highest pos. reached", "type": "INT"}, {"name": "weeks at No. 1", "type": "TEXT"}], "rows": [["1.", "\"Don't Cry for Me Argentina\"", "Julie Covington", "1", "7"], ["2.", "\"The Way You That You Do It\"", "Pussyfoot", "1", "7"], ["3.", "\"I Just Want to Be Your Everything\"", "Andy Gibb", "1", "7"], ["4.", "\"That's Rock and Roll\"", "Shaun Cassidy", "2", ""], ["5.", "\"Living Next Door to Alice\"", "Smokie", "2", ""], ["6.", "\"I Go To Rio\"", "Peter Allen", "1", "5"], ["7.", "\"Torn Between Two Lovers\"", "Mary McGregor", "1", "4"], ["8.", "\"Walk Right In\"", "Dr Hook", "1", "5"], ["9.", "\"You're Moving Out Today\"", "Carole Bayer Sager", "1", "4"], ["10.", "\"If You Leave Me Now\"", "Chicago", "1", "5 (pkd #1 in 76 & 77)"], ["11.", "\"Don't Give Up on Us\"", "David Soul", "1", "3"], ["12.", "\"Lido Shuffle\" / \"What Can I Say\"", "Boz Scaggs", "2", ""], ["13.", "\"You and Me\"", "Alice Cooper", "2", ""], ["14.", "\"Dance Little Lady Dance\"", "Tina Charles", "4", ""], ["15.", "\"When I Need You\"", "Leo Sayer", "8", ""], ["16.", "\"Don't Fall in Love\"", "Ferrets", "2", ""], ["17.", "\"I Feel Love\"", "Donna Summer", "1", "1"], ["18.", "\"Help is on its Way\"", "Little River Band", "1", "1"], ["19.", "\"You Gotta Get Up and Dance\"", "Supercharge", "3", ""], ["20.", "\"Mull of Kintyre\"", "Wings", "1", "11 (pkd #1 in 77 & 78)"], ["21.", "\"Don't Leave Me This Way\"", "Thelma Houston", "6", ""], ["22.", "\"Ain't Gonna Bump No More with No Big Fat Woman\"", "Joe Tex", "2", ""], ["23.", "\"You're in My Heart\"", "Rod Stewart", "1", "1"], ["24.", "\"Ma Baker\"", "Boney M", "5", ""], ["25.", "\"Lucille\"", "Kenny Rogers", "7", ""], ["26.", "\"Livin' la Vida Loca\"", "Ricky Martin", "1", "3"], ["27.", "\"Smooth\"", "Santana featuring Rob Thomas", "1", "12"], ["28.", "\"No Scrubs\"", "TLC", "3", ""], ["29.", "\"All Star\"", "Smash Mouth", "4", ""], ["30.", "\"Baby One More Time\"", "Britney Spears", "1", "2"], ["31.", "\"Say My Name\"", "Destiny's Child", "1", "3"], ["32.", "\"Genie in a Bottle\"", "Christina Aguilera", "1", "5"], ["33.", "\"Smooth Criminal\"", "Michael Jackson", "7", ""], ["34.", "\"I Will Always Love You\"", "Whitney Houston", "1", "10"], ["35.", "\"You Are Not Alone\"", "Michael Jackson", "1", "5"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["#", "Title", "Artist", "Highest pos. reached", "weeks at No. 1"], "add_description": "The name of this table is Music Chart History, and the headers of this table are #,Title,Artist,Highest pos. reached,weeks at No. 1.", "sql": {"query": "SELECT weeks_at_No_1 FROM `Music Chart History` WHERE Artist = 'Julie Covington' AND Title = 'Don\\'t Cry for Me Argentina';", "length": 123}, "source": "wikitq"} +{"description": "how many floors does the capitol square have?", "label": ["26"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "skyscrapers_in_Columbus", "table_info": {"columns": [{"name": "Rank", "type": "integer"}, {"name": "Name", "type": "TEXT"}, {"name": "Height\\nft / m", "type": "TEXT"}, {"name": "Floors", "type": "integer"}, {"name": "Year", "type": "integer"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1", "Rhodes State Office Tower", "629 / 192", "41", "1973", "Has been the tallest building in Columbus and the tallest mid-block skyscraper in Ohio since 1973. Tallest building constructed in Columbus in the 1970s."], ["2", "LeVeque Tower", "555 / 169", "47", "1927", "Tallest building constructed in Columbus in the 1920s."], ["3", "William Green Building", "530 / 162", "33", "1990", "Tallest building constructed in Columbus in the 1990s."], ["4", "Huntington Center", "512 / 156", "37", "1984", "Tallest building constructed in Columbus in the 1980s."], ["5", "Vern Riffe State Office Tower", "503 / 153", "32", "1988", ""], ["6", "One Nationwide Plaza", "485 / 148", "40", "1976", ""], ["7", "Franklin County Courthouse", "464 / 141", "27", "1991", ""], ["8", "AEP Building", "456 / 139", "31", "1983", ""], ["9", "Borden Building", "438 / 134", "34", "1974", ""], ["10", "Three Nationwide Plaza", "408 / 124", "27", "1989", ""], ["11", "One Columbus Center", "366 / 112", "26", "1987", ""], ["12", "Columbus Center", "357 / 109", "25", "1964", "Tallest building constructed in Columbus in the 1960s. Was built as the Bank One Tower."], ["13", "Capitol Square", "350 / 107", "26", "1984", ""], ["14", "Continental Center", "348 / 106", "26", "1973", ""], ["15", "PNC Bank Building", "317 / 97", "25", "1977", ""], ["16", "Miranova Condominiums", "314 / 96", "26", "2001", "Tallest residential building in the state of Ohio. Tallest building built in the 2000s."], ["17", "Fifth Third Center", "302 / 92", "25", "1998", ""], ["18", "Motorists Mutual Building", "286 / 87", "21", "1973", ""], ["19", "Midland Building", "280 / 85", "21", "1970", ""], ["20", "The Condominiums at North Bank Park", "267 / 81", "20", "2007", ""], ["21=", "Lincoln Tower Dormitory", "260 / 79", "26", "1967", ""], ["21=", "Morrill Tower Dormitory", "260 / 79", "26", "1967", ""], ["23", "Hyatt Regency Columbus", "256 / 78", "20", "1980", ""], ["24", "Key Bank Building", "253 / 77", "20", "1963", ""], ["25", "Adam's Mark Hotel", "243 / 74", "16", "1961", ""], ["26", "Town Center", "226 / 69", "17", "1974", ""], ["27", "8 East Broad Street", "212 / 64.6", "17", "1906", ""], ["28", "Huntington Building", "202 / 59.4", "13", "1926", ""], ["29", "Ohio Judicial Center", "200 / 57.9", "14", "1933", ""], ["30", "16 East Broad Street", "180 / 64.4", "13", "1900", ""], ["31", "ABC Building", "300 / 91", "25", "1995", ""], ["32", "XYZ Tower", "450 / 137", "35", "2005", "Tallest building in the city."], ["33", "Def Plaza", "280 / 85", "22", "2010", ""], ["34", "GHI Tower", "600 / 183", "45", "1990", ""], ["35", "JKL Center", "350 / 107", "28", "1988", ""], ["36", "MNO Building", "250 / 76", "20", "1997", ""], ["37", "PQR House", "175 / 53", "15", "1982", ""], ["38", "STU Tower", "410 / 125", "33", "2003", ""], ["39", "VWX Building", "310 / 94", "25", "1999", ""], ["40", "YZA Plaza", "500 / 152", "40", "2001", ""]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Rank", "Name", "Height\\nft / m", "Floors", "Year", "Notes"], "add_description": "The name of this table is skyscrapers_in_Columbus, and the headers of this table are Rank,Name,Height\\nft / m,Floors,Year,Notes.", "sql": {"query": "SELECT Floors FROM skyscrapers_in_Columbus WHERE Name='Capitol Square';", "length": 71}, "source": "wikitq"} +{"description": "What is the total game number with athlone town as the opponent?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Game Schedule", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["1", "20 July 2008", "Sporting CP", "Away", "3\u20131", "\u2014"], ["2", "22 July 2008", "Vit\u00f3ria de Set\u00fabal", "Away", "1\u20131", "\u2014"], ["3", "28 July 2008", "Cobh Ramblers", "Away", "4\u20130", "\u2014"], ["4", "30 July 2008", "Nottingham Forest", "Away", "1\u20130", "12,573"], ["5", "3 August 2008", "Ajax", "Home", "0\u20131", "19,768"], ["6", "7 August 2008", "Athlone Town", "Away", "6\u20130", "\u2014"], ["7", "9 August 2008", "Shamrock Rovers", "Away", "Postponed", "\u2014"], ["8", "12 August 2008", "FC Porto", "Home", "2\u20132", "24,691"], ["9", "15 August 2008", "Bohemian FC", "Away", "3\u20130", "\u2014"], ["10", "20 August 2008", "St Patrick's Athletic", "Home", "1\u20130", "20,407"], ["11", "25 August 2008", "Cork City", "Away", "2\u20131", "\u2014"], ["12", "29 August 2008", "Derry City", "Home", "0\u20130", "18,743"], ["13", "4 September 2008", "Bray Wanderers", "Away", "4\u20131", "\u2014"], ["14", "7 September 2008", "Sligo Rovers", "Home", "2\u20130", "22,692"], ["15", "13 September 2008", "Drogheda United", "Away", "1\u20130", "\u2014"], ["16", "19 September 2008", "Galway United", "Home", "3\u20131", "21,873"], ["17", "24 September 2008", "UCD", "Away", "2\u20130", "\u2014"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Game", "Date", "Opponent", "Venue", "Result", "Attendance"], "add_description": "The name of this table is Game Schedule, and the headers of this table are Game,Date,Opponent,Venue,Result,Attendance.", "sql": {"query": "SELECT COUNT(Game) AS TotalGames FROM `Game Schedule` WHERE Opponent='Athlone Town';", "length": 84}, "source": "wikisql"} +{"description": "what is the total number of register listings from dover?", "label": ["17"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "historic_sites", "table_info": {"columns": [{"name": "", "type": "TEXT"}, {"name": "Name on the Register", "type": "DATE"}, {"name": "Date listed", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "City or town", "type": "TEXT"}, {"name": "Summary", "type": "TEXT"}], "rows": [["1", "Back River Farm", "June 22, 1984\\n(#84003236)", "Bay View Rd.\\n43\u00b008\u203221\u2033N 70\u00b051\u203216\u2033W\ufeff / \ufeff43.139167\u00b0N 70.854444\u00b0W", "Dover", ""], ["2", "Canaan Chapel", "March 11, 1982\\n(#82001877)", "Canaan Rd.\\n43\u00b012\u203209\u2033N 71\u00b006\u203204\u2033W\ufeff / \ufeff43.2025\u00b0N 71.101111\u00b0W", "Barrington", ""], ["3", "County Farm Bridge", "May 21, 1975\\n(#75000237)", "Northwest of Dover on County Farm Rd.\\n43\u00b013\u203214\u2033N 70\u00b056\u203238\u2033W\ufeff / \ufeff43.220556\u00b0N 70.943889\u00b0W", "Dover", "Over Cocheco River"], ["4", "Durham Historic District", "May 31, 1980\\n(#80000308)", "Main St. and Newmarket Rd.\\n43\u00b007\u203247\u2033N 70\u00b055\u203210\u2033W\ufeff / \ufeff43.129722\u00b0N 70.919444\u00b0W", "Durham", ""], ["5", "Farmington Town Pound", "September 2, 1993\\n(#93000884)", "Northwestern side of Pound Rd. 300\u00a0ft (91\u00a0m) north of the junction of Ten Rod Rd.\\n43\u00b021\u203233\u2033N 71\u00b004\u203249\u2033W\ufeff / \ufeff43.359167\u00b0N 71.080278\u00b0W", "Farmington", ""], ["6", "First Parish Church", "March 11, 1982\\n(#82001696)", "218 Central Ave.\\n43\u00b010\u203256\u2033N 70\u00b052\u203227\u2033W\ufeff / \ufeff43.182222\u00b0N 70.874167\u00b0W", "Dover", ""], ["7", "First Parish Church Site-Dover Point", "May 27, 1983\\n(#83001153)", "Dover Point Rd.\\n43\u00b008\u203226\u2033N 70\u00b050\u203221\u2033W\ufeff / \ufeff43.140556\u00b0N 70.839167\u00b0W", "Dover", ""], ["8", "Free Will Baptist Church", "November 13, 1980\\n(#80000310)", "Ridge Top Road\\n43\u00b023\u203259\u2033N 71\u00b009\u203233\u2033W\ufeff / \ufeff43.399722\u00b0N 71.159167\u00b0W", "New Durham", ""], ["9", "Garrison Hill Park and Tower", "September 11, 1987\\n(#87001413)", "Abbie Sawyer Memorial Dr.\\n43\u00b012\u203234\u2033N 70\u00b052\u203213\u2033W\ufeff / \ufeff43.209444\u00b0N 70.870278\u00b0W", "Dover", ""], ["10", "Green Street School", "March 7, 1985\\n(#85000481)", "104 Green St.\\n43\u00b015\u203223\u2033N 70\u00b051\u203250\u2033W\ufeff / \ufeff43.256389\u00b0N 70.863889\u00b0W", "Somersworth", ""], ["11", "William Hale House", "November 18, 1980\\n(#80000309)", "5 Hale St.\\n43\u00b011\u203236\u2033N 70\u00b052\u203229\u2033W\ufeff / \ufeff43.193376\u00b0N 70.874858\u00b0W", "Dover", ""], ["12", "Richard Hayes House", "February 27, 1986\\n(#86000283)", "184 Gonic Rd.\\n43\u00b015\u203238\u2033N 70\u00b058\u203244\u2033W\ufeff / \ufeff43.260556\u00b0N 70.978889\u00b0W", "Rochester", ""], ["13", "Jenness Farm", "March 2, 2001\\n(#01000206)", "626 Pickering Rd.\\n43\u00b014\u203236\u2033N 70\u00b056\u203212\u2033W\ufeff / \ufeff43.243333\u00b0N 70.936667\u00b0W", "Rochester", ""], ["14", "Lehoullier Building", "December 26, 1979\\n(#79000211)", "161-169 Main St.\\n43\u00b015\u203231\u2033N 70\u00b051\u203246\u2033W\ufeff / \ufeff43.258611\u00b0N 70.862778\u00b0W", "Somersworth", ""], ["15", "Milton Town House", "November 26, 1980\\n(#80000311)", "NH 125 and Town House Rd.\\n43\u00b026\u203227\u2033N 70\u00b059\u203205\u2033W\ufeff / \ufeff43.440833\u00b0N 70.984722\u00b0W", "Milton", ""], ["16", "New Durham Meetinghouse and Pound", "December 8, 1980\\n(#80000312)", "Old Bay Rd.\\n43\u00b025\u203225\u2033N 71\u00b007\u203242\u2033W\ufeff / \ufeff43.423611\u00b0N 71.128333\u00b0W", "New Durham", ""], ["17", "New Durham Town Hall", "November 13, 1980\\n(#80000313)", "Main St. and Ridge Rd.\\n43\u00b026\u203202\u2033N 71\u00b009\u203255\u2033W\ufeff / \ufeff43.433889\u00b0N 71.165278\u00b0W", "New Durham", ""], ["18", "Plumer-Jones Farm", "March 23, 1979\\n(#79000212)", "North of Milton on NH 125\\n43\u00b027\u203244\u2033N 70\u00b059\u203237\u2033W\ufeff / \ufeff43.462222\u00b0N 70.993611\u00b0W", "Milton", ""], ["19", "Plummer Homestead", "June 14, 2002\\n(#02000638)", "1273 White Mountain Highway\\n43\u00b027\u203235\u2033N 70\u00b059\u203233\u2033W\ufeff / \ufeff43.459722\u00b0N 70.9925\u00b0W", "Milton", ""], ["20", "Public Market", "March 7, 1985\\n(#85000541)", "93 Washington St.\\n43\u00b011\u203243\u2033N 70\u00b052\u203231\u2033W\ufeff / \ufeff43.195278\u00b0N 70.875278\u00b0W", "Dover", ""], ["21", "Queensbury Mill", "April 10, 1987\\n(#86003362)", "1 Market St.\\n43\u00b015\u203254\u2033N 70\u00b051\u203258\u2033W\ufeff / \ufeff43.265\u00b0N 70.866111\u00b0W", "Somersworth", ""], ["22", "Michael Reade House", "February 12, 1980\\n(#80000314)", "43 Main St.\\n43\u00b011\u203250\u2033N 70\u00b052\u203221\u2033W\ufeff / \ufeff43.197222\u00b0N 70.8725\u00b0W", "Dover", ""], ["23", "Religious Society of Friends Meetinghouse", "February 29, 1980\\n(#80000421)", "141 Central Ave.\\n43\u00b011\u203212\u2033N 70\u00b052\u203225\u2033W\ufeff / \ufeff43.186667\u00b0N 70.873611\u00b0W", "Dover", ""], ["24", "Rochester Commercial and Industrial District", "April 8, 1983\\n(#83001154)", "N. Main, Wakefield, Hanson, and S. Main Sts. and Central Square\\n43\u00b018\u203211\u2033N 70\u00b058\u203234\u2033W\ufeff / \ufeff43.303056\u00b0N 70.976111\u00b0W", "Rochester", ""], ["25", "Rollinsford Town Hall", "March 5, 1999\\n(#99000268)", "667 Main St.\\n43\u00b014\u203208\u2033N 70\u00b049\u203217\u2033W\ufeff / \ufeff43.235556\u00b0N 70.821389\u00b0W", "Rollinsford", ""], ["26", "St. Thomas Episcopal Church", "June 7, 1984\\n(#84003241)", "5 Hale St.\\n43\u00b011\u203237\u2033N 70\u00b052\u203230\u2033W\ufeff / \ufeff43.193611\u00b0N 70.875\u00b0W", "Dover", ""], ["27", "Salmon Falls Mill Historic District", "February 29, 1980\\n(#80000315)", "Front St.\\n43\u00b014\u203210\u2033N 70\u00b049\u203205\u2033W\ufeff / \ufeff43.236111\u00b0N 70.818056\u00b0W", "Rollinsford", ""], ["28", "Sawyer Building", "May 23, 1980\\n(#80000316)", "4-6 Portland St.\\n43\u00b011\u203248\u2033N 70\u00b052\u203221\u2033W\ufeff / \ufeff43.196667\u00b0N 70.8725\u00b0W", "Dover", ""], ["29", "Sawyer Woolen Mills", "September 13, 1989\\n(#89001208)", "1 Mill St.\\n43\u00b010\u203244\u2033N 70\u00b052\u203235\u2033W\ufeff / \ufeff43.178889\u00b0N 70.876389\u00b0W", "Dover", ""], ["30", "Smith Chapel", "February 13, 2013\\n(#13000009)", "45 Mill Pond Rd.\\n43\u00b007\u203242\u2033N 70\u00b055\u203227\u2033W\ufeff / \ufeff43.128355\u00b0N 70.924292\u00b0W", "Durham", ""], ["31", "Strafford County Farm", "February 25, 1981\\n(#81000100)", "County Farm Rd.\\n43\u00b013\u203203\u2033N 70\u00b056\u203231\u2033W\ufeff / \ufeff43.2175\u00b0N 70.941944\u00b0W", "Dover", ""], ["32", "Strafford Union Academy", "September 22, 1983\\n(#83001155)", "NH 126 and NH 202A\\n43\u00b016\u203207\u2033N 71\u00b007\u203223\u2033W\ufeff / \ufeff43.268611\u00b0N 71.123056\u00b0W", "Strafford", ""], ["33", "Gen. John Sullivan House", "November 28, 1972\\n(#72000089)", "23 Newmarket Rd.\\n43\u00b007\u203248\u2033N 70\u00b055\u203205\u2033W\ufeff / \ufeff43.13\u00b0N 70.918056\u00b0W", "Durham", "Home of American Revolutionary War General John Sullivan, elected President of New Hampshire."], ["34", "Thompson Hall", "December 6, 1996\\n(#96001468)", "Off Main St., University of New Hampshire campus\\n43\u00b008\u203209\u2033N 70\u00b055\u203259\u2033W\ufeff / \ufeff43.135833\u00b0N 70.933056\u00b0W", "Durham", ""], ["35", "US Post Office-Dover Main", "July 17, 1986\\n(#86002273)", "133-137 Washington St.\\n43\u00b011\u203242\u2033N 70\u00b052\u203239\u2033W\ufeff / \ufeff43.195\u00b0N 70.8775\u00b0W", "Dover", ""], ["36", "US Post Office-Somersworth Main", "July 17, 1986\\n(#86002246)", "2 Elm St.\\n43\u00b015\u203233\u2033N 70\u00b052\u203218\u2033W\ufeff / \ufeff43.259167\u00b0N 70.871667\u00b0W", "Somersworth", ""], ["37", "Wiswall Falls Mills Site", "March 18, 1988\\n(#88000184)", "John Hatch Park\\nSouth of Wiswall Road just east of the Lamprey River\\n43\u00b006\u203215\u2033N 70\u00b057\u203244\u2033W\ufeff / \ufeff43.1043\u00b0N 70.9621\u00b0W", "Durham", ""], ["38", "Woodbury Mill", "March 25, 2013\\n(#13000156)", "1 Dover St.\\n43\u00b012\u203207\u2033N 70\u00b052\u203229\u2033W\ufeff / \ufeff43.201985\u00b0N 70.874587\u00b0W", "Dover", ""], ["39", "Woodman Institute", "July 24, 1980\\n(#80000317)", "182 Central Ave.\\n43\u00b011\u203220\u2033N 70\u00b052\u203228\u2033W\ufeff / \ufeff43.188889\u00b0N 70.874444\u00b0W", "Dover", ""], ["40", "Samuel Wyatt House", "December 2, 1982\\n(#82000626)", "7 Church St.\\n43\u00b011\u203230\u2033N 70\u00b052\u203231\u2033W\ufeff / \ufeff43.191667\u00b0N 70.875278\u00b0W", "Dover", ""]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["", "Name on the Register", "Date listed", "Location", "City or town", "Summary"], "add_description": "The name of this table is historic_sites, and the headers of this table are ,Name on the Register,Date listed,Location,City or town,Summary.", "sql": {"query": "SELECT COUNT(*) FROM historic_sites WHERE `Name on the Register` LIKE '%Dover%' AND `Date listed` LIKE '%#%';", "length": 109}, "source": "wikitq"} +{"description": "who was the only wrestler to have a title reign in 1992?", "label": ["Dick Murdoch"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Wrestler Title Reigns", "table_info": {"columns": [{"name": "Wrestler:", "type": "TEXT"}, {"name": "Reigns:", "type": "INT"}, {"name": "Date:", "type": "DATE"}, {"name": "Place:", "type": "TEXT"}, {"name": "Notes:", "type": "TEXT"}], "rows": [["Ron Starr", "1", "September 19, 1986", "Ponce, Puerto Rico", "Defeated Invader I in a Tournament Final"], ["Invader I", "1", "November 5, 1986", "San Juan, Puerto Rico", ""], ["Jason The Terrible", "1", "January 17, 1987", "Caguas, Puerto Rico", ""], ["Invader I", "2", "September 18, 1987", "San Juan, Puerto Rico", ""], ["Grizzly Boone", "1", "October 24, 1987", "Bayamon, Puerto Rico", ""], ["Invader I", "3", "November 25, 1987", "San Juan, Puerto Rico", "Held up after a match against Super Black Ninja on January 8, 1988 in San Juan, PR"], ["Super Black Ninja", "1", "February 6, 1988", "Guaynabo, Puerto Rico", ""], ["Invader I", "4", "April 2, 1988", "Bayamon, Puerto Rico", ""], ["Ron Starr", "2", "June 25, 1988", "Carolina, Puerto Rico", ""], ["Carlos Colon", "1", "August 20, 1988", "Bayamon, Puerto Rico", ""], ["Jason The Terrible", "2", "January 28, 1989", "Carolina, Puerto Rico", ""], ["Carlos Colon", "2", "March 1, 1989", "Carolina, Puerto Rico", "Vacant on May 22, 1989 after Colon was injured by Steve Strong on May 20, 1989"], ["TNT", "1", "June 17, 1989", "San Juan, Puerto Rico", "Defeats Abudda Dein; vacant on February 9, 1990 when TNT wins the WWC Universal Heavyweight Title"], ["Leo Burke", "1", "March 24, 1990", "Caguas, Puerto Rico", "Defeats Carlos Colon in a tournament final."], ["TNT", "2", "April 25, 1990", "San Juan, Puerto Rico", "Won the vacant title"], ["Action Jackson (Original TNT)", "1", "January 26, 1991", "Caguas, Puerto Rico", "Wins tournament; loses a name match on March 2, 1991 in Bayamon, PR"], ["TNT", "3", "March 30, 1991", "Bayamon, Puerto Rico", ""], ["King Kong", "1", "April 20, 1991", "Bayamon, Puerto Rico", ""], ["TNT", "4", "June 1, 1991", "Bayamon, Puerto Rico", ""], ["Fidel Sierra", "1", "October 19, 1991", "Bayamon, Puerto Rico", ""], ["TNT", "5", "October 26, 1991", "Carolina, Puerto Rico", ""], ["Dick Murdoch", "1", "November 23, 1991", "Arroyo, Puerto Rico", ""], ["Invader I", "5", "December 25, 1991", "San Juan, Puerto Rico", ""], ["Dick Murdoch", "2", "January 6, 1992", "San Juan, Puerto Rico", "Vacant on January 6, 1993 when Murdoch leaves the promotion."], ["Carlos Colon", "3", "June 18, 1994", "San Juan, Puerto Rico", "Defeated Mighty Koadiak in a tournament final."], ["Mighty Koadiak", "1", "1994", "", ""], ["Rex King", "1", "1995", "", ""], ["Sean Morley", "1", "1995", "", ""], ["Ricky Santana", "1", "1995", "", ""], ["Rex King", "2", "1995", "", ""], ["Pulgarcito", "1", "November 11, 1995", "", ""], ["Mighty Koadiak", "2", "November 26, 1995", "", ""], ["Sweet Brown Sugar (Skip Young)", "1", "January 6, 1996", "Caguas, Puerto Rico", ""], ["Ricky Santana", "2", "March 23, 1996", "Caguas, Puerto Rico", ""], ["\"Jungle\" Jim Steele", "1", "April 20, 1996", "Caguas, Puerto Rico", ""], ["El Bronco I", "1", "May 18, 1996", "Caguas, Puerto Rico", ""], ["Sean Morley", "2", "May 30, 1996", "Caguas, Puerto Rico", "Joins the WWF in 1997, but is still recognized as champion; title becomes vacant on March 3, 1999."], ["Glamour Boy Shane", "1", "April 2, 1999", "Guaynabo, Puerto Rico", "Defeated \"Jungle\" Jim Steele for vacant title."], ["Mustafa Saed", "1", "August 14, 1999", "Caguas, Puerto Rico", ""], ["Glamour Boy Shane", "2", "September 19, 1999", "Guaynabo, Puerto Rico", ""], ["Chicky Starr", "1", "November 13, 1999", "Naguabo, Puerto Rico", ""], ["Glamour Boy Shane", "3", "January 6, 2000", "Caguas, Puerto Rico", ""], ["Rex King", "3", "March 19, 2000", "Cabo Rojo, Puerto Rico", ""], ["Chris Grant", "1", "April 21, 2001", "Orocovis, Puerto Rico", ""], ["Alex Porteau", "1", "July 7, 2001", "Carolina, Puerto Rico", ""], ["Chris Grant", "2", "July 21, 2001", "Orocovis, Puerto Rico", "wins the title by forfeit"], ["Bad Boy Bradley", "1", "September 8, 2001", "Bayam\u00f3n, Puerto Rico", ""], ["Super Gladiator", "1", "October 6, 2001", "Caguas, Puerto Rico", ""], ["Ricky Santana", "3", "March 16, 2002", "Aibonito, Puerto Rico", ""], ["Rico Suave", "1", "April 6, 2002", "Caguas, Puerto Rico", ""], ["Ray Gonzalez", "1", "April 27, 2002", "San Lorenzo, Puerto Rico", ""], ["Carlos Colon", "4", "June 8, 2002", "Toa Baja, Puerto Rico", ""], ["Ray Gonzalez", "2", "June 15, 2002", "Caguas, Puerto Rico", "Vacates title on July 1, 2002 when he leaves the company."], ["Wilfredo Alejandro", "1", "July 6, 2002", "Cayey, Puerto Rico", "wins a battle royal for the vacant title."], ["Fidel Sierra", "2", "August 24, 2002", "Coamo, Puerto Rico", ""], ["Chris Candido", "1", "June 6, 2003", "Cayey, Puerto Rico", ""], ["Vengador Boricua", "1", "July 19, 2003", "Carolina, Puerto Rico", "title becomes inactive when Vengador Boricua leaves the company."], ["Superstar Romeo", "1", "February 3, 2007", "Caguas, Puerto Rico", "Romeo beat Barabas Jr. to win the reactivated title."], ["Rico Suave", "2", "March 17, 2007", "Bayamon, Puerto Rico", ""], ["Crazy Rudy", "1", "April 28, 2007", "Bayamon, Puerto Rico", ""], ["Ash Rubinsky", "1", "November 24, 2007", "Bayamon, Puerto Rico", "Wins a 7-man battle royal."], ["B.J.", "1", "January 6, 2008", "Choliseo, Puerto Rico", "Wins the title after winning an 11 man Battle Royal"], ["Hammett", "1", "March 1, 2008", "Tao Baja, Puerto Rico", ""], ["B.J.", "2", "March 15, 2008", "Lares, Puerto Rico", ""], ["Chris Joel", "1", "May 10, 2008", "Bayamon, Puerto Rico", ""], ["Vacant", "", "", "", "Chris Joel Jumps to IWA"], ["Mike Smith", "1", "January 1, 2020", "Toronto, Canada", "Defeated Bill Johnson in a grueling championship match."], ["Bill Johnson", "1", "March 14, 2020", "Vancouver, Canada", "Handily defeated challenger Frank Thompson in a title defense."], ["Frank Thompson", "1", "June 27, 2020", "Montreal, Canada", "Won a tournament final to claim the championship."], ["Sarah Davis", "1", "August 15, 2020", "Calgary, Canada", "Became the first woman to win the championship in a historic match."], ["John Green", "1", "November 1, 2020", "Edmonton, Canada", "Defeated Bobby Brown to capture the championship."], ["Bobby Brown", "1", "January 23, 2021", "Winnipeg, Canada", "Regained the championship in a rematch against John Green."], ["Tom Wilson", "1", "April 17, 2021", "Halifax, Canada", "Defeated previous champion Bobby Brown in a shocking upset."], ["Eddie Zhang", "1", "June 5, 2021", "Charlottetown, Canada", "Won the championship in a fatal four-way match."], ["Devon Thompson", "1", "September 18, 2021", "Regina, Canada", "Captured the championship in a hard-fought match against Eddie Zhang."], ["Kristen Lee", "1", "December 11, 2021", "Yellowknife, Canada", "Became the new champion by defeating Devon Thompson in a historic title match."]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Wrestler:", "Reigns:", "Date:", "Place:", "Notes:"], "add_description": "The name of this table is Wrestler Title Reigns, and the headers of this table are Wrestler:,Reigns:,Date:,Place:,Notes:.", "sql": {"query": "SELECT Wrestler FROM `Wrestler Title Reigns` WHERE Date LIKE '%1992%' GROUP BY Wrestler HAVING COUNT(*)=1;", "length": 106}, "source": "wikitq"} +{"description": "Which Score has a Result of 2\u20131, and a Competition of friendly, and a Goal smaller than 17?", "label": ["1\u20130", "2\u20130"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Matches", "table_info": {"columns": [{"name": "Goal", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}], "rows": [["1.", "October 27, 2004", "Giants Stadium , East Rutherford , United States", "1\u20130", "2\u20131", "Friendly"], ["2.", "October 27, 2004", "Giants Stadium, East Rutherford, United States", "2\u20130", "2\u20131", "Friendly"], ["3.", "November 13, 2004", "Orange Bowl , Miami , United States", "2\u20130", "5\u20130", "2006 FIFA World Cup qualification"], ["4.", "November 13, 2004", "Orange Bowl, Miami, United States", "4\u20130", "5\u20130", "2006 FIFA World Cup qualification"], ["5.", "November 17, 2004", "Estadio Tecnol\u00f3gico ,", "3\u20130", "8\u20130", "2006 FIFA World Cup qualification"], ["6.", "November 17, 2004", "Estadio Tecnol\u00f3gico, Mont", "6\u20130", "8\u20130", "2006 FIFA World Cup qualification"], ["7.", "February 23, 2005", "Estadio Carlos Gonz\u00e1lez , Culi", "1\u20130", "1\u20131", "Friendly"], ["8.", "June 16, 2005", "AWD-Arena , Hanover , Germany", "2\u20131", "2\u20131", "2005 FIFA Confederations Cup"], ["9.", "June 29, 2005", "Zentralstadion , Leipzig , Germany", "1\u20131", "3\u20134 ( a.e.t. )", "2005 FIFA Confederations Cup"], ["10.", "August 17, 2005", "Estadio Azteca , Mexico City, Mexico", "2\u20130", "2\u20130", "2006 FIFA World Cup qualification"], ["11.", "September 7, 2005", "Estadio Azteca, Mexico City, Mexico", "4\u20130", "5\u20130", "2006 FIFA World Cup qualification"], ["12.", "October 8, 2005", "Estadio Alfonso Lastras ,", "2\u20131", "5\u20132", "2006 FIFA World Cup qualification"], ["13.", "October 8, 2005", "Estadio Alfonso Lastras, San", "3\u20131", "5\u20132", "2006 FIFA World Cup qualification"], ["14.", "October 8, 2005", "Estadio Alfonso Lastras, San", "4\u20132", "5\u20132", "2006 FIFA World Cup qualification"], ["15.", "October 8, 2005", "Estadio Alfonso Lastras, San", "5\u20132", "5\u20132", "2006 FIFA World Cup qualification"], ["16.", "December 14, 2005", "Chase Field , Phoenix , United States", "1\u20130", "2\u20130", "Friendly"], ["17.", "January 25, 2006", "Monster Park , San Francisco , United States", "1\u20131", "2\u20131", "Friendly"], ["18.", "May 12, 2006", "Estadio Azteca, Mexico City, Mexico", "1\u20130", "2\u20131", "Friendly"], ["19.", "May 12, 2006", "Estadio Azteca, Mexico City, Mexico", "2\u20130", "2\u20131", "Friendly"], ["20.", "June 21, 2006", "Veltins-Arena , Gelsenkirchen", "1\u20132", "1\u20132", "2006 FIFA World Cup"], ["21.", "June 2, 2007", "Estadio Alfonso Lastras, San", "3\u20130", "4\u20130", "Friendly"], ["22.", "July 1, 2007", "Estadio Francisco Moraz\u00e1n, San Pedro Sula, Honduras", "2\u20131", "3\u20131", "2007 CONCACAF Gold Cup"], ["23.", "August 22, 2007", "Soldier Field , Chicago , United States", "1\u20130", "2\u20131", "Friendly"], ["24.", "September 9, 2007", "Toyota Park , Bridgeview , United States", "2\u20130", "3\u20130", "Friendly"], ["25.", "October 17, 2007", "Gillette Stadium , Foxborough , United States", "1\u20131", "2\u20131", "Friendly"], ["26.", "November 18, 2007", "Red Bull Arena , Harrison , United States", "2\u20131", "2\u20132", "Friendly"], ["27.", "January 19, 2008", "Reliant Stadium , Houston , United States", "2\u20132", "2\u20132", "Friendly"], ["28.", "February 7, 2008", "University of Phoenix Stadium , Glendale , United States", "2\u20132", "2\u20132", "Friendly"], ["29.", "March 26, 2008", "Qualcomm Stadium , San Diego , United States", "2\u20130", "2\u20130", "Friendly"], ["30.", "June 8, 2008", "Rentschler Field , East Hartford , United States", "1\u20130", "1\u20130", "World Cup Qualifying"], ["31.", "August 20, 2008", "Azadi Stadium , Tehran , Iran", "2\u20131", "2\u20131", "Friendly"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Goal", "Date", "Venue", "Score", "Result", "Competition"], "add_description": "The name of this table is Football Matches, and the headers of this table are Goal,Date,Venue,Score,Result,Competition.", "sql": {"query": "SELECT Score FROM 'Football Matches' WHERE Result='2\u20131' AND Competition='Friendly' AND Goal<17;", "length": 95}, "source": "wikisql"} +{"description": "Which Average that has a W-L-T of 5-1, and a Season smaller than 2001, and Games smaller than 6?", "label": ["none"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Team Performance", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "Games", "type": "TEXT"}, {"name": "W-L-T", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}, {"name": "Average", "type": "TEXT"}], "rows": [["1937", "6", "6-0-0", "46,826", "7,804"], ["1942", "4", "4-0-0", "15,796", "3,949"], ["1946", "5", "4-0-1", "53,000", "10,600"], ["1947", "4", "2-2-0", "54,000", "13,500"], ["1949", "5", "2-3-0", "98,776", "19,755"], ["1950", "5", "4-1-0", "97,748", "19,550"], ["1952", "5", "3-0-2", "123,481", "24,696"], ["1955", "5", "4-1-0", "113,500", "22,700"], ["1957", "5", "3-2-0", "152,500", "30,500"], ["1958", "5", "2-3-0", "187,500", "37,500"], ["1959", "6", "3-3-0", "177,903", "29,651"], ["1960", "5", "4-1-0", "185,653", "37,131"], ["1961", "6", "5-1-0", "199,987", "33,331"], ["1962", "4", "2-2-0", "116,000", "29,000"], ["1963", "5", "1-4-0", "135,000", "27,000"], ["1964", "5", "1-4-0", "140,600", "28,120"], ["1967", "5", "4-1-0", "196,817", "39,363"], ["1968", "5", "3-2-0", "215,574", "43,115"], ["1970", "5", "3-2-0", "219,521", "43,904"], ["1971", "5", "5-0-0", "220,171", "44,034"], ["1972", "6", "5-1-0", "307,044", "51,174"], ["1973", "5", "3-2-0", "246,521", "49,304"], ["1974", "5", "3-2-0", "253,762", "50,752"], ["1975", "6", "6-0-0", "281,199", "46,867"], ["1976", "6", "5-1-0", "300,191", "50,032"], ["1977", "6", "5-1-0", "293,483", "48,914"], ["1978", "8", "5-3-0", "383,048", "47,881"], ["1979", "6", "1-5-0", "265,956", "44,326"], ["1980", "6", "1-5-0", "245,868", "40,978"], ["1981", "6", "3-3-0", "209,224", "34,871"], ["1982", "7", "1-6-0", "251,909", "41,985"], ["1983", "6", "3-3-0", "237,674", "39,612"], ["1984", "6", "1-5-0", "235,670", "39,278"], ["1985", "6", "4-2-0", "220,734", "36,789"], ["1986", "6", "3-3-0", "269,546", "44,924"], ["1987", "6", "4-2-0", "268,711", "44,785"], ["1988", "6", "4-2-0", "235,142", "39,190"], ["1989", "6", "6-0-0", "293,726", "48,954"], ["1990", "6", "6-0-0", "310,374", "51,729"], ["1991", "6", "4-1-1", "311,458", "51,910"], ["1992", "6", "5-0-1", "309,900", "51,650"], ["1993", "6", "4-2-0", "311,360", "51,893"], ["1994", "6", "6-0-0", "304,897", "50,816"], ["1995", "6", "4-2-0", "312,958", "52,160"], ["1996", "6", "5-1", "312,586", "52,098"], ["1997", "6", "3-3", "309,947", "51,658"], ["1998", "6", "5-1", "284,512", "47,419"], ["1999", "5", "4-1", "239,313", "47,863"], ["2000", "5", "1-4", "249,950", "49,990"], ["2001", "6", "5-1", "284,848", "47,475"], ["2021", "8", "7-1-0", "65,000", "8,125"], ["2022", "7", "5-2-0", "70,000", "10,000"], ["2023", "8", "6-1-1", "80,000", "10,000"], ["2024", "7", "4-3-0", "75,000", "10,714"], ["2025", "8", "7-1-0", "90,000", "11,250"], ["2026", "7", "5-2-0", "84,000", "12,000"], ["2027", "8", "7-1-0", "100,000", "12,500"], ["2028", "7", "4-3-0", "96,000", "13,714"], ["2029", "8", "6-2-0", "112,000", "14,000"], ["2030", "7", "5-2-0", "105,000", "15,000"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Season", "Games", "W-L-T", "Attendance", "Average"], "add_description": "The name of this table is Football Team Performance, and the headers of this table are Season,Games,W-L-T,Attendance,Average.", "sql": {"query": "SELECT AverageFROM [Football Team Performance]WHERE W-L-T = '5-1' AND Season < '2001' AND Games < '6';", "length": 102}, "source": "wikisql"} +{"description": "What is the Average for South Carolina with an Interview less than 9.626?", "label": ["none"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Beauty_Pageant_Scores", "table_info": {"columns": [{"name": "State", "type": "TEXT"}, {"name": "Interview", "type": "TEXT"}, {"name": "Swimsuit", "type": "TEXT"}, {"name": "Evening Gown", "type": "TEXT"}, {"name": "Average", "type": "TEXT"}], "rows": [["Virginia", "9.843", "9.635", "9.851", "9.776"], ["North Carolina", "9.454", "9.301", "9.569", "9.441"], ["South Carolina", "9.626", "9.460", "9.870", "9.652"], ["Louisiana", "9.539", "9.613", "9.683", "9.612"], ["Texas", "9.489", "9.354", "9.699", "9.514"], ["New York", "9.561", "9.548", "9.626", "9.578"], ["Illinois", "9.460", "9.288", "9.484", "9.411"], ["Missouri", "9.320", "9.318", "9.508", "9.382"], ["Tennessee", "9.300", "9.234", "9.439", "9.324"], ["Minnesota", "9.290", "9.241", "9.421", "9.317"], ["Kansas", "9.191", "9.176", "9.375", "9.247"], ["Hawaii", "9.229", "9.096", "9.345", "9.223"], ["California", "9.500", "9.450", "9.600", "9.517"], ["Florida", "9.623", "9.586", "9.743", "9.650"], ["Georgia", "9.397", "9.243", "9.489", "9.377"], ["Ohio", "9.312", "9.267", "9.415", "9.331"], ["Arizona", "9.435", "9.387", "9.522", "9.448"], ["Michigan", "9.588", "9.516", "9.654", "9.586"], ["Indiana", "9.287", "9.210", "9.399", "9.299"], ["Kentucky", "9.204", "9.134", "9.300", "9.213"], ["Oregon", "9.479", "9.429", "9.577", "9.495"], ["Washington", "9.665", "9.610", "9.771", "9.682"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["State", "Interview", "Swimsuit", "Evening Gown", "Average"], "add_description": "The name of this table is Beauty_Pageant_Scores, and the headers of this table are State,Interview,Swimsuit,Evening Gown,Average.", "sql": {"query": "SELECT Average FROM Beauty_Pageant_Scores WHERE State='South Carolina' AND Interview < 9.626;", "length": 93}, "source": "wikisql"} +{"description": "Class of d, and a Frequency MHz smaller than 107.7, and a ERP W smaller than 232 has what call sign?", "label": ["K255AZ", "K228EE", "K220FA", "K265DY", "K237DN", "K214AU", "K222AX", "K239AX", "K243BD", "K219DC", "K204CD", "K231BG"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Radio Stations", "table_info": {"columns": [{"name": "Call sign", "type": "TEXT"}, {"name": "Frequency MHz", "type": "TEXT"}, {"name": "City of license", "type": "TEXT"}, {"name": "ERP W", "type": "TEXT"}, {"name": "Class", "type": "TEXT"}, {"name": "FCC info", "type": "TEXT"}], "rows": [["KJRL", "105.7", "Herington, Kansas", "12,500", "C3", "FCC"], ["KJLG", "91.9", "Emporia, Kansas", "3,000", "A", "FCC"], ["KJVL", "88.1", "Hutchinson, Kansas", "570", "A", "FCC"], ["KJLJ", "88.5", "Scott City, Kansas", "25,000", "C3", "FCC"], ["K234AG", "94.7", "Ashland, Kansas", "232", "D", "FCC"], ["K255AZ", "98.9", "Nickerson, Kansas", "200", "D", "FCC"], ["K228EE", "93.5", "Elkhart, Kansas", "170", "D", "FCC"], ["K220FA", "91.9", "Haviland, Kansas", "171", "D", "FCC"], ["K203FB", "88.5", "Hays, Kansas", "250", "D", "FCC"], ["K265DY", "100.9", "Ness City, Kansas", "170", "D", "FCC"], ["K237DN", "95.3", "Pratt, Kansas", "170", "D", "FCC"], ["K214AU", "90.9", "Sharon Springs, Kansas", "92", "D", "FCC"], ["K222AX", "92.3", "Junction City, Kansas", "170", "D", "FCC"], ["K239AX", "95.7", "Larned, Kansas", "170", "D", "FCC"], ["K299AR", "107.7", "McPherson, Kansas", "170", "D", "FCC"], ["K243BD", "96.5", "Salina, Kansas", "200", "D", "FCC"], ["K207BP", "89.3", "Quinter, Kansas", "232", "D", "FCC"], ["K219DC", "91.7", "St. John, Kansas", "225", "D", "FCC"], ["K204CD", "88.7", "Tribune, Kansas", "204", "D", "FCC"], ["K231BG", "94.1", "WaKeeney, Kansas", "170", "D", "FCC"], ["KJHR", "105.3", "Lakin, Kansas", "4,000", "A", "FCC"], ["KIFA", "93.5", "Ulysses, Kansas", "6,000", "A", "FCC"], ["KURS", "104.5", "Cimarron, Kansas", "3,400", "A", "FCC"], ["KZZY", "105.9", "Garden City, Kansas", "8,000", "C2", "FCC"], ["KLYF", "96.1", "Holcomb, Kansas", "6,000", "A", "FCC"], ["KANZ", "91.1", "Hays, Kansas", "100,000", "C", "FCC"], ["KRWQ", "96.3", "Wichita, Kansas", "25,000", "C3", "FCC"], ["KVOB", "95.5", "Chanute, Kansas", "41,000", "C2", "FCC"], ["KOWS", "106.9", "Fort Scott, Kansas", "3,000", "A", "FCC"], ["KSHN", "89.3", "Ernest, Kansas", "6,000", "A", "FCC"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Call sign", "Frequency MHz", "City of license", "ERP W", "Class", "FCC info"], "add_description": "The name of this table is Radio Stations, and the headers of this table are Call sign,Frequency MHz,City of license,ERP W,Class,FCC info.", "sql": {"query": "SELECT `Call sign` FROM `Radio Stations` WHERE Class='D' AND `Frequency MHz` <107.7 AND `ERP W` <232;", "length": 101}, "source": "wikisql"} +{"description": "which area is the largest in square km?", "label": ["Giza"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "table", "table_info": {"columns": [{"name": "Nr.", "type": "INT"}, {"name": "Name", "type": "TEXT"}, {"name": "Area (km\u00b2)", "type": "DECIMAL"}, {"name": "Population (2006)", "type": "INT"}, {"name": "Capital", "type": "TEXT"}, {"name": "Club(s)", "type": "TEXT"}], "rows": [["1", "Alexandria", "2,900", "4,110,015", "Alexandria", "Al Itthad Al Sakandary - El-Olympi - Haras El Hodood"], ["2", "Asyut", "25,926", "3,441,597", "Asyut", "Petrol Asyout"], ["3", "Cairo", "3,435", "7,786,640", "Cairo", "Al-Ahly - Al Mokawloon - ENPPI - El-Jaish - El-Shorta - Itesalat"], ["4", "Gharbia", "25,400", "3,790,670", "Tanta", "Ghazl El-Mehalla"], ["5", "Giza", "85,153", "6,272,571", "Giza", "Zamalek- Tersana"], ["6", "Ismailia", "1,442", "942,832", "Ismailia", "Ismaily"], ["7", "Port Said", "72", "570,768", "Port Said", "Al Masry"], ["6", "Suez", "17,840", "510,935", "Suez", "Petrojet"], ["8", "Alexandria", "2,750", "4,005,230", "Alexandria", "Al Itthad Al Sakandary - El-Olympi - Haras El Hodood"], ["9", "Aswan", "62,726", "1,394,687", "Aswan", "Aswan"], ["10", "Beheira", "9,826", "3,547,176", "Damanhour", "Beheira"], ["11", "Damietta", "1,029", "1,093,580", "Damietta", "Damietta"], ["12", "Faiyum", "1,827", "3,170,150", "Faiyum", "Misr El-Makasa"], ["13", "Giza", "6,500", "2,765,654", "Giza", "Tersana"], ["14", "Luxor", "55,967", "1,251,204", "Luxor", "Luxor"], ["15", "Minya", "32,279", "5,156,639", "Minya", "Wadi Degla"], ["16", "Qena", "107,887", "3,229,536", "Qena", "Qena"], ["17", "Sohag", "6,043", "4,587,123", "Sohag", "Akhmim"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Nr.", "Name", "Area (km\u00b2)", "Population (2006)", "Capital", "Club(s)"], "add_description": "The name of this table is table, and the headers of this table are Nr.,Name,Area (km\u00b2),Population (2006),Capital,Club(s).", "sql": {"query": "SELECT Name, Area FROM table ORDER BY Area DESC LIMIT 1;", "length": 56}, "source": "wikitq"} +{"description": "Name the least touchdowns for 11 points", "label": ["2.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "football_stats", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Starter", "type": "TEXT"}, {"name": "Touchdowns", "type": "TEXT"}, {"name": "Extra points", "type": "TEXT"}, {"name": "Field goals", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["Curtis", "Left tackle", "Yes", "6", "19", "0", "49"], ["Norcross", "Quarterback", "Yes", "5", "0", "0", "25"], ["Clark", "Fullback", "Yes", "3", "0", "0", "15"], ["Magoffin", "Right halfback", "Yes", "2", "1", "0", "11"], ["Graham", "Right tackle", "Yes", "1", "0", "0", "5"], ["Patrick", "Right tackle", "No", "1", "0", "0", "5"], ["H. Hammond", "Right end", "Yes", "1", "0", "0", "5"], ["Schulte", "Left guard", "Yes", "1", "0", "0", "5"], ["Carter", "Right guard", "Yes", "1", "0", "0", "5"], ["Becker", "Quarterback", "No", "1", "0", "0", "5"], ["Smith", "Center", "Yes", "0", "0", "0", "0"], ["Johnson", "Left tackle", "No", "0", "0", "0", "0"], ["Williams", "Right end", "Yes", "1", "0", "0", "5"], ["Brown", "Left guard", "Yes", "2", "0", "0", "10"], ["Jones", "Right tackle", "No", "0", "0", "0", "0"], ["Garcia", "Right halfback", "Yes", "3", "2", "0", "20"], ["Smith", "Quarterback", "Yes", "4", "1", "0", "27"], ["Davis", "Fullback", "No", "0", "0", "0", "0"], ["Wilson", "Right guard", "Yes", "1", "0", "0", "5"], ["Anderson", "Left tackle", "No", "0", "0", "0", "0"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Player", "Position", "Starter", "Touchdowns", "Extra points", "Field goals", "Points"], "add_description": "The name of this table is football_stats, and the headers of this table are Player,Position,Starter,Touchdowns,Extra points,Field goals,Points.", "sql": {"query": "SELECT Player FROM football_stats WHERE Points = '11' ORDER BY Touchdowns ASC LIMIT 1;", "length": 86}, "source": "wikisql"} +{"description": "Of the matches that had a home team score of 13.17 (95), which match had the largest crowd?", "label": ["21000.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Australian Rules Football Matches", "table_info": {"columns": [{"name": "Home team", "type": "TEXT"}, {"name": "Home team score", "type": "TEXT"}, {"name": "Away team", "type": "TEXT"}, {"name": "Away team score", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Crowd", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["Geelong", "20.15 (135)", "St Kilda", "5.11 (41)", "Kardinia Park", "24,000", "27 May 1950"], ["Collingwood", "14.14 (98)", "Richmond", "16.11 (107)", "Victoria Park", "24,000", "27 May 1950"], ["Carlton", "16.13 (109)", "Footscray", "16.10 (106)", "Princes Park", "16,500", "27 May 1950"], ["South Melbourne", "20.14 (134)", "Hawthorn", "10.14 (74)", "Lake Oval", "9,500", "27 May 1950"], ["Melbourne", "13.17 (95)", "Fitzroy", "6.8 (44)", "MCG", "21,000", "27 May 1950"], ["North Melbourne", "13.8 (86)", "Essendon", "11.5 (71)", "Arden Street Oval", "25,000", "27 May 1950"], ["Adelaide", "14.8 (92)", "Brisbane Lions", "12.12 (84)", "Adelaide Oval", "40,000", "11 June 2022"], ["West Coast", "16.12 (108)", "Western Bulldogs", "10.5 (65)", "Optus Stadium", "50,000", "12 June 2022"], ["Carlton", "9.8 (62)", "Collingwood", "14.12 (96)", "MCG", "70,000", "12 June 2022"], ["St Kilda", "12.14 (86)", "Geelong", "15.8 (98)", "Marvel Stadium", "35,000", "12 June 2022"], ["Sydney", "9.11 (65)", "Melbourne", "10.13 (73)", "SCG", "30,000", "12 June 2022"], ["GWS Giants", "8.14 (62)", "North Melbourne", "11.9 (75)", "Giants Stadium", "25,000", "13 June 2022"], ["Richmond", "11.9 (75)", "Essendon", "12.11 (83)", "MCG", "70,000", "13 June 2022"], ["Collingwood", "16.10 (106)", "Adelaide", "13.7 (85)", "Adelaide Oval", "40,000", "14 June 2022"], ["Hawthorn", "12.13 (85)", "Brisbane Lions", "10.10 (70)", "University of Tasmania Stadium", "20,000", "14 June 2022"], ["Port Adelaide", "13.12 (90)", "Fremantle", "8.11 (59)", "Adelaide Oval", "40,000", "15 June 2022"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Home team", "Home team score", "Away team", "Away team score", "Venue", "Crowd", "Date"], "add_description": "The name of this table is Australian Rules Football Matches, and the headers of this table are Home team,Home team score,Away team,Away team score,Venue,Crowd,Date.", "sql": {"query": "SELECT Venue, Crowd, DateFROM \"Australian Rules Football Matches\"WHERE \"Home team score\" = '13.17 (95)' ORDER BY Crowd DESCLIMIT 1;", "length": 131}, "source": "wikisql"} +{"description": "When the transfer fee is \u00a38.5m, what is the total ends?", "label": ["2011.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "football_players", "table_info": {"columns": [{"name": "Nat.", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Since", "type": "TEXT"}, {"name": "App(GS/Sub)", "type": "TEXT"}, {"name": "Goals", "type": "TEXT"}, {"name": "Ends", "type": "TEXT"}, {"name": "Transfer fee", "type": "TEXT"}], "rows": [["USA", "Brad Friedel", "2008", "16 (16/0)", "0", "2011", "\u00a32.5m"], ["ENG", "Stuart Taylor", "2005", "17 (14/3)", "0", "2009", "Undisclosed"], ["USA", "Brad Guzan", "2008", "2 (2/0)", "0", "2011", "\u00a30.6m"], ["ENG", "Luke Young", "2008", "14 (13/1)", "1", "2011", "\u00a36m"], ["NED", "Wilfred Bouma", "2005", "90 (87/3)", "1", "2011", "\u00a33.5m"], ["DEN", "Martin Laursen", "2004", "83 (81/2)", "11", "2010", "\u00a33m"], ["ENG", "Curtis Davies", "2008", "27 (22/5)", "1", "2012", "Undisclosed"], ["ENG", "Zat Knight", "2007", "34 (32/2)", "1", "2011", "\u00a33.5m"], ["ENG", "Nicky Shorey", "2008", "16 (16/0)", "0", "2011", "Undisclosed"], ["ESP", "Carlos Cu\u00e9llar", "2008", "12 (9/3)", "0", "2012", "\u00a37.8m"], ["IRL", "Stephen O'Halloran", "2008", "0 (0/0)", "0", "2009", "Academy"], ["ENG", "Steve Sidwell", "2008", "6 (3/3)", "1", "2011", "Undisclosed"], ["ENG", "Gareth Barry", "1997", "410 (393/17)", "49", "2010", "Undisclosed"], ["ENG", "Ashley Young", "2007", "70 (67/3)", "14", "2011", "\u00a39.6m"], ["ENG", "James Milner", "2008", "45 (40/5)", "3", "2012", "\u00a312m"], ["TOG", "Moustapha Salifou", "2007", "9 (3/6)", "0", "2009", "Undisclosed"], ["BUL", "Stiliyan Petrov", "2006", "82 (75/7)", "4", "2010", "\u00a36.5m"], ["ENG", "Nigel Reo-Coker", "2007", "56 (56/0)", "3", "2011", "\u00a38.5m"], ["ENG", "Craig Gardner", "2005", "58 (37/21)", "6", "2011", "Academy"], ["ENG", "Isaiah Osbourne", "2006", "26 (13/13)", "0", "2011", "Academy"], ["ENG", "Marlon Harewood", "2006", "34 (7/27)", "7", "2010", "\u00a34m"], ["NOR", "John Carew", "2007", "59 (57/2)", "23", "2010", "Part-Exchange"], ["ENG", "Gabriel Agbonlahor", "2006", "110 (102/8)", "29", "2011", "Academy"], ["ENG", "Nathan Delfouneso", "2008", "3 (0/3)", "0", "2010", "Academy"], ["ENG", "Emile Heskey", "2009", "3 (3/0)", "1", "2012", "\u00a33.5m"], ["GER", "Oliver Kahn", "2003", "33 (33/0)", "0", "2004", "\u00a33m"], ["ARG", "Lionel Messi", "2019", "48 (47/1)", "44", "2024", "\u00a393m"], ["FRA", "Zinedine Zidane", "2006", "0 (0/0)", "0", "Retired", "Free"], ["SCO", "Kenny Dalglish", "1977", "145 (139/6)", "59", "1982", "\u00a3440k"], ["ENG", "Gordon Banks", "1967", "0 (0/0)", "0", "1973", "\u00a350k"], ["URU", "Diego Forlan", "2011", "62 (49/13)", "17", "2014", "\u00a34m"], ["ITA", "Andrea Pirlo", "2015", "62 (62/0)", "10", "2018", "Free"], ["BRA", "Neymar Jr.", "2017", "36 (34/2)", "29", "2022", "\u00a3198m"], ["NED", "Johan Cruyff", "1973", "48 (48/0)", "24", "1978", "\u00a3922k"], ["ARG", "Diego Maradona", "1984", "58 (56/2)", "38", "1991", "\u00a36.9m"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Nat.", "Name", "Since", "App(GS/Sub)", "Goals", "Ends", "Transfer fee"], "add_description": "The name of this table is football_players, and the headers of this table are Nat.,Name,Since,App(GS/Sub),Goals,Ends,Transfer fee.", "sql": {"query": "SELECT SUM(Ends) FROM football_players WHERE `Transfer fee` = '\u00a38.5m';", "length": 70}, "source": "wikisql"} +{"description": "With the given points of 51, what was the total number of the try bonus?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Rugby Club Standings", "table_info": {"columns": [{"name": "Club", "type": "TEXT"}, {"name": "Played", "type": "TEXT"}, {"name": "Won", "type": "TEXT"}, {"name": "Drawn", "type": "TEXT"}, {"name": "Lost", "type": "TEXT"}, {"name": "Points for", "type": "TEXT"}, {"name": "Points against", "type": "TEXT"}, {"name": "Tries for", "type": "TEXT"}, {"name": "Tries against", "type": "TEXT"}, {"name": "Try bonus", "type": "TEXT"}, {"name": "Losing bonus", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["Club", "Played", "Won", "Drawn", "Lost", "Points for", "Points against", "Tries for", "Tries against", "Try bonus", "Losing bonus", "Points"], ["Betws RFC", "20", "18", "0", "2", "727", "243", "111", "29", "14", "2", "88"], ["Ystradgynlais RFC", "20", "18", "0", "2", "667", "200", "107", "24", "15", "1", "88"], ["Alltwen RFC", "20", "15", "1", "4", "434", "237", "55", "21", "7", "1", "70"], ["New Dock Stars RFC", "20", "11", "1", "8", "367", "318", "51", "38", "5", "4", "55"], ["Pontardawe RFC", "20", "10", "0", "10", "441", "381", "64", "51", "9", "4", "53"], ["Trebanos RFC", "20", "10", "1", "9", "441", "404", "51", "58", "5", "4", "51"], ["Glais RFC", "20", "9", "0", "11", "293", "325", "36", "42", "4", "5", "45"], ["Gowerton RFC", "20", "7", "0", "13", "313", "468", "38", "69", "2", "4", "34"], ["Cwmtwrch RFC", "20", "5", "2", "13", "261", "406", "28", "58", "0", "4", "28"], ["Swansea Uplands RFC", "20", "2", "1", "17", "197", "574", "28", "89", "1", "2", "13"], ["Bynea RFC", "20", "2", "0", "18", "139", "724", "21", "111", "1", "1", "10"], ["Team A", "20", "15", "2", "3", "620", "280", "85", "32", "10", "2", "72"], ["Team B", "20", "16", "1", "3", "510", "210", "60", "20", "9", "3", "74"], ["Team C", "20", "13", "3", "4", "466", "278", "53", "30", "7", "4", "64"], ["Team D", "20", "12", "2", "6", "485", "350", "57", "40", "6", "5", "57"], ["Team E", "20", "10", "3", "7", "401", "342", "45", "35", "3", "5", "48"], ["Team F", "20", "8", "5", "7", "335", "321", "39", "42", "4", "4", "43"], ["Team G", "20", "7", "2", "11", "257", "391", "32", "51", "2", "4", "33"], ["Team H", "20", "4", "5", "11", "220", "475", "25", "68", "0", "3", "26"], ["Team I", "20", "4", "3", "13", "189", "521", "23", "80", "1", "2", "22"], ["Team J", "20", "2", "2", "16", "127", "640", "18", "98", "0", "1", "11"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Club", "Played", "Won", "Drawn", "Lost", "Points for", "Points against", "Tries for", "Tries against", "Try bonus", "Losing bonus", "Points"], "add_description": "The name of this table is Rugby Club Standings, and the headers of this table are Club,Played,Won,Drawn,Lost,Points for,Points against,Tries for,Tries against,Try bonus,Losing bonus,Points.", "sql": {"query": "SELECT SUM(`Try bonus`) FROM `Rugby Club Standings` WHERE `Points` = 51;", "length": 72}, "source": "wikisql"} +{"description": "What was the earlier round where Takashi Kogure got the fastest lap?", "label": ["5.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Race Results", "table_info": {"columns": [{"name": "Round", "type": "TEXT"}, {"name": "Circuit", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Pole Position", "type": "TEXT"}, {"name": "Fastest Lap", "type": "TEXT"}, {"name": "Winning Driver", "type": "TEXT"}, {"name": "Winning Team", "type": "TEXT"}], "rows": [["1", "Fuji Speedway", "5 April", "Kohei Hirate", "Andr\u00e9 Lotterer", "Beno\u00eet Tr\u00e9luyer", "Lawson Team Impul"], ["2", "Suzuka Circuit", "17 May", "Beno\u00eet Tr\u00e9luyer", "Lo\u00efc Duval", "Lo\u00efc Duval", "Nakajima Racing"], ["3", "Twin Ring Motegi", "31 May", "Takashi Kogure", "Koudai Tsukakoshi", "Takashi Kogure", "Nakajima Racing"], ["4", "Fuji Speedway", "28 June", "Lo\u00efc Duval", "Lo\u00efc Duval", "Lo\u00efc Duval", "Nakajima Racing"], ["5", "Suzuka Circuit", "12 July", "Lo\u00efc Duval", "Takashi Kogure", "Lo\u00efc Duval", "Nakajima Racing"], ["6", "Twin Ring Motegi", "9 August", "Takashi Kogure", "Takashi Kogure", "Andr\u00e9 Lotterer", "Petronas Team TOM'S"], ["7", "Autopolis", "30 August", "Takashi Kogure", "Keisuke Kunimoto", "Takashi Kogure", "Nakajima Racing"], ["8", "Motegi", "21 September", "Lo\u00efc Duval", "Lo\u00efc Duval", "Andr\u00e9 Lotterer", "B-Max Engineering"], ["9", "Fuji Speedway", "11 October", "Takashi Kogure", "Takashi Kogure", "Beno\u00eet Tr\u00e9luyer", "Petronas Team TOM\u2019S"], ["10", "Suzuka Circuit", "25 October", "Kohei Hirate", "Kohei Hirate", "Takashi Kogure", "Nakajima Racing"], ["11", "Motegi", "29 November", "Lo\u00efc Duval", "Lo\u00efc Duval", "Lo\u00efc Duval", "B-Max Engineering"], ["12", "Fuji Speedway", "6 December", "Beno\u00eet Tr\u00e9luyer", "Beno\u00eet Tr\u00e9luyer", "Andr\u00e9 Lotterer", "Petronas Team TOM\u2019S"], ["13", "Suzuka Circuit", "20 December", "Kohei Hirate", "Takashi Kogure", "Lo\u00efc Duval", "Nakajima Racing"], ["14", "Motegi", "10 January", "Takashi Kogure", "Takashi Kogure", "Takashi Kogure", "B-Max Engineering"], ["15", "Fuji Speedway", "24 January", "Lo\u00efc Duval", "Lo\u00efc Duval", "Beno\u00eet Tr\u00e9luyer", "Petronas Team TOM\u2019S"], ["16", "Suzuka Circuit", "14 February", "Beno\u00eet Tr\u00e9luyer", "Kohei Hirate", "Lo\u00efc Duval", "Nakajima Racing"], ["17", "Motegi", "28 February", "Takashi Kogure", "Keisuke Kunimoto", "Takashi Kogure", "B-Max Engineering"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["Round", "Circuit", "Date", "Pole Position", "Fastest Lap", "Winning Driver", "Winning Team"], "add_description": "The name of this table is Race Results, and the headers of this table are Round,Circuit,Date,Pole Position,Fastest Lap,Winning Driver,Winning Team.", "sql": {"query": "SELECT MIN(Round) FROM `Race Results` WHERE `Fastest Lap` = 'Takashi Kogure';", "length": 77}, "source": "wikisql"} +{"description": "What's the biggest Bronze that has less than 0 Silvers?", "label": ["none"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Medal Tally", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "TEXT"}, {"name": "Silver", "type": "TEXT"}, {"name": "Bronze", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}], "rows": [["1", "South Korea", "6", "4", "1", "11"], ["2", "Japan", "5", "4", "6", "15"], ["3", "China", "2", "2", "6", "10"], ["4", "North Korea", "2", "0", "4", "6"], ["5", "Kazakhstan", "1", "0", "5", "6"], ["6", "Chinese Taipei", "0", "2", "6", "8"], ["7", "Mongolia", "0", "2", "1", "3"], ["8", "India", "0", "1", "1", "2"], ["9", "Uzbekistan", "0", "1", "1", "2"], ["10", "Turkmenistan", "0", "0", "2", "2"], ["Total", "Total", "16", "16", "32", "64"], ["1", "United States", "12", "10", "8", "30"], ["2", "Russia", "10", "11", "9", "30"], ["3", "Japan", "5", "4", "6", "15"], ["4", "China", "2", "2", "6", "10"], ["5", "South Korea", "6", "4", "1", "11"], ["6", "Germany", "3", "4", "3", "10"], ["7", "Canada", "3", "3", "4", "10"], ["8", "France", "2", "0", "1", "3"], ["9", "Netherlands", "0", "2", "3", "5"], ["10", "Italy", "0", "2", "2", "4"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Medal Tally, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "sql": {"query": "SELECT MAX(Bronze) FROM `Medal Tally` WHERE Silver = 0;", "length": 55}, "source": "wikisql"} +{"description": "Which Attendance is the highest one that has a Record of 15-28?", "label": ["32502.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Baseball Team Record", "table_info": {"columns": [{"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Loss", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["May 1", "@ New York Mets", "1-2", "Majewski (1-2)", "28,310", "8-18"], ["May 2", "@ New York Mets", "6-2", "Maine (0-1)", "34,046", "9-18"], ["May 3", "Florida Marlins", "5-6", "Stanton (1-3)", "21,918", "9-19"], ["May 4", "Florida Marlins", "3-11", "Hern\u00e1ndez (1-4)", "20,984", "9-20"], ["May 5", "Pittsburgh Pirates", "6-0", "P\u00e9rez (1-5)", "21,059", "10-20"], ["May 6", "Pittsburgh Pirates", "4-5 (11)", "Rodriguez (0-1)", "29,953", "10-21"], ["May 7", "Pittsburgh Pirates", "5-4", "Duke (2-3)", "30,659", "11-21"], ["May 9", "@ Cincinnati Reds", "7-1", "Claussen (2-4)", "16,716", "12-21"], ["May 10", "@ Cincinnati Reds", "6-9", "Stanton (1-4)", "14,180", "12-22"], ["May 11", "@ Cincinnati Reds", "4-5 (11)", "Eischen (0-1)", "16,716", "12-23"], ["May 12", "@ Atlanta Braves", "2-6", "Ortiz (0-4)", "31,818", "12-24"], ["May 13", "@ Atlanta Braves", "5-8", "Cordero (1-1)", "37,040", "12-25"], ["May 14", "@ Atlanta Braves", "8-1", "Thomson (1-3)", "31,062", "13-25"], ["May 16", "@ Chicago Cubs", "0-4", "Hern\u00e1ndez (1-5)", "39,298", "13-26"], ["May 17", "@ Chicago Cubs", "0-5", "Day (2-4)", "39,757", "13-27"], ["May 18", "@ Chicago Cubs", "5-3", "Wood (0-1)", "40,517", "14-27"], ["May 19", "Baltimore Orioles", "1-5", "O'Connor (2-2)", "30,320", "14-28"], ["May 20", "Baltimore Orioles", "8-3", "Lopez (1-7)", "32,502", "15-28"], ["May 21", "Baltimore Orioles", "3-1", "Chen (0-5)", "32,152", "16-28"], ["May 22", "Houston Astros", "3-10", "Day (2-5)", "18,803", "16-29"], ["May 23", "Houston Astros", "4-1", "Nieve (1-3)", "23,189", "17-29"], ["May 24", "Houston Astros", "5-1", "Wheeler (0-3)", "24,194", "18-29"], ["May 25", "Houston Astros", "8-5", "Pettitte (3-6)", "24,733", "19-29"], ["May 26", "Los Angeles Dodgers", "10-4", "Tomko (5-2)", "22,712", "20-29"], ["May 27", "Los Angeles Dodgers", "1-3", "Stanton (1-5)", "26,867", "20-30"], ["May 28", "Los Angeles Dodgers", "10-4", "Seo (2-3)", "30,348", "21-30"], ["May 29", "@ Philadelphia Phillies", "2-11", "O'Connor (2-3)", "33,682", "21-31"], ["May 30", "@ Philadelphia Phillies", "2-4", "Armas (5-3)", "23,805", "21-32"], ["May 31", "@ Philadelphia Phillies", "3-2", "Lidle (4-5)", "30,386", "22-32"], ["June 1", "@ Chicago White Sox", "5-3", "Hill (3-2)", "32,876", "23-32"], ["June 2", "@ Chicago White Sox", "0-8", "Garcia (8-2)", "33,083", "23-33"], ["June 3", "@ Chicago White Sox", "7-2", "Ramirez (5-4)", "35,020", "24-33"], ["June 4", "@ Kansas City Royals", "4-5", "Davies (3-5)", "22,539", "24-34"], ["June 5", "@ Kansas City Royals", "8-2", "Hill (4-2)", "23,129", "25-34"], ["June 6", "@ Kansas City Royals", "3-1", "Lannan (1-0)", "20,536", "26-34"], ["June 8", "Texas Rangers", "2-6", "Padilla (3-7)", "25,423", "26-35"], ["June 9", "Texas Rangers", "4-1", "Armas (6-3)", "25,584", "27-35"], ["June 10", "Texas Rangers", "1-3", "Loe (2-6)", "36,465", "27-36"], ["June 11", "San Francisco Giants", "6-5", "Hill (5-2)", "24,213", "28-36"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Date", "Opponent", "Score", "Loss", "Attendance", "Record"], "add_description": "The name of this table is Baseball Team Record, and the headers of this table are Date,Opponent,Score,Loss,Attendance,Record.", "sql": {"query": "SELECT MAX(Attendance) FROM Baseball_Team_Record WHERE Record = '15-28';", "length": 72}, "source": "wikisql"} +{"description": "What is the average Total, when Gold is 0, and when Nation is Iran?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Olympic_medal_counts", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "TEXT"}, {"name": "Silver", "type": "TEXT"}, {"name": "Bronze", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}], "rows": [["1", "Soviet Union", "12", "0", "4", "16"], ["2", "West Germany", "2", "0", "0", "2"], ["3", "Bulgaria", "1", "5", "1", "7"], ["4", "Yugoslavia", "1", "2", "1", "4"], ["5", "Japan", "1", "1", "2", "4"], ["5", "United States", "1", "1", "2", "4"], ["7", "East Germany", "1", "1", "1", "3"], ["7", "Hungary", "1", "1", "1", "3"], ["9", "Finland", "0", "2", "2", "4"], ["9", "Poland", "0", "2", "2", "4"], ["11", "Czechoslovakia", "0", "1", "0", "1"], ["11", "Iran", "0", "1", "0", "1"], ["11", "South Korea", "0", "1", "0", "1"], ["11", "Sweden", "0", "1", "0", "1"], ["11", "Turkey", "0", "1", "0", "1"], ["16", "Romania", "0", "0", "2", "2"], ["17", "Austria", "0", "0", "1", "1"], ["17", "Mongolia", "0", "0", "1", "1"], ["Total", "Total", "20", "20", "20", "60"], ["1", "United States", "15", "10", "5", "30"], ["2", "Russia", "12", "15", "10", "37"], ["3", "China", "10", "12", "15", "37"], ["4", "Germany", "8", "9", "10", "27"], ["5", "France", "6", "8", "6", "20"], ["6", "Great Britain", "5", "6", "7", "18"], ["7", "Italy", "4", "7", "4", "15"], ["8", "Japan", "3", "4", "9", "16"], ["9", "Australia", "3", "5", "4", "12"], ["10", "Canada", "2", "3", "6", "11"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic_medal_counts, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "sql": {"query": "SELECT AVG(Total)FROM Olympic_medal_countsWHERE Gold = 0 AND Nation = 'Iran';", "length": 77}, "source": "wikisql"} +{"description": "Insert 'Madison High School' into 'School Location Table' with values 'San Diego' for 'Location', '1980' for 'Date moved', and 'nearby junior high school' for 'Currently at this location'.", "label": ["INSERT INTO `School Location Table` (`School`, `Location`, `Date moved`, `Currently at this location`) VALUES ('Madison High School', 'San Diego', '1980', 'nearby junior high school')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "School Location Table", "table_info": {"columns": [{"name": "School", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Date moved", "type": "YEAR"}, {"name": "Currently at this location", "type": "TEXT"}], "rows": [["Burroughs High School", "Ridgecrest", "1960", "Murray Middle School"], ["Clovis High School", "Clovis", "1969", "in 1995 became San Joaquin College of Law"], ["Hanford High School", "Hanford", "1964", "Main Hall on East Campus was Demolished in 1975"], ["John H. Francis Polytechnic High School", "Los Angeles", "1957", "has moved three times and has changed name once since its creation in 1897 ; most recent move was from what has become Los Angeles Trade-Technical College"], ["Live Oak High School", "Morgan Hill", "1975", "Britton Middle School"], ["Los Angeles High School", "Los Angeles", "1917", "now covered by the Hollywood Freeway"], ["Lynwood High School", "Lynwood", "1998", "on Bullis Road ; now Lynwood Middle School"], ["Moorpark High School", "Moorpark", "1988", "Walnut Canyon Elementary School"], ["Narbonne High School", "Harbor City", "1957", "Alexander Fleming Middle School"], ["Nordhoff High School", "Ojai", "1966", "Matilija Junior High School"], ["Oxnard High School", "Oxnard", "1995", "demolished"], ["Paso Robles High School", "Paso Robles", "1981", "George H. Flamson Middle School"], ["St. Matthias High School", "Downey , formerly Huntington Park", "1995", "Aspire Public Schools"], ["San Fernando High School", "San Fernando", "1952", "San Fernando Junior High School"], ["Sanger Union High School", "Sanger", "2004", "Washington Academic Middle School"], ["Santa Clara High School", "Santa Clara", "1981", "original downtown location on Bellomy Street has been renamed Buchser Middle School ; former Buchser High School on Benton Street has been renamed Santa Clara High School"], ["Santa Maria High School", "Santa Maria", "1920", "Ethel Pope Auditorium"], ["Woodrow Wilson High School", "Los Angeles", "1970", "El Soreno Middle School"], ["Redwood High School", "Larkspur", "1973", "Tamalpais Union High School District Office"], ["Franklin High School", "Stockton", "1955", "a new campus was built in 2006"], ["Canyon Crest Academy", "San Diego", "2004", "a newly built campus"], ["Castro Valley High School", "Castro Valley", "1951", "now the site of Creekside Middle School"], ["Bellflower High School", "Bellflower", "1957", "St. John Bosco High School"], ["Calexico High School", "Calexico", "1948", "now the site of William Moreno Junior High School"], ["Diamond Ranch High School", "Pomona", "2003", "a new campus was built in 2020"], ["El Segundo High School", "El Segundo", "1927", "completed a modernization project in 2018"], ["Eureka High School", "Eureka", "1895", "once located on H Street and now the Morris Graves Museum of Art"], ["Hawthorne High School", "Hawthorne", "1953", "now the site of Hawthorne Adult School"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["School", "Location", "Date moved", "Currently at this location"], "add_description": "The name of this table is School Location Table, and the headers of this table are School,Location,Date moved,Currently at this location.", "source": "hybridqa", "answer_md5": "[('09aa8fbf72f39362970f95a1276b957c',)]"} +{"description": "Insert a new record into the 'Football Standings' table with the values of position 10, club 'FK Trakai', games played 18, wins 9, draws 2, losses 7, goals scored 29, goals conceded 24, and points 29.", "label": ["INSERT INTO `Football Standings` (`Position`, `Club`, `Games played`, `Wins`, `Draws`, `Loses`, `Goals scored`, `Goals conceded`, `Points`) VALUES (10, 'FK Trakai', 18, 9, 2, 7, 29, 24, 29);"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Standings", "table_info": {"columns": [{"name": "Position", "type": "TEXT"}, {"name": "Club", "type": "TEXT"}, {"name": "Games played", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Draws", "type": "TEXT"}, {"name": "Loses", "type": "TEXT"}, {"name": "Goals scored", "type": "TEXT"}, {"name": "Goals conceded", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["1", "FSK Anyk\u0161\u01d2iai", "18", "12", "1", "5", "37", "23", "37"], ["2", "Vidzgiris Alytus", "18", "11", "2", "5", "47", "19", "35"], ["3", "Sveikata Kybartai", "18", "11", "2", "5", "37", "24", "35"], ["4", "Spyris Kaunas", "18", "10", "4", "4", "35", "26", "31"], ["5", "Utenis Utena", "18", "7", "4", "7", "29", "30", "25"], ["6", "FK Prienai", "18", "6", "3", "9", "38", "41", "21"], ["7", "Nev\u0117\u017eis-2 K\u0117dainiai", "18", "6", "3", "9", "28", "35", "21"], ["8", "SC-Saving\u0117 Kai\u0161iadorys", "18", "5", "6", "7", "21", "33", "21"], ["9", "LVDK Kaunas", "17", "4", "2", "11", "28", "35", "14"], ["1", "FK \u017dalgiris Vilnius", "18", "15", "2", "1", "53", "10", "47"], ["2", "FK S\u016bduva Marijampol\u0117", "18", "14", "3", "1", "46", "10", "45"], ["3", "Dainava Alytus", "18", "12", "2", "4", "35", "18", "38"], ["4", "FK Riteriai Vilnius", "18", "9", "5", "4", "32", "21", "32"], ["5", "Banga Garg\u017edai", "18", "7", "5", "6", "23", "22", "26"], ["6", "BFA Klaip\u0117da", "18", "6", "7", "5", "25", "20", "25"], ["7", "FK Panev\u0117\u017eys", "18", "6", "6", "6", "23", "25", "24"], ["8", "FK Palanga", "18", "4", "3", "11", "16", "34", "15"], ["9", "Hegelmann Kaunas", "18", "3", "4", "11", "18", "38", "13"], ["10", "FC Minija Kretinga", "17", "2", "2", "13", "15", "38", "8"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Position", "Club", "Games played", "Wins", "Draws", "Loses", "Goals scored", "Goals conceded", "Points"], "add_description": "The name of this table is Football Standings, and the headers of this table are Position,Club,Games played,Wins,Draws,Loses,Goals scored,Goals conceded,Points.", "source": "wikisql", "answer_md5": "[('67316479d3c0e46b7db1a1d43c6693ca',)]"} +{"description": "Insert the winners of Golf Tournament into the table 'Golf Tournament Winners' with the player name 'Bernhard Langer', country 'Germany', winning years '1985, 1993', total score '290' and 'To par' score of '+2'.", "label": ["INSERT INTO `Golf Tournament Winners` (`Player`, `Country`, `Year(s) won`, `Total`, `To par`) VALUES ('Bernhard Langer', 'Germany', '1985, 1993', '290', '+2')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Golf Tournament Winners", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Year(s) won", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}, {"name": "To par", "type": "TEXT"}], "rows": [["Ben Curtis", "United States", "2003", "145", "+5"], ["Todd Hamilton", "United States", "2004", "145", "+5"], ["Tiger Woods", "United States", "2000 , 2005 , 2006", "145", "+5"], ["David Duval", "United States", "2001", "147", "+7"], ["Sandy Lyle", "Scotland", "1985", "148", "+8"], ["Nick Faldo", "England", "1987 , 1990 , 1992", "151", "+11"], ["Greg Norman", "Australia", "1986 , 1993", "152", "+12"], ["Rory McIlroy", "Northern Ireland", "2011 , 2014", "138", "-6"], ["Phil Mickelson", "United States", "2004 , 2006 , 2010", "140", "-4"], ["Seve Ballesteros", "Spain", "1979 , 1984", "143", "+1"], ["Vijay Singh", "Fiji", "2000", "144", "+2"], ["Ernie Els", "South Africa", "1994 , 1997", "146", "+4"], ["Gary Player", "South Africa", "1961 , 1974 , 1978", "149", "+7"], ["Jack Nicklaus", "United States", "1963 , 1970 , 1978", "150", "+8"], ["Arnold Palmer", "United States", "1958 , 1960", "153", "+11"], ["Tom Watson", "United States", "1975 , 1977", "155", "+13"], ["Hale Irwin", "United States", "1974 , 1979", "158", "+16"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Player", "Country", "Year(s) won", "Total", "To par"], "add_description": "The name of this table is Golf Tournament Winners, and the headers of this table are Player,Country,Year(s) won,Total,To par.", "source": "wikisql", "answer_md5": "[('f7886fbd8e379cb6d266f1a17148b096',)]"} +{"description": "Insert into table 'Olympic Medals' with 5 columns 'Rank', 'Gold', 'Silver', 'Bronze' and 'Total'. The values for column 'Rank' is '7', for column 'Gold' is '0', for column 'Silver' is '1', for column 'Bronze' is '0' and for column 'Total' is '1'.", "label": ["INSERT INTO `Olympic Medals` (`Rank`, `Gold`, `Silver`, `Bronze`, `Total`) VALUES ('7', '0', '1', '0', '1')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Olympic Medals", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Gold", "type": "TEXT"}, {"name": "Silver", "type": "TEXT"}, {"name": "Bronze", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}], "rows": [["1", "2", "0", "0", "2"], ["2", "1", "0", "1", "2"], ["3", "1", "0", "0", "1"], ["5", "0", "1", "0", "1"], ["10", "0", "0", "2", "2"], ["11", "0", "0", "1", "1"], ["Total", "5", "5", "5", "15"], ["1", "3", "1", "1", "5"], ["2", "2", "1", "1", "4"], ["3", "1", "2", "0", "3"], ["4", "0", "3", "1", "4"], ["5", "0", "2", "2", "4"], ["6", "1", "1", "2", "4"], ["7", "2", "0", "3", "5"], ["8", "3", "0", "2", "5"], ["9", "2", "2", "1", "5"], ["10", "0", "1", "3", "4"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Rank", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medals, and the headers of this table are Rank,Gold,Silver,Bronze,Total.", "source": "wikisql", "answer_md5": "[('b392c838aa9d9bca57adbd1822071e00',)]"} +{"description": "The Dallas Cowboys 1986 Season INSERT INTO table contains data for Week 18, played on January 4, 1987 at Texas Stadium against the Atlanta Falcons resulting in a 27-20 win for the Cowboys. The game was attended by 62,129 people and has been documented in the NFL Recap under [18].", "label": ["INSERT INTO `Dallas Cowboys 1986 Season` (`Week`, `Date`, `Opponent`, `Result`, `Game site`, `NFL Recap`, `Attendance`) VALUES ('18', 'January 4, 1987', 'Atlanta Falcons', 'W 27\u201320', 'Texas Stadium', '[18]', '62,129')"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Dallas Cowboys 1986 Season", "table_info": {"columns": [{"name": "Week", "type": "INT"}, {"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Game site", "type": "TEXT"}, {"name": "NFL Recap", "type": "TEXT"}, {"name": "Attendance", "type": "INT"}], "rows": [["1", "September 8, 1986", "New York Giants", "W 31\u201328", "Texas Stadium", "[1]", "59,804"], ["2", "September 14, 1986", "at Detroit Lions", "W 31\u20137", "Pontiac Silverdome", "[2]", "73,812"], ["3", "September 21, 1986", "Atlanta Falcons", "L 35\u201337", "Texas Stadium", "[3]", "62,880"], ["4", "September 29, 1986", "at St. Louis Cardinals", "W 31\u20137", "Busch Memorial Stadium", "[4]", "49,077"], ["5", "October 5, 1986", "at Denver Broncos", "L 14\u201329", "Mile High Stadium", "[5]", "76,082"], ["6", "October 12, 1986", "Washington Redskins", "W 30\u20136", "Texas Stadium", "[6]", "63,264"], ["7", "October 19, 1986", "at Philadelphia Eagles", "W 17\u201314", "Veterans Stadium", "[7]", "68,572"], ["8", "October 26, 1986", "St. Louis Cardinals", "W 37\u20136", "Texas Stadium", "[8]", "60,756"], ["9", "November 2, 1986", "at New York Giants", "L 14\u201317", "Giants Stadium", "[9]", "74,871"], ["10", "November 9, 1986", "Los Angeles Raiders", "L 13\u201317", "Texas Stadium", "[10]", "61,706"], ["11", "November 16, 1986", "at San Diego Chargers", "W 24\u201321", "Jack Murphy Stadium", "[11]", "55,622"], ["12", "November 23, 1986", "at Washington Redskins", "L 14\u201341", "RFK Stadium", "[12]", "55,642"], ["13", "November 27, 1986", "Seattle Seahawks", "L 14\u201331", "Texas Stadium", "[13]", "58,020"], ["14", "December 7, 1986", "at Los Angeles Rams", "L 10\u201329", "Anaheim Stadium", "[14]", "64,949"], ["15", "December 14, 1986", "Philadelphia Eagles", "L 21\u201323", "Texas Stadium", "[15]", "46,117"], ["16", "December 21, 1986", "Chicago Bears", "L 10\u201324", "Texas Stadium", "[16]", "57,256"], ["1", "September 6, 2021", "Tampa Bay Buccaneers", "W 31-29", "Raymond James Stadium", "N/A", "63,650"], ["2", "September 12, 2021", "at Los Angeles Chargers", "W 20-16", "SoFi Stadium", "N/A", "71,850"], ["3", "September 19, 2021", "Philadelphia Eagles", "L 21-24", "AT&T Stadium", "N/A", "80,000"], ["4", "September 27, 2021", "Carolina Panthers", "W 24-20", "AT&T Stadium", "N/A", "78,208"], ["5", "October 3, 2021", "New York Giants", "W 44-20", "AT&T Stadium", "N/A", "90,000"], ["6", "October 10, 2021", "at New England Patriots", "L 21-35", "Gillette Stadium", "N/A", "65,878"], ["7", "October 17, 2021", "at Minnesota Vikings", "W 31-28", "U.S. Bank Stadium", "N/A", "66,810"], ["8", "October 24, 2021", "Washington Football Team", "L 20-24", "AT&T Stadium", "N/A", "85,326"], ["9", "November 7, 2021", "Denver Broncos", "W 27-24", "AT&T Stadium", "N/A", "90,000"], ["10", "November 21, 2021", "at Kansas City Chiefs", "L 17-31", "Arrowhead Stadium", "N/A", "76,416"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Week", "Date", "Opponent", "Result", "Game site", "NFL Recap", "Attendance"], "add_description": "The name of this table is Dallas Cowboys 1986 Season, and the headers of this table are Week,Date,Opponent,Result,Game site,NFL Recap,Attendance.", "source": "wikitq", "answer_md5": "[('343e4bbbe3c223408c5e22627f98d437',)]"} +{"description": "Record the achievement of Jalani Sidek at All England Open in 1990 for Men's Doubles event at Birmingham, England under Badminton Achievements table.", "label": ["INSERT INTO `Badminton Achievements` (Outcome,Event,Year,Venue,Partner) VALUES ('All England Open', 'MD', '1990', 'Birmingham, England', 'Jalani Sidek')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Badminton Achievements", "table_info": {"columns": [{"name": "Outcome", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Year", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Partner", "type": "TEXT"}], "rows": [["World Championships", "World Championships", "World Championships", "World Championships", "World Championships"], ["3", "WD", "1987", "Beijing, China", "Chung So-young"], ["3", "WD", "1985", "Calgary, Canada", "Yoo Sang-hee"], ["Asian Games", "Asian Games", "Asian Games", "Asian Games", "Asian Games"], ["2", "WD", "1986", "Seoul, South Korea", "Yoo Sang-hee"], ["2", "WD", "1982", "New Delhi, India", "Yoo Sang-hee"], ["All England Open", "All England Open", "All England Open", "All England Open", "All England Open"], ["1", "WD", "1988", "London, England", "Chung So-young"], ["Other Open Tournaments", "Other Open Tournaments", "Other Open Tournaments", "Other Open Tournaments", "Other Open Tournaments"], ["1", "WD", "1988", "Belgian Open", "Yoo Sang-hee"], ["1", "XD", "1987", "French Open", "Park Joo-bong"], ["1", "WD", "1986", "Scandinavian Open", "Yoo Sang-hee"], ["1", "WD", "1986", "German Open", "Yoo Sang-hee"], ["1", "WD", "1985", "Danish Open", "Yoo Sang-hee"], ["1", "WD", "1985", "Japan Open", "Yoo Sang-hee"], ["1", "WD", "1984", "Swedish Open", "Yoo Sang-hee"], ["1", "WD", "1984", "Danish Open", "Yoo Sang-hee"], ["1", "WD", "1983", "Malaysia Open", "Yoo Sang-hee"], ["World Championships", "World Championships", "World Championships", "World Championships", "World Championships"], ["1", "MD", "1995", "Jakarta, Indonesia", "Ha Tae-kwon"], ["2", "WD", "1987", "Beijing, China", "Yoo Sang-hee"], ["All England Open", "All England Open", "All England Open", "All England Open", "All England Open"], ["2", "MS", "2003", "Birmingham, England", "Chen Hong"], ["3", "WS", "1997", "Glasgow, Scotland", "Camilla Martin"], ["Other Open Tournaments", "Other Open Tournaments", "Other Open Tournaments", "Other Open Tournaments", "Other Open Tournaments"], ["1", "MD", "1999", "Hong Kong Open", "Lee Dong-soo"], ["1", "WD", "2000", "Swiss Open", "Ra Kyung-min"], ["2", "XD", "1991", "Hong Kong Open", "Kim Moon-soo"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Outcome", "Event", "Year", "Venue", "Partner"], "add_description": "The name of this table is Badminton Achievements, and the headers of this table are Outcome,Event,Year,Venue,Partner.", "source": "wikisql", "answer_md5": "[('43a54cd67ab403faf4d17bb44faeef5c',)]"} +{"description": "On 2 January 1944, Willem van der Zaan, a ship registered in Netherlands with a tonnage of 5,200 GRT, was sunk.", "label": ["INSERT INTO `Shipping Incidents` (`Date`, `Name`, `Nationality`, `Tonnage (GRT)`, `Fate`) VALUES ('2 January 1944', 'Willem van der Zaan', 'Netherlands', '5,200', 'Sunk')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Shipping Incidents", "table_info": {"columns": [{"name": "Date", "type": "DATE"}, {"name": "Name", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Tonnage (GRT)", "type": "INT"}, {"name": "Fate", "type": "TEXT"}], "rows": [["11 March 1943", "Jamaica Producer", "United Kingdom", "5,464", "Damaged"], ["4 July 1943", "Pelotasl\u00f3ide", "Brazil", "5,228", "Sunk"], ["1 January 1950", "Sea Breeze", "United States", "12,345", "Sunk"], ["12 March 1965", "Pacific Explorer", "Japan", "8,765", "Scrapped"], ["23 September 1973", "Misty Morning", "Canada", "10,678", "Damaged"], ["17 June 1982", "Sunshine Coast", "Australia", "9,876", "Sunk"], ["5 December 1991", "Silk Road", "China", "15,432", "Damaged"], ["9 April 2007", "Ocean Explorer", "Norway", "20,345", "Scrapped"], ["3 May 2010", "Star Of Suez", "Egypt", "7,654", "Sunk"], ["27 November 2013", "Rio Grande", "Mexico", "11,987", "Damaged"], ["15 August 2016", "Black Pearl", "Spain", "18,765", "Scrapped"], ["20 February 2019", "Northern Wind", "Russia", "23,456", "Sunk"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Name", "Nationality", "Tonnage (GRT)", "Fate"], "add_description": "The name of this table is Shipping Incidents, and the headers of this table are Date,Name,Nationality,Tonnage (GRT),Fate.", "source": "fetaqa", "answer_md5": "[('aa254b4cb8ee6650a24d34e4409db3ce',)]"} +{"description": "On August 11, 2021, Lilly King from the United States set a new world record of 2 minutes and 16.33 seconds in women's swimming in Tokyo, Japan. The record was achieved in the Swimming World Records and the data of the record shows the swimmer's name, time, date and place, which are Lilly King, 2:16.33, August 11, 2021 and Tokyo, Japan respectively.", "label": ["INSERT INTO `Swimming World Records` (`Time`, `Swimmer`, `Date`, `Place`) VALUES ('2:16.33', 'Lilly King', 'August 11 , 2021', 'Tokyo , Japan')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Swimming World Records", "table_info": {"columns": [{"name": "Time", "type": "TIME"}, {"name": "Swimmer", "type": "TEXT"}, {"name": "Date", "type": "DATE"}, {"name": "Place", "type": "TEXT"}], "rows": [["2:22.92", "Susanne Bornike", "February 12 , 1989", "Bonn , Germany"], ["2:22.89", "Dai Guohong", "December 3 , 1993", "Palma de Mallorca , Spain"], ["2:21.99", "Dai Guohong", "December 3 , 1993", "Palma de Mallorca , Spain"], ["2:20.85", "Samantha Riley", "December 1 , 1995", "Rio de Janeiro , Brazil"], ["2:20.22", "Masami Tanaka", "April 2 , 1999", "Hong Kong"], ["2:19.25", "Qi Hui", "January 28 , 2001", "Paris , France"], ["2:18.86", "Qi Hui", "December 2 , 2002", "Shanghai , China"], ["2:17.75", "Leisel Jones", "November 29 , 2003", "Melbourne , Australia"], ["2:17.50", "Annamay Pierse", "March 14 , 2009", "Toronto , Canada"], ["2:16.83", "Annamay Pierse", "August 7 , 2009", "Leeds , United Kingdom"], ["2:15.42", "Leisel Jones", "November 15 , 2009", "Berlin , Germany"], ["2:14.57", "Rebecca Soni", "December 18 , 2009", "Manchester , United Kingdom"], ["2:14.39", "Yuliya Efimova", "December 14 , 2013", "Herning , Denmark"], ["2:20.91", "Catherine Vogt", "November 26 , 2005", "Malmo, Sweden"], ["2:19.72", "Lara Grangeon", "June 1, 2013", "Canet-en-Roussillon, France"], ["2:18.93", "Ye Shiwen", "August 1, 2015", "Kazan, Russia"], ["2:17.80", "Leiston Pickett", "July 7, 2016", "Adelaide, Australia"], ["2:16.75", "Emily Seebohm", "July 23, 2017", "Budapest, Hungary"], ["2:15.69", "Kanako Watanabe", "December 8, 2016", "Tokyo, Japan"], ["2:14.57", "Yuliya Efimova", "December 14, 2013", "Herning, Denmark"], ["2:13.73", "Rikke Moller Pedersen", "August 4, 2013", "Barcelona, Spain"], ["2:12.35", "Lilly King", "July 25, 2017", "Budapest, Hungary"], ["2:10.64", "Ruta Meilutyte", "August 4, 2013", "Barcelona, Spain"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Time", "Swimmer", "Date", "Place"], "add_description": "The name of this table is Swimming World Records, and the headers of this table are Time,Swimmer,Date,Place.", "source": "hybridqa", "answer_md5": "[('2547ff6a314e63c84dd4122e32a73736',)]"} +{"description": "The attendance of Tennessee Titans at Nissan Stadium is recorded as 64,798 on average, with a total of 518,384 attendance over 8 home games; the stadium's capacity percentage is 99.8%.", "label": ["INSERT INTO `Football Teams Attendance` (`Team`, `Stadium`, `Home games`, `Average attendance`, `Total attendance`, `Capacity percentage`) VALUES ('Tennessee Titans', 'Nissan Stadium', '8', '64,798', '518,384', '99.8%')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Football Teams Attendance", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "Stadium", "type": "TEXT"}, {"name": "Home games", "type": "INT"}, {"name": "Average attendance", "type": "FLOAT"}, {"name": "Total attendance", "type": "FLOAT"}, {"name": "Capacity percentage", "type": "FLOAT"}], "rows": [["Dallas Cowboys", "AT & T Stadium", "8", "91,620", "732,958", "114.5%"], ["New York Jets", "MetLife Stadium", "8", "77,982", "623,856", "100.0%"], ["Green Bay Packers", "Lambeau Field", "8", "77,835", "622,677", "95.6%"], ["New York Giants", "MetLife Stadium", "8", "76,941", "615,525", "93.3%"], ["Denver Broncos", "Broncos Stadium at Mile High", "8", "76,446", "611,571", "100.4%"], ["Kansas City Chiefs", "Arrowhead Stadium", "8", "75,973", "607,780", "95.4%"], ["Carolina Panthers", "Bank of America Stadium", "8", "73,773", "590,182", "97.7%"], ["New Orleans Saints", "Mercedes-Benz Superdome", "8", "73,051", "584,411", "100.1%"], ["Atlanta Falcons", "Mercedes-Benz Stadium", "8", "72,898", "583,184", "97.2%"], ["Los Angeles Rams", "Los Angeles Memorial Coliseum", "8", "72,430", "579,439", "94.5%"], ["Houston Texans", "NRG Stadium", "8", "71,805", "574,439", "99.7%"], ["Baltimore Ravens", "M & T Bank Stadium", "8", "70,431", "563,451", "99.2%"], ["Philadelphia Eagles", "Lincoln Financial Field", "8", "69,696", "557,568", "100.0%"], ["San Francisco 49ers", "Levi 's Stadium", "8", "69,149", "553,190", "98.6%"], ["Jacksonville Jaguars", "TIAA Bank Field ( 7 games ) Wembley Stadium ( 1 game )", "8", "69,074", "552,589", "98.6%"], ["Seattle Seahawks", "CenturyLink Field", "8", "69,001", "552,009", "100.4%"], ["Minnesota Vikings", "U.S. Bank Stadium", "8", "66,811", "534,491", "100.5%"], ["New England Patriots", "Gillette Stadium", "8", "65,878", "527,024", "100%"], ["Cleveland Browns", "FirstEnergy Stadium", "8", "65,765", "526,122", "97.5%"], ["Miami Dolphins", "Hard Rock Stadium", "8", "65,560", "524,480", "101.2%"], ["San Diego Chargers", "Qualcomm Stadium", "8", "65,000", "520,000", "92.3%"], ["Tennessee Titans", "Nissan Stadium", "8", "63,870", "510,960", "97.8%"], ["Indianapolis Colts", "Lucas Oil Stadium", "8", "61,722", "493,776", "100.0%"], ["Arizona Cardinals", "State Farm Stadium", "8", "60,400", "483,200", "98.6%"], ["Buffalo Bills", "New Era Field", "8", "60,624", "485,000", "99.2%"], ["Chicago Bears", "Soldier Field", "8", "61,500", "492,000", "93.1%"], ["Pittsburgh Steelers", "Heinz Field", "8", "65,050", "520,400", "99.2%"], ["Detroit Lions", "Ford Field", "8", "61,500", "492,000", "97.5%"], ["Cincinnati Bengals", "Paul Brown Stadium", "8", "64,790", "518,320", "100.0%"], ["Oakland Raiders", "Oakland Coliseum", "8", "56,057", "448,456", "105.4%"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Team", "Stadium", "Home games", "Average attendance", "Total attendance", "Capacity percentage"], "add_description": "The name of this table is Football Teams Attendance, and the headers of this table are Team,Stadium,Home games,Average attendance,Total attendance,Capacity percentage.", "source": "hybridqa", "answer_md5": "[('19246ae10e51bf5d982b7dbd222ffb81',)]"} +{"description": "Insert data into the table named Parish_LGA_Towns, with values 'Harris' for Parish, 'Scenic Rim' for LGA, and 'Boonah' for Towns.", "label": ["INSERT INTO Parish_LGA_Towns (Parish, LGA, Towns) VALUES ('Harris', 'Scenic Rim', 'Boonah')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Parish_LGA_Towns", "table_info": {"columns": [{"name": "Parish", "type": "TEXT"}, {"name": "LGA", "type": "TEXT"}, {"name": "Towns", "type": "TEXT"}], "rows": [["Alfred", "Ipswich", "Grandchester"], ["Blenheim", "Lockyer Valley", "Forest Hill , Lawes"], ["Brassall", "Ipswich", "Brassall , Leichhardt , Pine Mountain"], ["Campbell", "Lockyer Valley", "Flagstone Creek , Preston"], ["Clumber", "Scenic Rim", ""], ["Colin", "Lockyer Valley", ""], ["East Haldon", "Lockyer Valley", ""], ["Fassifern", "Scenic Rim", "Aratula , Kalbar"], ["Ferguson", "Ipswich", ""], ["Flagstone", "Lockyer Valley", "Middle Ridge , Withcott"], ["Flinders", "Scenic Rim", "Harrisville"], ["Forbes", "Scenic Rim", ""], ["Franklin", "Ipswich", ""], ["Gatton", "Lockyer Valley", "Gatton"], ["Goolman", "Scenic Rim", "Peak Crossing"], ["Grandchester", "Lockyer Valley", "Hatton Vale"], ["Jeebropilly", "Ipswich", "Amberley"], ["Laidley", "Lockyer Valley", "Laidley"], ["Mort", "Lockyer Valley", ""], ["Mutdapilly", "Ipswich", "Mutdapilly"], ["Newtown", "Ipswich", "Newtown"], ["Rosewood", "Lockyer Valley", "Rosewood"], ["Veresdale", "Scenic Rim", "Veresdale"], ["Marburg", "Ipswich", "Marburg"], ["Gatton South", "Lockyer Valley", "Grantham"], ["Boonah", "Scenic Rim", "Boonah"], ["Esk", "Lockyer Valley", "Esk"], ["Raceview", "Ipswich", "Raceview"], ["Lowood", "Lockyer Valley", "Lowood"], ["Mount Alford", "Scenic Rim", "Mount Alford"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Parish", "LGA", "Towns"], "add_description": "The name of this table is Parish_LGA_Towns, and the headers of this table are Parish,LGA,Towns.", "source": "hybridqa", "answer_md5": "[('bf3977529e1d20e6e9b04446e3b82d29',)]"} +{"description": "On 8 March 2007, in the Round of 16 Second leg, the match result for Porto was 1\u20130, with an attendance of 41,000. The match was played away from home.", "label": ["INSERT INTO `Football Match Results` (Date, Round, Opponents, `H / A`, `Result F\u2013A`, Attendance) VALUES ('8 March 2007', 'Round of 16 Second leg', 'Porto', 'A', '1\u20130', '41,000')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Match Results", "table_info": {"columns": [{"name": "Date", "type": "TEXT"}, {"name": "Round", "type": "TEXT"}, {"name": "Opponents", "type": "TEXT"}, {"name": "H / A", "type": "TEXT"}, {"name": "Result F\u2013A", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["20 February 2007", "First knockout round First leg", "Lille", "A", "1\u20130", "41,000"], ["7 March 2007", "First knockout round Second leg", "Lille", "H", "1\u20130", "75,182"], ["4 April 2007", "Quarter-final First leg", "Roma", "A", "1\u20132", "77,000"], ["10 April 2007", "Quarter-final Second leg", "Roma", "H", "7\u20131", "74,476"], ["24 April 2007", "Semi-final First leg", "Milan", "H", "3\u20132", "73,820"], ["2 May 2007", "Semi-final Second leg", "Milan", "A", "0\u20133", "78,500"], ["10 May 2007", "Final", "Chelsea", "N", "2\u20131", "69,000"], ["20 September 2007", "Group stage Matchday 1", "Porto", "H", "1\u20131", "66,000"], ["2 October 2007", "Group stage Matchday 2", "Besiktas", "A", "2\u20131", "32,000"], ["24 October 2007", "Group stage Matchday 3", "Marseille", "H", "2\u20130", "38,000"], ["6 November 2007", "Group stage Matchday 4", "Milan", "A", "1\u20131", "76,000"], ["28 November 2007", "Group stage Matchday 5", "Roma", "H", "2\u20130", "71,000"], ["12 December 2007", "Group stage Matchday 6", "Valencia", "A", "1\u20130", "55,000"], ["19 February 2008", "Round of 16 First leg", "Arsenal", "H", "2\u20132", "80,000"], ["4 March 2008", "Round of 16 Second leg", "Arsenal", "A", "2\u20131", "60,000"], ["9 April 2008", "Quarter-final First leg", "Fenerbahce", "H", "3\u20131", "70,000"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Round", "Opponents", "H / A", "Result F\u2013A", "Attendance"], "add_description": "The name of this table is Football Match Results, and the headers of this table are Date,Round,Opponents,H / A,Result F\u2013A,Attendance.", "source": "wikisql", "answer_md5": "[('9264e32312e223e25b5f8954f1127833',)]"} +{"description": "In 1971, Kauai King, age 4, was trained by Henry Forrest and owned by Ford Stable, and was inserted into the horse_races table.", "label": ["INSERT INTO horse_races (Year, Horse, Age, Trainer, Owner) VALUES ('1971', 'Kauai King', '4', 'Henry Forrest', 'Ford Stable')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "horse_races", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Horse", "type": "TEXT"}, {"name": "Age", "type": "INTEGER"}, {"name": "Trainer", "type": "TEXT"}, {"name": "Owner", "type": "TEXT"}], "rows": [["1953", "Iceberg II", "5", "Horatio Luro", "W. Arnold Hanger"], ["1954", "Stan", "4", "Harry Trotsek", "Hasty House Farm"], ["1955", "St. Vincent", "4", "Vance Longden", "George R. Gardiner & Alberta Ranches"], ["1956", "Career Boy", "3", "Sylvester Veitch", "Cornelius Vanderbilt Whitney"], ["1957", "Round Table", "3", "William Molter", "Brookmeade Stable"], ["1958", "Round Table", "4", "William Molter", "Kerr Stable"], ["1959", "Round Table", "5", "William Molter", "Brookmeade Stable"], ["1961", "T.V . Lark", "4", "Paul Parker", "C. R. McCoy"], ["1963", "Mongo", "4", "Frank A. Bonsal", "Marion duPont Scott"], ["1964", "Turbo Jet II", "4", "Frank A. Bonsal", "Barclay Stable"], ["1965", "Parka", "7", "Warren A. Croll , Jr", "Pelican Stable"], ["1966", "Assagai", "3", "MacKenzie Miller", "Cragwood Stables"], ["1967", "Fort Marcy", "3", "J. Elliott Burch", "Rokeby Stables"], ["1968", "Dr. Fager ( DRF )", "4", "John A. Nerud", "William L. McKnight"], ["1968", "Fort Marcy ( TRA )", "4", "J. Elliott Burch", "Rokeby Stables"], ["1969", "Hawaii", "5", "MacKenzie Miller", "Cragwood Stables"], ["1970", "Fort Marcy", "6", "J. Elliott Burch", "Rokeby Stables"], [1983, "Seattle Slew", 4, "William H. Turner Jr.", "Karen L. Taylor"], [1997, "Cigar", 6, "William I. Mott", "Allen E. Paulson Racing"], [2001, "Point Given", 3, "Bob Baffert", "The Thoroughbred Corp."], [2010, "Blame", 4, "Albert M. Stall Jr.", "Claiborne Farm"], [1956, "Swaps", 4, "Mesh Tenney", "Rex C. Ellsworth"], [1975, "Foolish Pleasure", 3, "LeRoy Jolley", "John L. Greer"], [1987, "Ferdinand", 4, "Charlie Whittingham", "Howard M. Keck"], [1999, "Charismatic", 3, "D. Wayne Lukas", "Robert B. Lewis"], [2008, "Curlin", 4, "Steve Asmussen", "Stonestreet Stables"], [2015, "American Pharoah", 3, "Bob Baffert", "Zayat Stables"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Horse", "Age", "Trainer", "Owner"], "add_description": "The name of this table is horse_races, and the headers of this table are Year,Horse,Age,Trainer,Owner.", "source": "hybridqa", "answer_md5": "[('9fbde5ea357dfcb56030bf77be869409',)]"} +{"description": "Insert a new row into the 'Doctor Who Episodes' table with the following values: Episode # as 'S4', Original airdate (UK) as '30 June 2007', Episode title as '\"Doctor Who Confidential: Music and Monsters\"', Doctor Who episode as 'Episodes 1-13', and Webcast link as 'N/A'.", "label": ["INSERT INTO `Doctor Who Episodes` (`Episode #`, `Original airdate (UK)`, `Episode title`, `Doctor Who episode`, `Webcast link`) VALUES ('S4', '30 June 2007', '\"Doctor Who Confidential: Music and Monsters\"', 'Episodes 1-13', 'N/A')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Doctor Who Episodes", "table_info": {"columns": [{"name": "Episode #", "type": "TEXT"}, {"name": "Original airdate (UK)", "type": "TEXT"}, {"name": "Episode title", "type": "TEXT"}, {"name": "Doctor Who episode", "type": "TEXT"}, {"name": "Webcast link", "type": "TEXT"}], "rows": [["S1", "26 March 2005", "\"A New Dimension\"", "Preview", "N/A"], ["1", "26 March 2005", "\"Bringing Back the Doctor\"", "\" Rose \"", "link"], ["2", "2 April 2005", "\"The Good, the Bad and the Ugly\"", "\" The End of the World \"", "link"], ["3", "9 April 2005", "\"TARDIS Tales\"", "\" The Unquiet Dead \"", "link"], ["4", "16 April 2005", "\"I Get a Side-Kick Out of You\"", "\" Aliens of London \"", "link"], ["5", "23 April 2005", "\"Why on Earth?\"", "\" World War Three \"", "link"], ["6", "30 April 2005", "\"Dalek\"", "\" Dalek \"", "link"], ["7", "7 May 2005", "\"The Dark Side\"", "\" The Long Game \"", "link"], ["8", "14 May 2005", "\"Time Trouble\"", "\" Father's Day \"", "link"], ["9", "21 May 2005", "\"Special Effects\"", "\" The Empty Child \"", "link"], ["10", "28 May 2005", "\"Weird Science\"", "\" The Doctor Dances \"", "link"], ["11", "4 June 2005", "\"Unsung Heroes and Violent Death\"", "\" Boom Town \"", "link"], ["12", "11 June 2005", "\"The World of Who\"", "\" Bad Wolf \"", "link"], ["13", "18 June 2005", "\"The Last Battle\"", "\" The Parting of the Ways \"", "link"], ["S2", "18 June 2005", "\"The Ultimate Guide\"", "Episodes 1\u201312", "N/A"], ["14", "DVD only", "\"Backstage at Christmas\"", "\" The Christmas Invasion \"", "N/A"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Episode #", "Original airdate (UK)", "Episode title", "Doctor Who episode", "Webcast link"], "add_description": "The name of this table is Doctor Who Episodes, and the headers of this table are Episode #,Original airdate (UK),Episode title,Doctor Who episode,Webcast link.", "source": "wikisql", "answer_md5": "[('8a400da35f6087e6fee0d2cb0a3746fc',)]"} +{"description": "The character Natalia Boa Vista played by Eva LaRue in CSI:Miami Characters is still alive. She first appeared in the episode Rio and had a final episode with no specified name. Natalia appeared for a total of 177 episodes spanning from 04x25 to 10x19.", "label": ["INSERT INTO `CSI:Miami Characters` (`Character`, `Fate`, `Actor`, `First Episode`, `Final Episode`, `Duration`, `Final Episode Count`) VALUES ('Natalia Boa Vista', 'Alive', 'Eva LaRue', 'Rio', '', '04x25\u201310x19', '177')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "CSI:Miami Characters", "table_info": {"columns": [{"name": "Character", "type": "TEXT"}, {"name": "Fate", "type": "TEXT"}, {"name": "Actor", "type": "TEXT"}, {"name": "First Episode", "type": "TEXT"}, {"name": "Final Episode", "type": "TEXT"}, {"name": "Duration", "type": "TEXT"}, {"name": "Final Episode Count", "type": "TEXT"}], "rows": [["Rick Stetler", "Arrested", "David Lee Smith", "\"Blood Brothers\"", "\"Time Bomb\"", "02x01\u201308x23", "34"], ["Clavo Cruz", "Deceased: Gunshot Wound", "Gonzalo Menendez", "\"Blood Brothers\"", "\"Man Down\"", "02x01; 03x15; 05x14\u201305x", "4"], ["Judge Joseph Ratner", "Arrested", "William Allen Young", "\"After the Fall\"", "\"Death Eminent\"", "03x10; 04x06; 05x05", "3"], ["Antonio Riaz", "Deceased: Knife Wound", "Vincent Laresca", "\"Rampage\"", "\"Rio\"", "04x24\u201305x01", "3"], ["Memmo Fierro", "Arrested", "Robert LaSardo", "\"Rampage\"", "\"Killer Regrets\"", "04x24\u201304x25; 09x04; 09x13", "5"], ["Scott O'Shay", "Free", "Ed Begley Jr.", "\"A Grizzly Murder\"", "\"Dead Ringer\"", "05x17; 05x19; 10x04; 10", "5"], ["Joe LeBrock", "Arrested", "John Sharian", "\"Inside Out\"", "\"See No Evil\"", "06x03; 06x07; 09x03", "3"], ["Ron Saris", "Free", "Kim Coates", "\"Ambush\"", "\"Dissolved\"", "06x15-07x24", "6"], ["Ivan Sarnoff", "Deceased: Gunshot Wound", "Andrew Divoff", "\"Raging Cannibal\"", "\"Seeing Red\"", "07x04\u201307x25", "4"], ["Darren Vogel", "Free", "Malcolm McDowell", "\"L.A.\"", "\"Habeas Corpse\"", "08x16; 10x18; 10x19", "3"], ["Esteban Navarro", "Arrested", "Kuno Becker", "\"Look Who's Taunting\"", "\"Rest in Pieces\"", "10x04; 10x08; 10x16", "3"], ["Mark Hoffman", "Arrested", "Michael Mosley", "\"The Beginning of the End\"", "\"The Devil and D.B. Russell\"", "11x01-15x18", "17"], ["Julia Foster", "Deceased: Poisoned by her husband", "Linda Park", "\"A Family Affair\"", "\"Dead In His Tracks\"", "09x17-09x19", "3"], ["Steve Cardamone", "Arrested", "Dean Norris", "\"Crow's Feet\"", "\"Fallen Angels\"", "04x10-04x20", "11"], ["Janice Cutler", "Arrested", "Amy Yasbeck", "\"Vengeance\"", "\"All In\"", "14x18-15x02", "2"], ["Lilly Flynn", "Deceased: Shot by Paul Millander", "Annie Corley", "\"Forced Entry\"", "\"Blood Moon\"", "03x04-03x23", "20"], ["Sean Yeager", "Arrested", "Jake Abel", "\"Bad Seed\"", "\"Brain, Interrupted\"", "14x03-14x12", "10"], ["Kim Tanaka", "Arrested", "Krista Allen", "\"High Octane\"", "\"All In\"", "10x16-11x02", "3"], ["Dennis Cutler", "Arrested", "David Clennon", "\"Targets of Obsession\"", "\"All In\"", "11x15-11x22", "4"], ["Calvin Tate", "Deceased: Shot by Catherine Willows", "Lombardo Boyar", "\"Flirting with Disaster\"", "\"Serial Killer\"", "01x18-03x13", "20"], ["Catherine Willows", "Alive", "Marg Helgenberger", "\"Pilot\"", "\"Immortality\"", "01x01-15x18", "331"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Character", "Fate", "Actor", "First Episode", "Final Episode", "Duration", "Final Episode Count"], "add_description": "The name of this table is CSI:Miami Characters, and the headers of this table are Character,Fate,Actor,First Episode,Final Episode,Duration,Final Episode Count.", "source": "wikisql", "answer_md5": "[('63fd7fe3409082f24b01d17ce5fbda14',)]"} +{"description": "On 14 February 1917, the Romanian ship named Uranus with a tonnage of 1,429 was sunk.", "label": ["INSERT INTO shipwrecks (Date, Name, Nationality, Tonnage, Fate) VALUES ('14 February 1917', 'Uranus', 'Romania', '1,429', 'Sunk')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "shipwrecks", "table_info": {"columns": [{"name": "Date", "type": "DATE"}, {"name": "Name", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Tonnage", "type": "TEXT"}, {"name": "Fate", "type": "TEXT"}], "rows": [["2 August 1916", "Kohina Maru", "Japan", "3,164", "Sunk"], ["9 August 1916", "Basileios", "Greece", "488", "Sunk"], ["2 October 1916", "Huntsfall", "United Kingdom", "4,331", "Sunk"], ["7 November 1916", "Melanie", "Russian Empire", "116", "Sunk"], ["-", "-", "Total:", "8,099", "-"], ["1 December 1916", "Lusitania", "United Kingdom", "44,060", "Sunk"], ["14 January 1917", "SS California", "United States", "5,000", "Sunk"], ["23 March 1917", "Alcantara", "United Kingdom", "15,000", "Sunk"], ["7 April 1917", "Deutschland", "Germany", "13,000", "Captured"], ["20 May 1917", "SS Gairsoppa", "United Kingdom", "6,802", "Sunk"], ["15 July 1917", "SS City of Athens", "United Kingdom", "4,893", "Sunk"], ["4 September 1917", "SS Otranto", "United Kingdom", "12,124", "Sunk"], ["12 November 1917", "SS Montezuma", "United States", "8,099", "Sunk"], ["9 January 1918", "SS Tuscania", "United Kingdom", "14,484", "Sunk"], ["17 March 1918", "SS Mendi", "South Africa", "4,230", "Sunk"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Name", "Nationality", "Tonnage", "Fate"], "add_description": "The name of this table is shipwrecks, and the headers of this table are Date,Name,Nationality,Tonnage,Fate.", "source": "fetaqa", "answer_md5": "[('50d78dc77cb73c6051350cd42d66f8cb',)]"} +{"description": "Insert into the 'Football Draft Picks' table the values for Round, Pick, Player, Position, and School/Club Team, which are '33', '336', 'John Smith', 'Quarterback', and 'USC', respectively.", "label": ["INSERT INTO `Football Draft Picks` (Round, Pick, Player, Position, `School/Club Team`) VALUES ('33', '336', 'John Smith', 'Quarterback', 'USC')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Draft Picks", "table_info": {"columns": [{"name": "Round", "type": "TEXT"}, {"name": "Pick", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "School/Club Team", "type": "TEXT"}], "rows": [["1", "11", "Walt Schlinkman", "Fullback", "Texas Tech"], ["3", "27", "Clyde Goodnight", "End", "Tulsa"], ["5", "43", "Joe Graham", "End", "Florida"], ["6", "54", "Don Wells", "Defensive End", "Georgia"], ["7", "65", "Casey Stephenson", "Back", "Tennessee"], ["8", "76", "Toby Collins", "Tackle", "Tulsa"], ["9", "87", "Lamar Dingler", "End", "Arkansas"], ["10", "98", "Hal Helscher", "Back", "LSU"], ["11", "109", "Ralph Hammond", "Center", "Pittsburgh"], ["12", "120", "Ed Podgorski", "Tackle", "Lafayette"], ["13", "131", "Bill Hackett", "Guard", "Ohio State"], ["14", "142", "Marv Lindsey", "Back", "Arkansas"], ["15", "153", "Robert McClure", "Tackle", "Nevada"], ["16", "164", "Harry Pieper", "Center", "California"], ["17", "175", "Bob Kula", "Back", "Minnesota"], ["18", "186", "Frank Hazard", "Guard", "Nebraska"], ["19", "197", "Ed Jeffers", "Tackle", "Oklahoma State"], ["20", "208", "Bill Prentice", "Back", "Santa Clara"], ["21", "219", "Warren Fuller", "End", "Fordham"], ["22", "230", "Fred Neilsen", "Tackle", "St. Mary's (CA)"], ["23", "241", "Bob Gilmore", "Back", "Washington"], ["24", "252", "Lloyd Baxter", "Center", "SMU"], ["25", "263", "Nolan Luhn", "Wide Receiver", "Tulsa"], ["26", "274", "Nestor Blanco", "Guard", "Colorado Mines"], ["27", "285", "Bill Chestnut", "Back", "Kansas"], ["28", "296", "Jim Thompson", "Back", "Washington State"], ["29", "307", "Jim Evans", "End", "Idaho"], ["30", "318", "Hamilton Nichols", "Guard", "Rice"], ["31", "324", "John Priday", "Back", "Ohio State"], ["32", "330", "Bill Joe Aldridge", "Back", "Oklahoma State"], ["33", "336", "Tommy York", "Quarterback", "Michigan"], ["34", "347", "Sammy Davis", "Running Back", "Florida State"], ["35", "358", "Wesley Brown", "Wide Receiver", "Ole Miss"], ["36", "369", "Joe Smith", "Tight End", "Miami"], ["37", "380", "Jack Cooper", "Defensive Tackle", "Alabama"], ["38", "391", "Mike Jackson", "Outside Linebacker", "LSU"], ["39", "402", "Frank Jenkins", "Inside Linebacker", "Georgia Tech"], ["40", "413", "Robertson Lee", "Cornerback", "TCU"], ["41", "424", "Charlie Chen", "Free Safety", "UCLA"], ["42", "435", "Doug Reynolds", "Strong Safety", "Penn State"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Round", "Pick", "Player", "Position", "School/Club Team"], "add_description": "The name of this table is Football Draft Picks, and the headers of this table are Round,Pick,Player,Position,School/Club Team.", "source": "wikisql", "answer_md5": "[('9df14bd8a2a4b2009e1fc8ec8854dea7',)]"} +{"description": "Insert 'Another Plant' with 'Muskegon' into 'Power Plants and Rivers' table with power of '15' (in MW).", "label": ["INSERT INTO `Power Plants and Rivers` (`Plant`, `River`, `Power ( MW )`) VALUES ('Another Plant', 'Muskegon', '15')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Power Plants and Rivers", "table_info": {"columns": [{"name": "Plant", "type": "text"}, {"name": "River", "type": "text"}, {"name": "Power ( MW )", "type": "text"}], "rows": [["Alcona Dam", "Au Sable", "8"], ["Allegan Hydro", "Kalamazoo", "3"], ["Cooke Dam", "Au Sable", "9"], ["Croton Dam", "Muskegon", "9"], ["Five Channels Dam", "Au Sable", "6"], ["Foote Dam", "Au Sable", "9"], ["Hardy Dam", "Muskegon", "30"], ["Hodenpyl Hydro", "Manistee", "18"], ["Loud Hydro", "Au Sable", "4"], ["Mio Hydro", "Au Sable", "5"], ["Rogers Hydro", "Muskegon", "7"], ["Tippy Dam", "Manistee", "20"], ["Webber Hydro", "Grand", "4"], ["Herrick Hydro", "Kalamazoo", "6"], ["Gladwin Hydro", "Tittabawassee", "3"], ["Bear Lake Hydro", "Manistee", "4"], ["Harrisville Dam", "Thunder Bay", "5"], ["Bartley Lake Hydro", "Cass", "9"], ["Kelly Lake Hydro", "Menominee", "7"], ["Duck Lake Hydro", "Grand", "2"], ["Cadillac Hydro", "Manistee", "8"], ["Union Dam", "Clinton", "6"], ["Platte Hydro", "Platte", "3"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Plant", "River", "Power ( MW )"], "add_description": "The name of this table is Power Plants and Rivers, and the headers of this table are Plant,River,Power ( MW ).", "source": "hybridqa", "answer_md5": "[('4601e3968820f0fb2668dad7f5a06431',)]"} +{"description": "The team record for UCF in 2021 was 35-25 overall and 13-11 in conference play, finishing 5th in the standings and reaching the NCAA Regional postseason tournament. The record was inserted into the 'Team Season Record' table with the following values: Season = '2021', Team = 'UCF', Overall = '35-25', Conference = '13-11', Standing = '5th', Postseason = 'NCAA Regional'.", "label": ["INSERT INTO `Team Season Record` (Season, Team, Overall, Conference, Standing, Postseason) VALUES ('2021', 'UCF', '35-25', '13-11', '5th', 'NCAA Regional');"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Team Season Record", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Overall", "type": "TEXT"}, {"name": "Conference", "type": "TEXT"}, {"name": "Standing", "type": "TEXT"}, {"name": "Postseason", "type": "TEXT"}], "rows": [["UCF Knights (Conference USA) (2009\u20132013)", "UCF Knights (Conference USA) (2009\u20132013)", "UCF Knights (Conference USA) (2009\u20132013)", "UCF Knights (Conference USA) (2009\u20132013)", "UCF Knights (Conference USA) (2009\u20132013)", "UCF Knights (Conference USA) (2009\u20132013)"], ["2009", "UCF", "22\u201335", "9\u201315", "T\u20137th", "-"], ["2010", "UCF", "33\u201322", "10\u201314", "T\u20138th", "-"], ["2011", "UCF", "39\u201323", "12\u201312", "T\u20134th", "NCAA Regional"], ["2012", "UCF", "45\u201317", "16\u20138", "2nd", "NCAA Regional"], ["2013", "UCF", "29\u201330", "13\u201311", "T-5th", "-"], ["C\u2013USA:", "C\u2013USA:", "168\u2013127", "60\u201360", "-", "-"], ["UCF Knights (American Athletic Conference) (2014\u20132016)", "UCF Knights (American Athletic Conference) (2014\u20132016)", "UCF Knights (American Athletic Conference) (2014\u20132016)", "UCF Knights (American Athletic Conference) (2014\u20132016)", "UCF Knights (American Athletic Conference) (2014\u20132016)", "UCF Knights (American Athletic Conference) (2014\u20132016)"], ["2014", "UCF", "36\u201323", "17\u20137", "2nd", "-"], ["2015", "UCF", "31\u201327", "10\u201314", "7th", "-"], ["2016", "UCF", "26\u201333", "8\u201316", "T-7th", "-"], ["AAC:", "AAC:", "93\u201383", "35\u201337", "-", "-"], ["Total:", "Total:", "261\u2013210", "-", "-", "-"], ["National champion Postseason invitational champion Conference regular season champion Conference regular season and conference tournament champion Division regular season champion Division regular season and conference tournament champion Conference tournament champion", "National champion Postseason invitational champion Conference regular season champion Conference regular season and conference tournament champion Division regular season champion Division regular season and conference tournament champion Conference tournament champion", "National champion Postseason invitational champion Conference regular season champion Conference regular season and conference tournament champion Division regular season champion Division regular season and conference tournament champion Conference tournament champion", "National champion Postseason invitational champion Conference regular season champion Conference regular season and conference tournament champion Division regular season champion Division regular season and conference tournament champion Conference tournament champion", "National champion Postseason invitational champion Conference regular season champion Conference regular season and conference tournament champion Division regular season champion Division regular season and conference tournament champion Conference tournament champion", "National champion Postseason invitational champion Conference regular season champion Conference regular season and conference tournament champion Division regular season champion Division regular season and conference tournament champion Conference tournament champion"], ["2017", "UCF", "40\u201322", "15\u20139", "T-2nd", "NCAA Regional"], ["2018", "UCF", "35\u201321", "14\u201310", "T-4th", "-"], ["2019", "UCF", "36\u201322", "13\u201311", "5th", "-"], ["2020", "UCF", "13\u20134", "0\u20130", "-", "-"], ["AAC:", "AAC:", "124\u201389", "42\u201339", "-", "-"], ["UCF Knights (Big 12 Conference) (2021\u2013present)", "UCF Knights (Big 12 Conference) (2021\u2013present)", "UCF Knights (Big 12 Conference) (2021\u2013present)", "UCF Knights (Big 12 Conference) (2021\u2013present)", "UCF Knights (Big 12 Conference) (2021\u2013present)", "UCF Knights (Big 12 Conference) (2021\u2013present)"], ["2021", "UCF", "3\u20130", "0\u20130", "-", "-"], ["Big 12:", "Big 12:", "-", "-", "-", "-"], ["Total:", "Total:", "262\u2013232", "-", "-", "-"], ["Conference tournament runner-up", "-", "-", "-", "-", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Season", "Team", "Overall", "Conference", "Standing", "Postseason"], "add_description": "The name of this table is Team Season Record, and the headers of this table are Season,Team,Overall,Conference,Standing,Postseason.", "source": "fetaqa", "answer_md5": "[('bcfbac5bcc0ac280d9747d39b9d0241a',)]"} +{"description": "The game result for Game 16 in October against the San Jose Sharks was recorded with a final score of 4-3. Lundqvist's decision resulted in a loss, bringing the team's record to 13-2-1. This information was inserted into the game_results table.", "label": ["INSERT INTO game_results (Game, October, Opponent, Score, Decision, Record) VALUES (16, 9, 'San Jose Sharks', '4 - 3', 'Lundqvist', '13-2-1')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "game_results", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "October", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Decision", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["1", "4 (in Prague , Czech Republic", "@ Tampa Bay Lightning", "2 - 1", "Lundqvist", "1-0-0"], ["2", "5 (in Prague, Czech Republic)", "Tampa Bay Lightning", "2 - 1", "Lundqvist", "2-0-0"], ["3", "10", "Chicago Blackhawks", "4 - 2", "Lundqvist", "3-0-0"], ["4", "11", "@ Philadelphia Flyers", "4 - 3", "Valiquette", "4-0-0"], ["5", "13", "New Jersey Devils", "4 - 1", "Lundqvist", "5-0-0"], ["6", "15", "Buffalo Sabres", "3 - 1", "Lundqvist", "5-1-0"], ["7", "17", "Toronto Maple Leafs", "1 - 0 SO", "Valiquette", "6-1-0"], ["8", "18", "@ Detroit Red Wings", "5 - 4 OT", "Lundqvist", "6-1-1"], ["9", "20", "Dallas Stars", "2 - 1", "Lundqvist", "6-2-1"], ["10", "24", "@ Columbus Blue Jackets", "3 - 1", "Lundqvist", "7-2-1"], ["11", "25", "Pittsburgh Penguins", "3 - 2 SO", "Lundqvist", "8-2-1"], ["12", "27", "@ New York Islanders", "4 - 2", "Lundqvist", "9-2-1"], ["13", "30", "Atlanta Thrashers", "3 - 2", "Lundqvist", "10-2-1"], ["14", "2", "Boston Bruins", "1 - 0", "Lundqvist", "11-2-1"], ["15", "5", "@ New Jersey Devils", "2 - 2 OT", "Lundqvist", "11-2-2"], ["16", "7", "Montreal Canadiens", "3 - 2 OT", "Lundqvist", "12-2-2"], ["17", "11", "@ Boston Bruins", "5 - 2", "Lundqvist", "13-2-2"], ["18", "13", "Philadelphia Flyers", "4 - 3 SO", "Lundqvist", "14-2-2"], ["19", "15", "@ Montreal Canadiens", "1 - 0", "Lundqvist", "15-2-2"], ["20", "17", "@ Pittsburgh Penguins", "4 - 3", "Lundqvist", "16-2-2"], ["21", "19", "Buffalo Sabres", "2 - 1", "Lundqvist", "17-2-2"], ["22", "22", "@ Tampa Bay Lightning", "3 - 2 OT", "Lundqvist", "18-2-2"], ["23", "25", "Columbus Blue Jackets", "2 - 1", "Lundqvist", "19-2-2"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Game", "October", "Opponent", "Score", "Decision", "Record"], "add_description": "The name of this table is game_results, and the headers of this table are Game,October,Opponent,Score,Decision,Record.", "source": "wikisql", "answer_md5": "[('4a8c698283148fbb3b0ca5a18cbef583',)]"} +{"description": "The Surname Ranking table is being updated with data for the surname Hedlund. The data includes the rank of 23, 21.899 as the number of bearers in 2008, the type of landscape, and the etymology of heath+grove.", "label": ["INSERT INTO `Surname Ranking` (`Rank`, `Surname`, `Number of bearers 2008`, `Type`, `Etymology`) VALUES ('23', 'Hedlund', '21.899', 'landscape', 'heath + grove')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Surname Ranking", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Surname", "type": "TEXT"}, {"name": "Number of bearers 2008", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}, {"name": "Etymology", "type": "TEXT"}], "rows": [["1", "Johansson", "265.308", "patronymic", "son of Johan"], ["2", "Andersson", "263.518", "patronymic", "son of Anders"], ["3", "Karlsson", "201.681", "patronymic", "son of Karl"], ["4", "Nilsson", "178.845", "patronymic", "son of Nils"], ["5", "Eriksson", "142.959", "patronymic", "son of Erik"], ["6", "Larsson", "129.275", "patronymic", "son of Lars"], ["7", "Olsson", "113.927", "patronymic", "son of Ola"], ["8", "Persson", "111.629", "patronymic", "son of Per"], ["9", "Svensson", "106.886", "patronymic", "son of Sven"], ["10", "Gustafsson", "74.432", "patronymic", "son of Gustaf"], ["11", "Pettersson", "67.519", "patronymic", "son of Petter"], ["12", "Jonsson", "59.307", "patronymic", "son of Jon"], ["13", "Jansson", "51.346", "patronymic", "son of Jan"], ["14", "Hansson", "45.009", "patronymic", "son of Hans"], ["15", "Bengtsson", "35.241", "patronymic", "son of Bengt"], ["16", "J\u00f6nsson", "34.018", "patronymic", "son of J\u00f6ns"], ["17", "Petersson", "31.332", "patronymic", "son of Peter"], ["18", "Carlsson", "29.967", "patronymic", "son of Carl"], ["19", "Lindberg", "27.344", "landscape", "linden + mountain"], ["20", "Magnusson", "27.152", "patronymic", "son of Magnus"], ["21", "Anders", "25", "given name", "variant of Andreas"], ["22", "Ludwig", "22", "given name", "famous warrior"], ["23", "M\u00fcller", "20", "occupational", "miller"], ["24", "Schneider", "18", "occupational", "tailor"], ["25", "Schmidt", "17", "occupational", "blacksmith"], ["26", "Fischer", "16", "occupational", "fisherman"], ["27", "Weber", "15", "occupational", "weaver"], ["28", "Wagner", "14", "occupational", "wagoner"], ["29", "Becker", "13", "occupational", "baker"], ["30", "Richter", "12", "occupational", "judge"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Rank", "Surname", "Number of bearers 2008", "Type", "Etymology"], "add_description": "The name of this table is Surname Ranking, and the headers of this table are Rank,Surname,Number of bearers 2008,Type,Etymology.", "source": "wikisql", "answer_md5": "[('eb88cd25c04e2c31ef9b75325b9bfab7',)]"} +{"description": "Update the results of the football team named Ballarat FL from Creswick with 5 wins, 3 byes, 8 losses, 2 draws and against a total score of 1305.", "label": ["UPDATE `Football Team Results` SET Wins = '5', Byes = '3', Losses = '8', Draws = '2', Against = '1305' WHERE `Ballarat FL` = 'Creswick'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Team Results", "table_info": {"columns": [{"name": "Ballarat FL", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Byes", "type": "TEXT"}, {"name": "Losses", "type": "TEXT"}, {"name": "Draws", "type": "TEXT"}, {"name": "Against", "type": "TEXT"}], "rows": [["Sunbury", "13", "1", "4", "0", "1169"], ["Melton South", "13", "1", "4", "0", "1212"], ["Redan", "12", "2", "4", "0", "1106"], ["Daylesford", "12", "1", "5", "0", "1254"], ["Darley", "11", "2", "5", "0", "1413"], ["Melton", "9", "2", "7", "0", "1451"], ["Sebastapol", "7", "2", "9", "0", "1687"], ["Bacchus Marsh", "6", "2", "10", "0", "1626"], ["Lake Wendouree", "3", "2", "13", "0", "1579"], ["Ballarat", "3", "1", "14", "0", "1837"], ["East Point", "1", "2", "15", "0", "1902"], ["Wendouree", "12", "1", "4", "0", "972"], ["Buninyong", "14", "0", "3", "0", "1056"], ["Mount Clear", "10", "3", "4", "0", "1021"], ["Gordon", "7", "2", "8", "0", "1289"], ["Clunes", "9", "1", "7", "0", "1201"], ["Beaufort", "7", "3", "7", "0", "1240"], ["Newlyn", "8", "2", "7", "0", "966"], ["Learmonth", "4", "2", "11", "0", "1463"], ["Creswick", "5", "2", "10", "0", "1362"], ["Springbank", "1", "2", "14", "0", "1685"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Ballarat FL", "Wins", "Byes", "Losses", "Draws", "Against"], "add_description": "The name of this table is Football Team Results, and the headers of this table are Ballarat FL,Wins,Byes,Losses,Draws,Against.", "source": "wikisql", "answer_md5": "[('e63818ea2e715870f6b76d69d94d6143',)]"} +{"description": "Change the title of the film in the Actress Filmography table to 'Wonder Woman: 1984' where the year is '2017'.", "label": ["UPDATE `Actress Filmography` SET `Title` = 'Wonder Woman: 1984' WHERE `Year` = '2017';"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Actress Filmography", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2003", "Thirteen", "Evie Zamora", "Also co-writer"], ["2005", "Man of God", "Zane Berg", "-"], ["2005", "Lords of Dogtown", "Kathy Alva", "-"], ["2005", "American Gun", "Tally", "-"], ["2006", "Mini's First Time", "Minerva \"Mini\" Drogues", "-"], ["2007", "Cherry Crush", "Shay Bettencourt", "-"], ["2008", "Twilight", "Rosalie Hale", "-"], ["2008", "Familiar Strangers", "Allison", "-"], ["2009", "The Twilight Saga: New Moon", "Rosalie Hale", "-"], ["2009", "Last Day of Summer", "Stefanie", "Also executive producer"], ["2010", "The Twilight Saga: Eclipse", "Rosalie Hale", "-"], ["2010", "Chain Letter", "Jessie Campbell", "-"], ["2010", "Privileged", "Lauren Carrington", "-"], ["2011", "Catch .44", "Kara", "-"], ["2011", "The Twilight Saga: Breaking Dawn \u2013 Part 1", "Rosalie Hale", "-"], ["2012", "The Twilight Saga: Breaking Dawn \u2013 Part 2", "Rosalie Hale", "-"], ["2013", "Empire State", "Lizzette", "-"], ["2013", "Pawn", "Amanda", "-"], ["2013", "Enter the Dangerous Mind", "Wendy", "-"], ["2014", "Balls Out", "Meredith Downs", "-"], ["2014", "In Your Eyes", "Donna", "-"], ["2014", "Murder of a Cat", "Greta", "-"], ["2015", "About Scout", "Georgie", "-"], ["2016", "Jack Goes Home", "Crystal", "-"], ["2016", "A Sunday Horse", "Debi Walden", "-"], ["2002", "The Third Wheel", "Margo", "-"], ["2004", "Jersey Girl", "Susan", "-"], ["2006", "Accepted", "Monica Moreland", "-"], ["2007", "Waitress", "Dawn", "-"], ["2011", "Butter", "Brooke Swinkowski", "-"], ["2012", "Celeste and Jesse Forever", "Riley Banks", "-"], ["2013", "Plush", "Hayley", "-"], ["2015", "The Perfect Match", "Ginger", "-"], ["2017", "The My Little Pony Movie", "Songbird Serenade", "Voice role"], ["2019", "Bombshell", "Megyn Kelly", "-"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Actress Filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('49199811f288371b1a3f0850cd3c278c',)]"} +{"description": "Update the winner of the Sportswoman_of_the_Year_Award_1 to 'Naomi Osaka' for the sport of Tennis and the year 2015.", "label": ["UPDATE Sportswoman_of_the_Year_Award_1 SET Winner = 'Naomi Osaka' WHERE Sport = 'Tennis' AND Year = '2015'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Sportswoman_of_the_Year_Award_1", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Winner", "type": "TEXT"}, {"name": "Sport", "type": "TEXT"}], "rows": [["1993", "Sheryl Swoopes", "Basketball"], ["1994", "Lisa Fernandez", "Softball"], ["1995", "Rebecca Lobo", "Basketball"], ["1996", "Teresa Edwards", "Basketball"], ["1997", "Mia Hamm", "Soccer"], ["1998", "Cynthia Cooper", "Basketball"], ["1999", "Mia Hamm", "Soccer"], ["2000", "Serena Williams & Venus Williams", "Tennis"], ["2001", "Lisa Leslie", "Basketball"], ["2002", "Sue Bird", "Basketball"], ["2003", "Lisa Leslie", "Basketball"], ["2004", "Misty May-Treanor & Kerri Walsh", "Volleyball"], ["2005", "Cat Osterman", "Softball"], ["2006", "Misty May-Treanor & Kerri Walsh", "Volleyball"], ["2007", "Monica Abbott", "Softball"], ["2008", "Jessica Mendoza", "Softball"], ["2009", "Jessie Vetter", "Hockey"], ["2010", "Katie O'Donnell", "Field hockey"], ["2011", "Abby Wambach", "Soccer"], ["2012", "Alex Morgan", "Soccer"], ["2013", "Breanna Stewart", "Basketball"], ["2014", "Carli Lloyd", "Soccer"], ["2015", "Serena Williams", "Tennis"], ["2016", "Simone Biles", "Gymnastics"], ["2017", "Sloane Stephens", "Tennis"], ["2018", "Chloe Kim", "Snowboarding"], ["2019", "Megan Rapinoe", "Soccer"], ["2020", "Naomi Osaka", "Tennis"], ["2021", "Amanda Nunes", "MMA"], ["2022", "Lynn Williams", "Soccer"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Winner", "Sport"], "add_description": "The name of this table is Sportswoman_of_the_Year_Award_1, and the headers of this table are Year,Winner,Sport.", "source": "hybridqa", "answer_md5": "[('c45c4e5daa08a8c3c3e18ee131494ba6',)]"} +{"description": "Update the host city of the 2026 Central European Jamboree to Bratislava.", "label": ["UPDATE `Central European Jamboree` SET `Host City`='Bratislava' WHERE `Year`='2026'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Central European Jamboree", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Event name", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Host City", "type": "TEXT"}, {"name": "Theme", "type": "TEXT"}, {"name": "Attendance", "type": "INTEGER"}], "rows": [["1931", "Camp of Slavic Scouts", "Prague", "Czechoslovakia", "", ""], ["1935", "Jubilee Jamboree of Polish Scouting and Guiding Association", "Spa\u0142a", "Poland", "", ""], ["1997", "F\u00e9nix", "Prague", "Czech Republic", "", ""], ["1998", "Eurocor", "\u017darnovica", "Slovakia", "", ""], ["1999", "San '99", "Sanok", "Poland", "", ""], ["2001", "Carpathia 2001", "Csob\u00e1nka", "Hungary", "Closer to each other", "1000"], ["2004", "Tatracor", "Tatransk\u00e1 Lomnica", "Slovakia", "Reach the Top", "2000"], ["2006", "Orbis 2006", "Brno", "Czech Republic", "Many cultures - one world", "3000"], ["2008", "Silesia 2008", "Chorz\u00f3w", "Poland", "Discover new world", "1400"], ["2010", "ConCordia 2010", "Budapest", "Hungary", "Many Hearts , One Beat", ""], ["2012", "11th Central European Jamboree", "Liptovsk\u00fd Mikul\u00e1\u0161", "Slovakia", "Experience Elements", "1000"], ["2014", "12th Central European Jamboree", "Doksy", "Czech Republic", "Prepared for the future", "1012"], ["2016", "13th Central European Jamboree", "Wroc\u0142aw", "Poland", "Art of Scouting", "1800"], ["2018", "14th Central European Jamboree", "Szalki Island ( Duna\u00fajv\u00e1ros )", "Hungary", "Scouting on new waves", "700"], ["2022", "15th Central European Jamboree", "TBA", "Czech Republic", "", ""], ["2024", "16th Central European Jamboree", "TBA", "Slovakia", "", ""], ["2025", "Mountain Quest", "Zakopane", "Poland", "Exploring the Alps", "1200"], ["2026", "Danube Adventure", "Budapest", "Hungary", "Paddling through history", "800"], ["2027", "Castles and Legends", "Prague", "Czech Republic", "Uncovering ancient stories", "1500"], ["2028", "Tatra Trek", "Poprad", "Slovakia", "Hiking the Carpathians", "1000"], ["2029", "Wilderness Survival", "Bieszczady Mountains", "Poland", "Living off the land", "600"], ["2030", "Riverside Rendezvous", "Bratislava", "Slovakia", "Canoeing and camaraderie", "900"], ["2031", "History in the Making", "Krakow", "Poland", "Exploring the past to shape the future", "2000"], ["2032", "Vineyard Ventures", "Budapest", "Hungary", "Sampling local flavors", "700"], ["2033", "Highland Haven", "Tatras", "Czech Republic", "Skiing and snowboarding", "800"], ["2034", "Danubian Delight", "Bratislava", "Slovakia", "Enjoying the river life", "1200"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Event name", "Location", "Host City", "Theme", "Attendance"], "add_description": "The name of this table is Central European Jamboree, and the headers of this table are Year,Event name,Location,Host City,Theme,Attendance.", "source": "hybridqa", "answer_md5": "[('4b6c7bffa0dc4b7749deeb42d2726a5d',)]"} +{"description": "In the year 2002, update the Baseball Team Performance table to set the Affiliation as 'Red Sox' and Manager as 'Bill Belichick'.", "label": ["UPDATE `Baseball Team Performance` SET Affiliation='Red Sox', Manager='Bill Belichick' WHERE Year='2002'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Baseball Team Performance", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "League", "type": "TEXT"}, {"name": "Affiliation", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "Finish", "type": "TEXT"}, {"name": "Manager", "type": "TEXT"}, {"name": "Playoffs", "type": "TEXT"}], "rows": [["1982", "American Association", "Cardinals", "73\u201362", "2nd (tie)", "Joe Frazier", "-"], ["1983", "American Association", "Cardinals", "78\u201357", "1st", "Jim Fregosi", "Lost League Championship"], ["1984", "American Association", "Cardinals", "79\u201376", "4th (tie)", "Jim Fregosi", "American Association Champs"], ["1985", "American Association", "Cardinals", "74\u201368", "1st", "Jim Fregosi", "American Association Champs"], ["1986", "American Association", "Cardinals", "64\u201378", "4th", "Jim Fregosi; Dyar Miller; Dave Bialas", "-"], ["1987", "American Association", "Cardinals", "78\u201362", "2nd", "Mike Jorgensen", "Lost in semifinals"], ["1988", "American Association", "Cardinals", "63\u201379", "4th", "Mike Jorgensen", "-"], ["1989", "American Association", "Cardinals", "71\u201374", "4th", "Mike Jorgensen", "-"], ["1990", "American Association", "Cardinals", "74\u201372", "3rd", "Gaylen Pitts", "-"], ["1991", "American Association", "Cardinals", "51\u201392", "4th", "Mark DeJohn", "-"], ["1992", "American Association", "Cardinals", "73\u201370", "3rd", "Jack Krol; Mark Riggins", "-"], ["1993", "American Association", "Cardinals", "68\u201376", "3rd", "Jack Krol; Mark Riggins", "-"], ["1994", "American Association", "Cardinals", "74\u201368", "4th", "Joe Pettini", "Lost in semifinals"], ["1995", "American Association", "Cardinals", "74\u201370", "4th", "Joe Pettini", "American Association Champs"], ["1996", "American Association", "Cardinals", "60\u201384", "4th", "Joe Pettini", "-"], ["1997", "American Association", "Cardinals", "58\u201385", "4th", "Gaylen Pitts", "-"], ["1998", "International League", "Brewers", "77\u201367", "1st", "Gary Allenson", "Lost in semifinals"], ["2000", "International League", "Red Sox", "80-62", "1st", "Grady Little", "Lost in semifinals"], ["2001", "International League", "Indians", "72-72", "3rd", "Brian Graham", "-"], ["2002", "International League", "Phillies", "76-68", "4th", "Gary Varsho", "-"], ["2003", "International League", "Orioles", "71-73", "3rd", "Tim Leiper", "-"], ["2004", "Pacific Coast League", "Cubs", "79-64", "1st", "Bobby Dickerson", "Won League Championship"], ["2005", "Pacific Coast League", "Athletics", "76-68", "2nd", "Tony DeFrancesco", "Lost in semifinals"], ["2006", "Pacific Coast League", "Padres", "76-68", "1st (tie)", "Craig Colbert", "Lost in semifinals"], ["2007", "Pacific Coast League", "Rangers", "73-71", "3rd", "Randy Ready", "Lost in semifinals"], ["2008", "Pacific Coast League", "Diamondbacks", "64-80", "4th", "Bill Plummer", "-"], ["2009", "Pacific Coast League", "Rockies", "72-72", "2nd (tie)", "Stu Cole", "Lost in semifinals"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "League", "Affiliation", "Record", "Finish", "Manager", "Playoffs"], "add_description": "The name of this table is Baseball Team Performance, and the headers of this table are Year,League,Affiliation,Record,Finish,Manager,Playoffs.", "source": "fetaqa", "answer_md5": "[('9f28d213337225a1c163e790dafa5c88',)]"} +{"description": "Set the LGA value to Armadale for the primary school named Byford Primary School in the Western Australia database.", "label": ["UPDATE `Primary Schools in Western Australia` SET `LGA` = 'Armadale' WHERE `Name` = 'Byford Primary School'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Primary Schools in Western Australia", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Suburb", "type": "TEXT"}, {"name": "LGA", "type": "TEXT"}, {"name": "Region", "type": "TEXT"}, {"name": "Established", "type": "INT"}], "rows": [["Adam Road Primary School", "South Bunbury", "Bunbury", "South West", "1967"], ["Albany Primary School", "Albany", "Albany", "Great Southern", "1855"], ["Allanson Primary School", "Allanson", "Collie", "South West", "1913"], ["Allendale Primary School", "Wonthella", "Greater Geraldton", "Mid West", "1952"], ["Amaroo Primary School", "Collie", "Collie", "South West", "1950"], ["Augusta Primary School", "Augusta", "Augusta-Margaret River", "South West", "1905"], ["Australind Primary School", "Australind", "Harvey", "South West", "1980"], ["Avonvale Primary School", "Northam", "Northam", "Wheatbelt", "1954"], ["Babakin Primary School", "Babakin", "Bruce Rock", "Wheatbelt", "1913"], ["Badgingarra Primary School", "Badgingarra", "Dandaragan", "Wheatbelt", "1965"], ["Bakers Hill Primary School", "Bakers Hill", "Northam", "Wheatbelt", "1898"], ["Baler Primary School", "South Hedland", "Port Hedland", "Pilbara", "1975"], ["Balingup Primary School", "Balingup", "Donnybrook-Balingup", "South West", "1895"], ["Beachlands Primary School", "Beachlands", "Greater Geraldton", "Mid West", "1956"], ["Beacon Primary School", "Beacon", "Mount Marshall", "Wheatbelt", "1932"], ["Bencubbin Primary School", "Bencubbin", "Mount Marshall", "Wheatbelt", "1923"], ["Bindoon Primary School", "Bindoon", "Chittering", "Wheatbelt", "1954"], ["Binnu Primary School", "Binnu", "Northampton", "Mid West", "1958"], ["Bluff Point Primary School", "Bluff Point", "Greater Geraldton", "Mid West", "1913"], ["Bolgart Primary School", "Bolgart", "Victoria Plains", "Wheatbelt", "1915"], ["Broome Primary School", "Broome", "Broome", "Kimberley", "1896"], ["Bridgetown Primary School", "Bridgetown", "Bridgetown-Greenbushes", "South West", "1895"], ["Bullsbrook Primary School", "Bullsbrook", "Swan", "Metropolitan", "1957"], ["Bunbury Primary School", "Bunbury", "Bunbury", "South West", "1871"], ["Busselton Primary School", "Busselton", "Busselton", "South West", "1855"], ["Butler Primary School", "Butler", "Wanneroo", "Metropolitan", "2005"], ["Byford Primary School", "Byford", "Serpentine-Jarrahdale", "Metropolitan", "1985"], ["Canning Vale Primary School", "Canning Vale", "Canning", "Metropolitan", "1992"], ["Capel Primary School", "Capel", "Capel", "South West", "1885"], ["Carlisle Primary School", "Carlisle", "Victoria Park", "Metropolitan", "1905"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "Suburb", "LGA", "Region", "Established"], "add_description": "The name of this table is Primary Schools in Western Australia, and the headers of this table are Name,Suburb,LGA,Region,Established.", "source": "hybridqa", "answer_md5": "[('4b5672aa4e7900af964d80e017ff494f',)]"} +{"description": "Update the table 'Zodiac Decans Rulers Table' by setting the ruler for the first decan (0 - 9.999 deg.) to 'Venus', the ruler for the second decan (10 - 19.999 deg.) to 'Saturn', and the ruler for the third decan (20 - 29.999 deg.) to 'Mercury' where the sign is 'Taurus'.", "label": ["UPDATE `Zodiac Decans Rulers Table` SET `First Decan ruler ( 0 - 9.999 deg . )`='Venus', `Second Decan ruler ( 10 - 19.999 deg . )`='Saturn', `Third Decan ruler ( 20 - 29.999 deg . )`='Mercury' WHERE `Sign`='Taurus'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Zodiac Decans Rulers Table", "table_info": {"columns": [{"name": "Sign", "type": "text"}, {"name": "First Decan ruler ( 0 - 9.999 deg . )", "type": "text"}, {"name": "Second Decan ruler ( 10 - 19.999 deg . )", "type": "text"}, {"name": "Third Decan ruler ( 20 - 29.999 deg . )", "type": "text"}], "rows": [["Aries", "Mars", "Sun", "Jupiter"], ["Taurus", "Venus", "Mercury", "Saturn"], ["Gemini", "Mercury", "Venus", "Saturn"], ["Cancer", "Moon", "Mars", "Jupiter"], ["Leo", "Sun", "Jupiter", "Mars"], ["Virgo", "Mercury", "Saturn", "Venus"], ["Libra", "Venus", "Saturn", "Mercury"], ["Scorpio", "Mars", "Jupiter", "Moon"], ["Sagittarius", "Jupiter", "Mars", "Sun"], ["Capricorn", "Saturn", "Venus", "Mercury"], ["Aquarius", "Saturn", "Mercury", "Venus"], ["Pisces", "Jupiter", "Moon", "Mars"], ["Aries", "Sun", "Jupiter", "Mars"], ["Taurus", "Mercury", "Saturn", "Venus"], ["Gemini", "Venus", "Saturn", "Mercury"], ["Cancer", "Mars", "Jupiter", "Moon"], ["Leo", "Jupiter", "Mars", "Sun"], ["Virgo", "Saturn", "Venus", "Mercury"], ["Libra", "Jupiter", "Moon", "Mars"], ["Scorpio", "Mars", "Sun", "Jupiter"], ["Sagittarius", "Sun", "Jupiter", "Mars"], ["Capricorn", "Saturn", "Mercury", "Venus"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Sign", "First Decan ruler ( 0 - 9.999 deg . )", "Second Decan ruler ( 10 - 19.999 deg . )", "Third Decan ruler ( 20 - 29.999 deg . )"], "add_description": "The name of this table is Zodiac Decans Rulers Table, and the headers of this table are Sign,First Decan ruler ( 0 - 9.999 deg . ),Second Decan ruler ( 10 - 19.999 deg . ),Third Decan ruler ( 20 - 29.999 deg . ).", "source": "hybridqa", "answer_md5": "[('95b5c6485c29429231d9963df1dbaf07',)]"} +{"description": "Change the country of Central Park Tower in the Skyscraper Database to Canada.", "label": ["UPDATE `Skyscraper Database` SET `Country`='Canada' WHERE `Building`='Central Park Tower'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Skyscraper Database", "table_info": {"columns": [{"name": "Building", "type": "TEXT"}, {"name": "Planned pinnacle height", "type": "TEXT"}, {"name": "Proposed completion", "type": "INT"}, {"name": "Country", "type": "TEXT"}, {"name": "City", "type": "TEXT"}], "rows": [["Suzhou Zhongnan Center", "729 m ( 2,392 ft )", "2021", "China", "Suzhou"], ["Philippine Diamond Tower", "701 m ( 2,300 ft )", "2019", "Philippines", "Quezon City"], ["India Tower", "708 m ( 2,323 ft )", "2016", "India", "Mumbai"], ["Port Tower Complex", "593 m ( 1,946 ft )", "2017", "Pakistan", "Karachi"], ["Pertamina Energy Tower", "530 m ( 1,740 ft )", "2020", "Indonesia", "Jakarta"], ["Pentominium", "516 m ( 1,693 ft )", "2014", "UAE", "Dubai"], ["Qatar National Bank Tower", "510 m ( 1,670 ft )", "2014", "Qatar", "Doha"], ["Burj Al Alam", "510 m ( 1,670 ft )", "2015", "UAE", "Dubai"], ["Busan Lotte Town Tower", "510 m ( 1,670 ft )", "2016", "South Korea", "Busan"], ["Al Quds Endowment Tower", "495 m ( 1,624 ft )", "2014", "Qatar", "Doha"], ["Dubai Towers Doha", "437 m ( 1,434 ft )", "2014", "Qatar", "Doha"], ["Chongqing International Finance Centre", "431 m ( 1,414 ft )", "", "China", "Chongqing"], ["Marina 106", "445 m ( 1,460 ft )", "2012", "UAE", "Dubai"], ["Lighthouse Tower", "402 m ( 1,319 ft )", "2012", "UAE", "Dubai"], ["One Galleon Place", "400 m ( 1,300 ft )", "2015", "Philippines", "Pasig"], ["Dubai Towers Dubai", "400 m ( 1,300 ft )", "2016", "UAE", "Dubai"], ["Altitude", "383 m ( 1,257 ft )", "2020", "Sri Lanka", "Colombo"], ["Plaza Rakyat Office Tower", "382 m ( 1,253 ft )", "2021", "Malaysia", "Kuala Lumpur"], ["Square Capital Tower", "376 m ( 1,234 ft )", "2012", "Kuwait", "Kuwait City"], ["Ocean 1 Tower", "367 m ( 1,204 ft )", "2019", "Thailand", "Pattaya"], ["Shanghai Tower", "632 m ( 2,073 ft )", "2015", "China", "Shanghai"], ["Abraj Kudai", "601 m ( 1,972 ft )", "", "Saudi Arabia", "Mecca"], ["Goldin Finance 117", "596 m ( 1,955 ft )", "", "China", "Tianjin"], ["Lotus Tower", "350 m ( 1,150 ft )", "2019", "Sri Lanka", "Colombo"], ["Merdeka PNB118", "644 m ( 2,113 ft )", "2022", "Malaysia", "Kuala Lumpur"], ["The Tower at Dubai Creek Harbor", "828 m ( 2,716 ft )", "2021", "UAE", "Dubai"], ["Wuhan Greenland Center", "636 m ( 2,087 ft )", "", "China", "Wuhan"], ["Jakarta Tower", "558 m ( 1,831 ft )", "", "Indonesia", "Jakarta"], ["Royal Atlantis Resort & Residences", "", "2021", "UAE", "Dubai"], ["Central Park Tower", "472 m ( 1,549 ft )", "2021", "USA", "New York"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Building", "Planned pinnacle height", "Proposed completion", "Country", "City"], "add_description": "The name of this table is Skyscraper Database, and the headers of this table are Building,Planned pinnacle height,Proposed completion,Country,City.", "source": "hybridqa", "answer_md5": "[('93da7df776b62dbd5c24e4916f77681b',)]"} +{"description": "On September 27, update the game results so the opponent name is 'vs. Connecticut' and the score is '70-73'.", "label": ["UPDATE game_results SET Opponent='vs. Connecticut', Score='70-73' WHERE Date='September 27'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "game_results", "table_info": {"columns": [{"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["May 17", "vs. San Antonio", "73-64", "Win", "1-0"], ["May 20", "@ Seattle", "62-74", "Loss", "1-1"], ["May 22", "@ Chicago", "77-87", "Loss", "1-2"], ["May 24", "@ Connecticut", "64-87", "Loss", "1-3"], ["May 30", "vs. Houston", "73-66", "Win", "2-3"], ["June 6", "vs. Detroit", "70-84", "Loss", "2-4"], ["June 8", "@ New York", "70-63", "Win", "3-4"], ["June 11", "@ Washington", "79-76", "Win", "4-4"], ["June 12", "@ Minnesota", "82-78", "Win", "5-4"], ["June 14", "vs. Los Angeles", "66-74", "Loss", "5-5"], ["June 20", "vs. Connecticut", "56-72", "Loss", "5-6"], ["June 22", "vs. Chicago", "82-70", "Win", "6-6"], ["June 24", "@ Indiana", "73-78", "Loss", "6-7"], ["June 26", "@ Minnesota", "76-80", "Loss", "6-8"], ["June 28", "vs. New York", "82-78", "Win", "7-8"], ["July 1", "vs. Washington", "87-81", "Win", "8-8"], ["July 3", "@ San Antonio", "67-68", "Loss", "8-9"], ["July 5", "@ Houston", "65-73", "Loss", "8-10"], ["July 8", "vs. Seattle", "64-79", "Loss", "8-11"], ["July 10", "vs. Los Angeles", "87-69", "Win", "9-11"], ["July 12", "vs. Phoenix", "105-97", "Win", "10-11"], ["July 18", "vs. Atlanta", "77-73", "Win", "11-11"], ["July 20", "@ Detroit", "88-85", "Win", "12-11"], ["July 22", "@ Atlanta", "79-66", "Win", "13-11"], ["July 24", "vs. Phoenix", "83-74", "Win", "14-11"], ["July 26", "vs. Indiana", "70-62", "Win", "15-11"], ["July 27", "@ Seattle", "71-77", "Loss", "15-12"], ["August 28", "@ Los Angeles", "63-78", "Loss", "15-13"], ["August 30", "vs. Houston", "80-65", "Win", "16-13"], ["September 5", "@ Phoenix", "69-81", "Loss", "16-14"], ["September 7", "vs. Minnesota", "78-71", "Win", "17-14"], ["September 9", "vs. Seattle", "77-74", "Win", "18-14"], ["September 13", "@ San Antonio", "69-77", "Loss", "18-15"], ["September 15", "@ Houston", "81-90", "Loss", "18-16"], ["September 16", "@ Dallas", "71-68", "Win", "19-16"], ["September 18", "vs. Connecticut", "85-76", "Win", "20-16"], ["September 20", "@ New York", "69-62", "Win", "21-16"], ["September 22", "@ Los Angeles", "76-81", "Loss", "21-17"], ["September 25", "vs. Phoenix", "64-60", "Win", "22-17"], ["September 27", "vs. Washington", "73-79", "Loss", "22-18"], ["September 29", "@ Atlanta", "68-60", "Win", "23-18"], ["October 3", "vs. Seattle", "78-81", "Loss", "23-19"], ["October 5", "@ Connecticut", "79-80", "Loss", "23-20"], ["October 7", "vs. Los Angeles", "72-63", "Win", "24-20"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Date", "Opponent", "Score", "Result", "Record"], "add_description": "The name of this table is game_results, and the headers of this table are Date,Opponent,Score,Result,Record.", "source": "wikisql", "answer_md5": "[('c3418710c5b67285057811f30081290c',)]"} +{"description": "Tiger Woods won Golf Champions in 1997, 2001, 2002, and 2005, with a total score of 270 and finishing 18 strokes under par.", "label": ["UPDATE `Golf Champions` SET `Year(s) won` = '1997, 2001, 2002, 2005', `Total` = '270', `To par` = '-18' WHERE `Player` = 'Tiger Woods'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Golf Champions", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Year(s) won", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}, {"name": "To par", "type": "TEXT"}], "rows": [["John Mahaffey", "United States", "1978", "149", "+7"], ["Al Geiberger", "United States", "1966", "149", "+7"], ["Lanny Wadkins", "United States", "1977", "150", "+8"], ["Dave Stockton", "United States", "1970 , 1976", "152", "+10"], ["Jerry Barber", "United States", "1961", "163", "+21"], ["Tiger Woods", "United States", "2000 , 2002, 2008", "272", "-12"], ["Rory McIlroy", "Northern Ireland", "2011, 2014", "276", "-12"], ["Phil Mickelson", "United States", "2004, 2006, 2010", "283", "-5"], ["Jordan Spieth", "United States", "2015", "270", "-18"], ["Seve Ballesteros", "Spain", "1980, 1983", "283", "-9"], ["Nick Faldo", "England", "1989, 1990, 1996", "279", "-9"], ["Arnold Palmer", "United States", "1958, 1960, 1962", "283", "-7"], ["Gary Player", "South Africa", "1961, 1974, 1978", "282", "-6"], ["Jack Nicklaus", "United States", "1963, 1972, 1980", "281", "-9"], ["Tom Watson", "United States", "1975, 1977, 1980", "284", "-8"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Player", "Country", "Year(s) won", "Total", "To par"], "add_description": "The name of this table is Golf Champions, and the headers of this table are Player,Country,Year(s) won,Total,To par.", "source": "wikisql", "answer_md5": "[('a7275c82ae7547ce3e8696cf605b4409',)]"} +{"description": "The table for Native American removal and emigration is being updated to reflect that 12,000 Navajo individuals were either forcibly removed or emigrated.", "label": ["UPDATE `Native American removal and emigration table` SET `Total number emigrated or forcibly removed`='12,000' WHERE `Nation`='Navajo'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Native American removal and emigration table", "table_info": {"columns": [{"name": "Nation", "type": "TEXT"}, {"name": "Removal treaty (year signed)", "type": "TEXT"}, {"name": "Years of major emigration", "type": "TEXT"}, {"name": "Total number emigrated or forcibly removed", "type": "TEXT"}, {"name": "Number stayed in Southeast", "type": "TEXT"}, {"name": "Deaths from warfare", "type": "TEXT"}], "rows": [["Choctaw", "Dancing Rabbit Creek (1830)", "1831\u20131836", "12,500", "7,000", "none"], ["Creek", "Cusseta (1832)", "1834\u20131837", "19,600", "100s", "? ( Second Creek War )"], ["Chickasaw", "Pontotoc Creek (1832)", "1837\u20131847", "over 4,000", "100s", "none"], ["Cherokee", "New Echota (1835)", "1836\u20131838", "20,000 + 2,000 slaves", "1,000", "none"], ["Seminole", "Payne's Landing (1832)", "1832\u20131842", "2,833", "250\u2013500", "700 ( Second Seminole War )"], ["Navajo", "Bosque Redondo (1868)", "1864-1868", "3,000", "2,000", "2,000 (Long Walk of the Navajo)"], ["Ojibwe", "Treaty of Detroit (1855)", "1855-1856", "5,000", "3,000", "300 (Ojibwe Uprising)"], ["Hopi", "Treaty of Guadalupe Hidalgo (1848)", "1848-1864", "2,000", "1,500", "none"], ["Apache", "Treaty of Guadalupe Hidalgo (1848)", "1848-1886", "15,000", "5,000", "2,000 (Apache Wars)"], ["Osage", "Treaty of St. Louis (1825)", "1825-1872", "5,000", "3,000", "none"], ["Iroquois", "Treaty of Fort Stanwix (1784)", "1770-1800", "10,000", "6,000", "1,000 (Iroquois Confederacy War)"], ["Sioux", "Fort Laramie Treaty (1851)", "1851-1877", "25,000", "10,000", "3,000 (Sioux Wars)"], ["Nez Perce", "Treaty of Walla Walla (1855)", "1855-1877", "6,000", "2,500", "1,000 (Nez Perce War)"], ["Kiowa", "Treaty of Medicine Lodge (1867)", "1867-1875", "4,000", "2,000", "500 (Red River War)"], ["Ute", "Treaty of Conejos (1868)", "1861-1868", "5,000", "3,000", "1,500 (Ute Wars)"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Nation", "Removal treaty (year signed)", "Years of major emigration", "Total number emigrated or forcibly removed", "Number stayed in Southeast", "Deaths from warfare"], "add_description": "The name of this table is Native American removal and emigration table, and the headers of this table are Nation,Removal treaty (year signed),Years of major emigration,Total number emigrated or forcibly removed,Number stayed in Southeast,Deaths from warfare.", "source": "wikisql", "answer_md5": "[('c51ed778115fbfe607ea0c3db4def278',)]"} +{"description": "Alter the 'Electorate' value to 'Auckland North' for the entry with 'Name' equal to 'John Smith' in the 'Elected Members of New Zealand Parliament' table.", "label": ["UPDATE `Elected Members of New Zealand Parliament` SET `Electorate` = 'Auckland North' WHERE `Name` = 'John Smith'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Elected Members of New Zealand Parliament", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Electorate", "type": "TEXT"}, {"name": "Party", "type": "TEXT"}, {"name": "Date of birth", "type": "DATE"}, {"name": "Became baby", "type": "DATE"}, {"name": "Age", "type": "TEXT"}], "rows": [["James Stuart-Wortley", "Christchurch Country", "Independent", "16 January 1833", "1 October 1853", "20 years , 258 days"], ["Augustus White", "Akaroa", "Independent", "1839", "13 February 1861", "22"], ["Robert Campbell", "Oamaru", "Independent", "8 January 1843", "6 April 1866", "23 years , 88 days"], ["Ralph Richardson", "Suburbs of Nelson", "Independent", "1848", "23 January 1871", "22"], ["William Pearson", "Ashley", "Independent", "1854", "9 December 1881", "27"], ["Arthur Rhodes", "Gladstone", "Independent", "20 March 1859", "26 September 1887", "28 years , 190 days"], ["Jackson Palmer", "Waitemata", "Independent Liberal", "1867", "5 December 1890", "23"], ["Patrick O'Regan", "Inangahua", "Liberal", "6 February 1869", "20 December 1893", "24 years , 317 days"], ["Thomas Wilford", "Wellington Suburbs", "Liberal", "20 June 1870", "4 December 1896", "26 years , 167 days"], ["Harry Bedford", "City of Dunedin", "Liberal", "31 August 1877", "25 November 1902", "25 years , 86 days"], ["Francis Fisher", "Wellington Central", "Liberal", "22 December 1877", "6 December 1905", "27 years , 349 days"], ["Tom Seddon", "Westland", "Liberal", "2 July 1884", "13 July 1906", "22 years , 11 days"], ["John A. Lee", "Auckland East", "Labour", "31 October 1891", "7 December 1922", "31 years , 37 days"], ["George Black", "Motueka", "United", "21 November 1903", "14 November 1928", "24 years , 359 days"], ["Keith Holyoake", "Motueka", "Reform", "11 February 1904", "1 December 1932", "28 years , 294 days"], ["Terry McCombs", "Lyttelton", "Labour", "5 September 1905", "24 July 1935", "29 years , 322 days"], ["Ormond Wilson", "Rangitikei", "Labour", "18 November 1907", "27 November 1935", "28 years , 9 days"], ["Joseph Cotterill", "Wanganui", "Labour", "26 September 1905", "15 October 1938", "33 years , 19 days"], ["Tapihana Paraire Paikea", "Northern Maori", "Labour", "26 January 1920", "24 September 1943", "23 years , 241 days"], ["Warren Freer", "Mt Albert", "Labour", "27 December 1920", "24 September 1947", "26 years , 271 days"], ["John Smith", "North Shore", "Labour", "10 September 1965", "1 January 1990", "24 years , 113 days"], ["Sarah Wang", "Wellington Central", "National", "2 December 1980", "1 February 2005", "24 years , 61 days"], ["David Brown", "Hamilton West", "Green Party", "18 July 1976", "1 November 2001", "25 years , 106 days"], ["Emily Chen", "New Lynn", "ACT Party", "9 March 1985", "1 December 2012", "27 years , 267 days"], ["Richard Lee", "Papakura", "National", "27 October 1990", "1 September 2017", "26 years , 309 days"], ["Katie Taylor", "Tauranga", "Labour", "12 June 1983", "1 April 2010", "26 years , 293 days"], ["Zac Johnson", "Napier", "National", "20 December 1995", "1 May 2023", "27 years , 132 days"], ["Lucy Chen", "Mt Roskill", "Green Party", "2 January 1992", "1 July 2019", "27 years , 180 days"], ["Peter Davis", "Invercargill", "New Zealand First", "25 May 1972", "1 October 2003", "31 years , 129 days"], ["Sophie Wong", "Wellington Suburbs", "Labour", "15 August 1988", "1 March 2017", "28 years , 198 days"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "Electorate", "Party", "Date of birth", "Became baby", "Age"], "add_description": "The name of this table is Elected Members of New Zealand Parliament, and the headers of this table are Name,Electorate,Party,Date of birth,Became baby,Age.", "source": "hybridqa", "answer_md5": "[('5714a08b6e4c53025a3a69bd7906cb55',)]"} +{"description": "In the `Principal Assignments by Year` table, update the `Gorham Principal` column to 'Karen Lee' for the `Year` 2012-2013.", "label": ["UPDATE `Principal Assignments by Year` SET `Gorham Principal`='Karen Lee' WHERE `Year`='2012-2013';"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Principal Assignments by Year", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Superintendent", "type": "TEXT"}, {"name": "Middlesex Principal", "type": "TEXT"}, {"name": "Gorham Principal", "type": "TEXT"}, {"name": "Middle School Principal", "type": "TEXT"}, {"name": "High School Principal", "type": "TEXT"}], "rows": [["1999-2000", "Charlie Wiltse", "Cynthia Martone", "Jackie Metz", "Keith Eddinger", "Dean Duffy"], ["2000-2001", "Charlie Wiltse", "Cynthia Martone", "Jackie Metz", "Keith Eddinger", "Dean Duffy"], ["2001-2002", "Charlie Wiltse", "Cynthia Martone", "Jackie Metz", "Keith Eddinger", "Lynn Muscarella"], ["2002-2003", "Keith Eddinger", "Cynthia Martone", "Jackie Metz", "Bill Rotenberg", "Lynn Muscarella"], ["2003-2004", "Keith Eddinger", "Cynthia Martone", "Jackie Metz", "Bill Rotenberg", "Lynn Muscarella"], ["2004-2005", "Keith Eddinger", "Paul Lahue", "Mike Pullen", "Alan Degroote", "Sue Wissick"], ["2005-2006", "Oren Cook", "Paul Lahue", "Mike Pullen", "Alan Degroote", "Sue Wissick"], ["2006-2007", "Oren Cook", "Sue Wissick", "Paul Lahue", "Alan Degroote", "Mark Sissell"], ["2007-2008", "Oren Cook", "Sue Wissick", "Paul Lahue", "Alan Degroote", "Mark Sissell"], ["2008-2009", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2009-2010", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2010-2011", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2011-2012", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2012-2013", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2013-2014", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2014-2015", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2015-2016", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2016-2017", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2017-2018", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2018-2019", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2019-2020", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2020-2021", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"], ["2021-2022", "Mike Chirco", "Sue Wissick", "Paul Lahue", "Clay Cole", "Alan Degroote"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Superintendent", "Middlesex Principal", "Gorham Principal", "Middle School Principal", "High School Principal"], "add_description": "The name of this table is Principal Assignments by Year, and the headers of this table are Year,Superintendent,Middlesex Principal,Gorham Principal,Middle School Principal,High School Principal.", "source": "wikisql", "answer_md5": "[('83aca4d0437b0cf8ee3e408c09499dfc',)]"} +{"description": "The score table for Japan has been updated with an E Score of 7.400 and a total of 22.950.", "label": ["UPDATE `Nation Scores Table` SET `E Score` = '7.400', `Total` = '22.950' WHERE `Nation` = 'Japan';"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Nation Scores Table", "table_info": {"columns": [{"name": "Nation", "type": "TEXT"}, {"name": "T Score", "type": "TEXT"}, {"name": "A Score", "type": "TEXT"}, {"name": "E Score", "type": "TEXT"}, {"name": "Pen.", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}], "rows": [["Ukraine", "8.000", "8.050", "7.775", "0.50", "23.325"], ["Russia", "8.000", "8.050", "7.500", "0.60", "22.950"], ["Greece", "7.700", "7.850", "7.600", "0.50", "22.650"], ["Bulgaria", "7.300", "7.800", "7.600", "0.50", "22.200"], ["Italy", "7.300", "7.650", "7.200", "0.50", "21.650"], ["Belarus", "6.800", "7.700", "7.000", "0.50", "21.000"], ["Spain", "5.700", "7.400", "7.100", "0.50", "19.700"], ["China", "6.300", "6.800", "6.450", "0.50", "19.050"], ["Japan", "7.600", "7.800", "7.500", "0.50", "23.450"], ["France", "7.900", "8.050", "7.300", "0.50", "23.250"], ["Brazil", "7.200", "7.100", "7.500", "0.50", "22.300"], ["India", "6.500", "6.700", "7.000", "0.50", "20.200"], ["Mexico", "7.000", "7.200", "6.900", "0.50", "21.100"], ["Nigeria", "6.800", "6.750", "6.900", "0.50", "20.450"], ["Thailand", "6.900", "6.800", "6.800", "0.50", "20.450"], ["Germany", "8.100", "8.150", "7.950", "0.50", "24.200"], ["South Africa", "6.800", "6.550", "6.400", "0.50", "20.150"], ["Canada", "7.300", "7.400", "7.100", "0.50", "22.800"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Nation", "T Score", "A Score", "E Score", "Pen.", "Total"], "add_description": "The name of this table is Nation Scores Table, and the headers of this table are Nation,T Score,A Score,E Score,Pen.,Total.", "source": "wikisql", "answer_md5": "[('ecbebc1fba3c5aa5eac434abfdd7fba9',)]"} +{"description": "In the 'Basketball Tournament Results' table, update the 'Winner' column to 'Northeastern University' where the 'Year' column equals 2000.", "label": ["UPDATE `Basketball Tournament Results` SET `Winner`='Northeastern University' WHERE `Year`='2000'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Basketball Tournament Results", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Winner", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Reggie Lewis Most Outstanding Player", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}], "rows": [["1980", "Holy Cross", "81-75", "Boston", "Ron Perry , Holy Cross", "Hart Center ( Worcester , MA )"], ["1981", "Northeastern", "81-79", "Holy Cross", "Perry Moss , Northeastern", "Cabot Center ( Boston , MA )"], ["1982", "Northeastern", "82-59", "Niagara", "Perry Moss , Northeastern", "Matthews Arena ( Boston , MA )"], ["1983", "Boston", "63-62", "Holy Cross", "Mike Alexander , Boston University", "Case Gym ( Boston , MA )"], ["1984", "Northeastern", "85-75", "Canisius", "Mark Halsel , Northeastern", "Matthews Arena ( Boston , MA )"], ["1985", "Northeastern", "68-67", "Boston", "Reggie Lewis , Northeastern", "Matthews Arena ( Boston , MA )"], ["1986", "Northeastern", "63-54", "Boston", "Wess Fuller , Northeastern", "Matthews Arena ( Boston , MA )"], ["1987", "Northeastern", "71-68", "Boston", "Reggie Lewis , Northeastern", "Matthews Arena ( Boston , MA )"], ["1988", "Boston", "79-68", "Niagara", "Jeff Timberlake , Boston University", "Hartford Civic Center ( Hartford , CT )"], ["1989", "Siena", "68-67", "Boston", "Marc Brown , Siena", "Hartford Civic Center ( Hartford , CT )"], ["1990", "Boston", "75-57", "Vermont", "Bill Brigham , Boston University", "Hartford Civic Center ( Hartford , CT )"], ["1991", "Northeastern", "57-46", "Maine", "Ron Lacey , Northeastern", "Matthews Arena ( Boston , MA )"], ["1992", "Delaware", "92-68", "Drexel", "Alex Coles , Delaware", "Bob Carpenter Center ( Newark , DE )"], ["1993", "Delaware", "67-64", "Drexel", "Kevin Blackhurst , Delaware", "Daskalakis Athletic Center ( Philadelphia , PA )"], ["1994", "Drexel", "86-78", "Maine", "Malik Rose , Drexel", "Daskalakis Athletic Center ( Philadelphia , PA )"], ["1995", "Drexel", "72-52", "Northeastern", "Malik Rose , Drexel", "Daskalakis Athletic Center ( Philadelphia , PA )"], ["1996", "Drexel", "76-67", "Boston", "Malik Rose , Drexel", "Daskalakis Athletic Center ( Philadelphia , PA )"], ["1997", "Boston", "68-61", "Drexel", "Tunji Awojobi , Boston University", "Case Gym ( Boston , MA )"], ["1998", "Delaware", "66-58", "Boston", "Darryl Presley , Delaware", "Bob Carpenter Center ( Newark , DE )"], ["1999", "Delaware", "86-67", "Drexel", "John Gordon , Delaware", "Bob Carpenter Center ( Newark , DE )"], ["2000", "Boston", "70-66", "Northeastern", "Julius Hodge , Boston University", "Case Gym ( Boston , MA )"], ["2001", "Drexel", "75-70", "Delaware", "Malcolm Mackey , Drexel", "Daskalakis Athletic Center ( Philadelphia , PA )"], ["2002", "Boston", "83-79", "Drexel", "Shelton Edwards , Boston University", "Case Gym ( Boston , MA )"], ["2003", "Northeastern", "72-68", "Delaware", "Shawn James , Northeastern", "Cabot Center ( Boston , MA )"], ["2004", "Delaware", "73-68", "Hofstra", "Mike Slattery , Delaware", "Bob Carpenter Center ( Newark , DE )"], ["2005", "North Carolina-Wilmington", "78-67", "George Mason", "T.J. Carter , North Carolina-Wilmington", "Richmond Coliseum ( Richmond , VA )"], ["2006", "Hofstra", "80-67", "George Mason", "Antoine Agudio , Hofstra", "Richmond Coliseum ( Richmond , VA )"], ["2007", "Virginia Commonwealth", "65-59", "George Mason", "Eric Maynor , Virginia Commonwealth", "Richmond Coliseum ( Richmond , VA )"], ["2008", "George Mason", "68-59", "William & Mary", "Folarin Campbell , George Mason", "Richmond Coliseum ( Richmond , VA )"], ["2009", "Virginia Commonwealth", "71-50", "George Mason", "Eric Maynor , Virginia Commonwealth", "Richmond Coliseum ( Richmond , VA )"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Winner", "Score", "Opponent", "Reggie Lewis Most Outstanding Player", "Venue"], "add_description": "The name of this table is Basketball Tournament Results, and the headers of this table are Year,Winner,Score,Opponent,Reggie Lewis Most Outstanding Player,Venue.", "source": "hybridqa", "answer_md5": "[('6e5be5df6a81c825cba000c75965d27f',)]"} +{"description": "Change the source for soybean production statistics to 'USDA' in the Statistics table.", "label": ["UPDATE Statistics SET Source = 'USDA' WHERE Name = 'Soybean production'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Statistics", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Rank", "type": "TEXT"}, {"name": "Out of", "type": "TEXT"}, {"name": "Source", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}, {"name": "Year", "type": "TEXT"}], "rows": [["Irrigated land area", "10", "236", "CIA World Factbook", "Irrigated land: 46,000km\u00b2", "2003"], ["Cultivated land area", "4", "190", "CIA World Factbook", "Cultivated land: 1,192,300km\u00b2", "2005"], ["Dietary calorie intake", "28", "185", "FAO", "3,270 kcal/person/day", "2007"], ["Wheat production", "4", "42", "International Grains Council", "Production: 61,7 million metric tons", "2009"], ["Fisheries harvest", "10", "75", "FAO", "Total of capture and aquaculture: 3,305,698 tons", "2005"], ["Wine production", "13", "25", "FAO", "Production: 501,000 tons", "2009"], ["Tomato production", "10", "50", "FAO", "Production: 1,938,710 tons", "2008"], ["Apple production", "9", "93", "FAO", "Production: 1,467,000 tons", "2008"], ["Corn production", "3", "104", "FAO", "Production: 1,027,874,710 tons", "2010"], ["Rice production", "2", "98", "FAO", "Production: 727,267,658 tons", "2012"], ["Banana production", "5", "54", "FAO", "Production: 114,131,349 tons", "2014"], ["Sugar production", "6", "171", "International Sugar Organization", "Production: 178.4 million metric tons", "2013"], ["Beef production", "7", "176", "USDA", "Production: 60,414,000 metric tons", "2015"], ["Soybean production", "4", "311", "FAO", "Production: 324,057,000 metric tons", "2016"], ["Tea production", "8", "57", "FAO", "Production: 5,720,000 metric tons", "2017"], ["Chicken production", "12", "87", "USDA", "Production: 115,142,000 metric tons", "2018"], ["Cocoa production", "17", "71", "International Cocoa Organization", "Production: 4,801,000 metric tons", "2019"], ["Orange production", "11", "44", "FAO", "Production: 81,179,000 metric tons", "2020"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "Rank", "Out of", "Source", "Notes", "Year"], "add_description": "The name of this table is Statistics, and the headers of this table are Name,Rank,Out of,Source,Notes,Year.", "source": "wikisql", "answer_md5": "[('816cbbaa111ecc4470b60570f4fc3ed2',)]"} +{"description": "The statistics for the 2010-11 season have been updated with 7 matches played, 1 match drawn, 2 matches lost, and 82 goals against.", "label": ["UPDATE SeasonStatistics SET Played='7', Drawn='1', Lost='2', Against='82' WHERE Season='2010-11'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "SeasonStatistics", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "Played", "type": "TEXT"}, {"name": "Drawn", "type": "TEXT"}, {"name": "Lost", "type": "TEXT"}, {"name": "Against", "type": "TEXT"}], "rows": [["2000-01", "4", "0", "4", "147"], ["2001-02", "6", "0", "4", "210"], ["(Shield) 2003-04", "7", "0", "2", "166"], ["2003-04", "2", "0", "1", "61"], ["2004-05", "4", "0", "1", "50"], ["2005-06", "6", "0", "6", "244"], ["2006-07", "6", "0", "4", "145"], ["2008-09", "6", "0", "3", "126"], ["2010-11", "8", "0", "2", "185"], ["2011-12", "5", "0", "3", "88"], ["2012-13", "2", "0", "1", "47"], ["2013-14", "4", "1", "3", "122"], ["2014-15", "7", "0", "5", "202"], ["(Shield) 2015-16", "6", "0", "2", "136"], ["2015-16", "3", "0", "2", "63"], ["2016-17", "6", "0", "1", "98"], ["2017-18", "4", "0", "3", "112"], ["2018-19", "7", "0", "3", "167"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Season", "Played", "Drawn", "Lost", "Against"], "add_description": "The name of this table is SeasonStatistics, and the headers of this table are Season,Played,Drawn,Lost,Against.", "source": "wikisql", "answer_md5": "[('d9f0ccdc52935cc21e73cc5248345aaf',)]"} +{"description": "The 'Year(s) retired' column of the 'Locomotive Inventory Table' was updated to '1935\u20131960' for locomotives in the 'M-1' class.", "label": ["UPDATE `Locomotive Inventory Table` SET `Year(s) retired`='1935\u20131960' WHERE `Class`='M-1'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Locomotive Inventory Table", "table_info": {"columns": [{"name": "Class", "type": "TEXT"}, {"name": "Wheel arrangement", "type": "TEXT"}, {"name": "Fleet number(s)", "type": "TEXT"}, {"name": "Manufacturer", "type": "TEXT"}, {"name": "Year made", "type": "TEXT"}, {"name": "Quantity made", "type": "TEXT"}, {"name": "Quantity preserved", "type": "TEXT"}, {"name": "Year(s) retired", "type": "TEXT"}], "rows": [["2-8-2 \u2014 oOOOOo \u2014 Mikad", "2-8-2 \u2014 oOOOOo \u2014 Mikad", "2-8-2 \u2014 oOOOOo \u2014 Mikad", "2-8-2 \u2014 oOOOOo \u2014 Mikad", "2-8-2 \u2014 oOOOOo \u2014 Mikad", "2-8-2 \u2014 oOOOOo \u2014 Mikad", "2-8-2 \u2014 oOOOOo \u2014 Mikad", "2-8-2 \u2014 oOOOOo \u2014 Mikad"], ["W", "2-8-2", "1500\u20131659", "Alco ( Brooks )", "1904\u20131907", "160", "0", "1930\u20131959"], ["W-1", "2-8-2", "1660\u20131699", "Alco ( Schen. )", "1910", "40", "0", "1925\u20131958"], ["W-2", "2-8-2", "1900\u20131919", "Alco ( Brooks )", "1904\u20131905", "20", "0", "1930\u20131958"], ["W-3", "2-8-2", "1700\u20131834", "Alco ( Brooks )", "1913\u20131920", "135", "1", "1926\u20131960"], ["W-4", "2-8-2", "2500\u20132505", "NP ( Brainerd Shops )", "1919 (rebuilt)", "6", "0", "1955\u20131958"], ["W-5", "2-8-2", "1835\u20131859", "Alco ( Schen. )", "1923", "25", "0", "1952\u20131960"], ["H-1", "4-8-4", "1000-1049", "Baldwin", "1929", "50", "0", "1955-1960"], ["O-1", "4-6-2", "200-250", "Alco (Brooks)", "1905", "51", "0", "1928-1950"], ["S-1", "0-6-0ST", "001-005", "Hunslet Engine Co.", "1949", "5", "5", "1990-2020"], ["A-1", "4-8-8-4", "3000-3010", "AC&F", "1930", "11", "3", "1955-1961"], ["B-1", "0-10-0", "100-124", "Baldwin", "1911-1913", "25", "0", "1943-1960"], ["K-1", "2-8-0", "200-229", "American Locomotive Co.", "1922", "30", "1", "1958-1965"], ["C-1", "2-10-4", "4000-4149", "Baldwin", "1941-1943", "150", "5", "1955-1962"], ["E-1", "2-10-2", "500-599", "Baldwin", "1925", "100", "0", "1950-1965"], ["G-1", "4-6-0", "1000-1015", "American Locomotive Co.", "1910-1911", "16", "0", "1935-1960"], ["M-1", "0-6-0", "1-20", "Climax Locomotive Works", "1910-1912", "20", "3", "1935-1968"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Class", "Wheel arrangement", "Fleet number(s)", "Manufacturer", "Year made", "Quantity made", "Quantity preserved", "Year(s) retired"], "add_description": "The name of this table is Locomotive Inventory Table, and the headers of this table are Class,Wheel arrangement,Fleet number(s),Manufacturer,Year made,Quantity made,Quantity preserved,Year(s) retired.", "source": "wikisql", "answer_md5": "[('0227596d5d527d292c3ccd396fde5f75',)]"} +{"description": "Update the football season results to W 28-10 and 16-2 record for week 19.", "label": ["UPDATE `Football Season Results` SET `Result`='W 28-10', `Record`='16-2' WHERE `Week`='19'"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Football Season Results", "table_info": {"columns": [{"name": "Week", "type": "INT"}, {"name": "Date", "type": "DATE"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "TV Time", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["1", "September 9, 2001", "at Philadelphia Eagles", "W 20\u201317 (OT)", "1\u20130", "FOX 3:15pm", "66,243"], ["2", "September 23, 2001", "at San Francisco 49ers", "W 30\u201326", "2\u20130", "FOX 3:15pm", "67,536"], ["3", "September 30, 2001", "Miami Dolphins", "W 42\u201310", "3\u20130", "CBS 12:00pm", "66,046"], ["4", "October 8, 2001", "at Detroit Lions", "W 35\u20130", "4\u20130", "ABC 8:00pm", "77,765"], ["5", "October 14, 2001", "New York Giants", "W 15\u201314", "5\u20130", "FOX 12:00pm", "65,992"], ["6", "October 21, 2001", "at New York Jets", "W 34\u201314", "6\u20130", "FOX 12:00pm", "78,766"], ["7", "October 28, 2001", "New Orleans Saints", "L 34\u201331", "6\u20131", "FOX 12:00pm", "66,189"], ["8", "Bye", "Bye", "Bye", "Bye", "Bye", "Bye"], ["9", "November 11, 2001", "Carolina Panthers", "W 48\u201314", "7\u20131", "FOX 12:00pm", "66,069"], ["10", "November 18, 2001", "at New England Patriots", "W 24\u201317", "8\u20131", "ESPN 7:30pm", "60,292"], ["11", "November 26, 2001", "Tampa Bay Buccaneers", "L 24\u201317", "8\u20132", "ABC 8:00pm", "66,198"], ["12", "December 2, 2001", "at Atlanta Falcons", "W 35\u20136", "9\u20132", "FOX 3:15pm", "60,787"], ["13", "December 9, 2001", "San Francisco 49ers", "W 27\u201314", "10\u20132", "FOX 12:00pm", "66,218"], ["14", "December 17, 2001", "at New Orleans Saints", "W 34\u201321", "11\u20132", "ABC 8:00pm", "70,332"], ["15", "December 23, 2001", "at Carolina Panthers", "W 38\u201332", "12\u20132", "FOX 12:00pm", "72,438"], ["16", "December 30, 2001", "Indianapolis Colts", "W 42\u201317", "13\u20132", "CBS 12:00pm", "66,084"], ["17", "January 6, 2002", "Atlanta Falcons", "W 31\u201313", "14\u20132", "FOX 3:15pm", "66,033"], ["18", "September 7, 2008", "Minnesota Vikings", "W 19\u201316 (OT)", "1\u20130", "FOX 12:00pm", "64,936"], ["19", "September 14, 2008", "at Detroit Lions", "W 48\u201325", "2\u20130", "FOX 12:00pm", "56,252"], ["20", "September 21, 2008", "Dallas Cowboys", "W 27\u201316", "3\u20130", "NBC 7:15pm", "65,598"], ["21", "September 28, 2008", "Tampa Bay Buccaneers", "W 30\u201321", "4\u20130", "FOX 12:00pm", "62,496"], ["22", "October 5, 2008", "at Washington Redskins", "W 23\u201317", "5\u20130", "FOX 3:15pm", "90,180"], ["23", "October 12, 2008", "at home against the Philadelphia Eagles", "W 48\u201327", "6\u20130", "FOX 12:00pm", "66,064"], ["24", "October 19, 2008", "at home against the Cincinnati Bengals", "W 29\u201313", "7\u20130", "CBS 12:00pm", "64,859"], ["25", "October 26, 2008", "at home against the Houston Texans", "W 35\u20136", "8\u20130", "CBS 12:00pm", "65,994"], ["26", "November 2, 2008", "at home against the Cleveland Browns", "W 37\u201327", "9\u20130", "CBS 12:00pm", "65,621"], ["27", "November 9, 2008", "at home against the Baltimore Ravens", "L 10\u201333", "9\u20131", "CBS 12:00pm", "65,873"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Week", "Date", "Opponent", "Result", "Record", "TV Time", "Attendance"], "add_description": "The name of this table is Football Season Results, and the headers of this table are Week,Date,Opponent,Result,Record,TV Time,Attendance.", "source": "wikitq", "answer_md5": "[('a284811d133bd2cec86cb46335a21ed3',)]"} +{"description": "Change the value of 'No. Specimens' to '190,000' in the 'Specimen Collection' table for the entry with 'Name' as 'University of Stockholm'.", "label": ["UPDATE `Specimen Collection` SET `No. Specimens` = '190,000' WHERE `Name` = 'University of Stockholm'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Specimen Collection", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "No. Specimens", "type": "TEXT"}, {"name": "Abbr.", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "City", "type": "TEXT"}], "rows": [["Estonian University of Life Sciences", "336,000", "TAA", "Estonia", "Tartu"], ["University of Tartu", "324,000", "TU", "Estonia", "Tartu"], ["Vilnius University", "300,000", "WI", "Lithuania", "Vilnius"], ["University of Latvia , Riga", "176,000", "RIG", "Latvia", "Riga"], ["University of Latvia , Salaspils", "175,000", "LATV", "Latvia", "Salaspils"], ["Institute of Botany, Lithuania", "130,000", "BILAS", "Lithuania", "Vilnius"], ["Estonian Museum of Natural History", "100,000", "TAM", "Estonia", "Tallinn"], ["Tallinn Botanic Garden", "85,000", "TALL", "Estonia", "Tallinn"], ["National Botanic Garden of Latvia", "50,000", "HBA", "Latvia", "Salaspils"], ["University of Helsinki", "400,000", "UH", "Finland", "Helsinki"], ["University of Oslo", "350,000", "UO", "Norway", "Oslo"], ["University of Copenhagen", "425,000", "UC", "Denmark", "Copenhagen"], ["University of Stockholm", "375,000", "US", "Sweden", "Stockholm"], ["University of Iceland", "275,000", "UI", "Iceland", "Reykjavik"], ["University of Helsinki Botanic Garden", "125,000", "UHBG", "Finland", "Helsinki"], ["Norwegian Biodiversity Information Centre", "200,000", "NBIC", "Norway", "Trondheim"], ["Swedish Museum of Natural History", "80,000", "SMNH", "Sweden", "Stockholm"], ["Danish National Museum of Natural History", "150,000", "DNMNH", "Denmark", "Copenhagen"], ["Icelandic Institute of Natural History", "100,000", "IINH", "Iceland", "Reykjavik"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "No. Specimens", "Abbr.", "Country", "City"], "add_description": "The name of this table is Specimen Collection, and the headers of this table are Name,No. Specimens,Abbr.,Country,City.", "source": "wikisql", "answer_md5": "[('9f1274df98a0f73197553c6dd91c6cf8',)]"} diff --git a/AgentBench.old/data/dbbench/standard.jsonl b/AgentBench.old/data/dbbench/standard.jsonl new file mode 100644 index 0000000..64c5467 --- /dev/null +++ b/AgentBench.old/data/dbbench/standard.jsonl @@ -0,0 +1,300 @@ +{"description": "What are the Notes when the Method is decision?", "label": ["Women +60kg Bronze"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Jiu-Jitsu Championships Results", "table_info": {"columns": [{"name": "Result", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Method", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Win", "Venla Luukkonen", "Points (11 x 0)", "2012 IBJJF World Jiu-Jitsu Championships", "Female Purple Belt Final"], ["Win", "Hillary VanOrnum", "Points (4 x 0)", "2012 IBJJF World Jiu-Jitsu Championships", "Female Purple Belt Semifinal"], ["Win", "Maia Matalon", "Submission (armbar)", "2012 IBJJF World Jiu-Jitsu Championships", "Female Purple Belt Quarterfinal"], ["Win", "Amanda Lucas", "Points (8 x 0)", "2011 IBJJF World Jiu-Jitsu Championships", "Female Purple Belt Final"], ["Win", "Sarah Draht", "Points (16 x 0)", "2011 IBJJF World Jiu-Jitsu Championships", "Female Purple Belt Semifinal"], ["Win", "Rosangela Conceicao", "Decision", "2009 ADCC Submission Wrestling World Championships", "Women +60kg Bronze"], ["Loss", "Penny Thomas", "Points (-2 x -1)", "2009 ADCC Submission Wrestling World Championships", "Women +60kg Semifinal"], ["Win", "Ida Hansson", "Points (10 x 0)", "2009 ADCC Submission Wrestling World Championships", "Women +60kg Quarterfinal"], ["Win", "John Smith", "Submission (choke)", "2019 Grappling Open", "Over 200 lbs division final"], ["Loss", "Jane Doe", "Points (-3 x -2)", "2020 IBJJF Pan Championship", "Female Blue Belt Quarterfinal"], ["Win", "Mike Johnson", "Submission (arm triangle)", "2017 US Grappling Open", "Men's Purple Belt Semifinal"], ["Win", "Julia Martinez", "Points (6 x 2)", "2018 NAGA East Coast Championship", "Female NoGi Intermediate division final"], ["Loss", "David Jones", "Submission (guillotine)", "2019 North American Grappling Association Nationals", "Men's Blue Belt Quarterfinal"], ["Win", "Karen Williams", "Points (10 x 0)", "2015 Good Fight Submission Only", "Female Blue Belt Final"], ["Loss", "Ryan Lee", "Points (-2 x -1)", "2019 NABJJF Pan American Championship", "Men's Purple Belt Quarterfinal"], ["Win", "Samantha Adams", "Submission (triangle)", "2018 New York Open", "Women's Brown Belt Semifinal"], ["Win", "Tony Nguyen", "Submission (rear naked choke)", "2016 US Grappling Open", "Men's Black Belt Quarterfinal"], ["Loss", "Jessica Lee", "Points (-2 x -0)", "2017 IBJJF World Jiu-Jitsu Championship", "Female Black Belt Quarterfinal"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Result", "Opponent", "Method", "Event", "Notes"], "add_description": "The name of this table is Jiu-Jitsu Championships Results, and the headers of this table are Result,Opponent,Method,Event,Notes.", "sql": {"query": "SELECT Notes FROM \"Jiu-Jitsu Championships Results\" WHERE Method = 'Decision';", "length": 78}, "source": "wikisql"} +{"description": "What in 2007 has a 2008 of sf, and a 2010 of f?", "label": ["F"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Tournament Results", "table_info": {"columns": [{"name": "Tournament", "type": "TEXT"}, {"name": "2005", "type": "TEXT"}, {"name": "2006", "type": "TEXT"}, {"name": "2007", "type": "TEXT"}, {"name": "2008", "type": "TEXT"}, {"name": "2009", "type": "TEXT"}, {"name": "2010", "type": "TEXT"}, {"name": "2011", "type": "TEXT"}, {"name": "2012", "type": "TEXT"}, {"name": "2013", "type": "TEXT"}, {"name": "Win %", "type": "TEXT"}], "rows": [["Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments", "Grand Slam tournaments"], ["Australian Open", "1R", "1R", "4R", "W", "QF", "QF", "W", "W", "W", "88.63"], ["French Open", "2R", "QF", "SF", "SF", "3R", "QF", "SF", "F", "SF", "80.00"], ["Wimbledon", "3R", "4R", "SF", "2R", "QF", "SF", "W", "SF", "F", "82.61"], ["US Open", "3R", "3R", "F", "SF", "SF", "F", "W", "F", "F", "84.91"], ["Win\u2013Loss", "5\u20134", "9\u20134", "19\u20134", "18\u20133", "15\u20134", "19\u20134", "26\u20131", "24\u20133", "24\u20133", "84.04"], ["Masters tournaments", "R16", "QF", "SF", "F", "QF", "QF", "W", "W", "2R", "77.78"], ["ATP 500 tournaments", "2R", "W", "SF", "2R", "W", "SF", "W", "QF", "F", "80.50"], ["Davis Cup", "\u2013", "\u2013", "1R", "2R", "\u2013", "F", "\u2013", "F", "W", "76.19"], ["Olympic Games", "\u2013", "\u2013", "BR", "BR", "\u2013", "\u2013", "W", "SF", "QF", "80.00"], ["ATP Finals", "\u2013", "RR", "SF", "W", "F", "W", "W", "RR", "W", "84.85"], ["Masters Cup", "QF", "W", "\u2013", "SF", "F", "SF", "W", "F", "F", "78.95"], ["ATP Masters 1000", "R16", "QF", "W", "QF", "SF", "W", "SF", "F", "QF", "77.27"], ["Shanghai Masters", "SF", "W", "SF", "2R", "QF", "QF", "W", "F", "W", "79.49"], ["Hamburg Masters", "QF", "R32", "\u2013", "F", "QF", "W", "SF", "R16", "W", "65.52"], ["Indian Wells Masters", "\u2013", "QF", "F", "R16", "QF", "SF", "W", "SF", "F", "79.63"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Tournament", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "Win %"], "add_description": "The name of this table is Tournament Results, and the headers of this table are Tournament,2005,2006,2007,2008,2009,2010,2011,2012,2013,Win %.", "sql": {"query": "SELECT Tournament FROM Tournament_Results WHERE 2007 = 'SF' AND 2008 = 'F' AND 2010 = 'F';", "length": 90}, "source": "wikisql"} +{"description": "what was the total number of medals won by united states?", "label": ["2"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Olympic Medals", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Nation", "type": "STRING"}, {"name": "Gold", "type": "INT"}, {"name": "Silver", "type": "INT"}, {"name": "Bronze", "type": "INT"}, {"name": "Total", "type": "INT"}], "rows": [["1", "Great Britain\u00a0(GBR)", "2", "1", "2", "5"], ["2", "Brazil\u00a0(BRA)", "2", "0", "0", "2"], ["3", "Spain\u00a0(ESP)", "1", "2", "0", "3"], ["4", "Austria\u00a0(AUT)", "1", "1", "0", "2"], ["4", "Greece\u00a0(GRE)", "1", "1", "0", "2"], ["4", "United States\u00a0(USA)", "1", "1", "0", "2"], ["7", "France\u00a0(FRA)", "1", "0", "1", "2"], ["7", "Israel\u00a0(ISR)", "1", "0", "0", "1"], ["7", "Norway\u00a0(NOR)", "1", "0", "0", "1"], ["10", "Ukraine\u00a0(UKR)", "0", "2", "0", "2"], ["11", "China\u00a0(CHN)", "0", "1", "0", "1"], ["11", "Czech Republic\u00a0(CZE)", "0", "1", "0", "1"], ["11", "Canada\u00a0(CAN)", "0", "1", "0", "1"], ["14", "Denmark\u00a0(DEN)", "0", "0", "2", "2"], ["15", "Argentina\u00a0(ARG)", "0", "0", "1", "1"], ["15", "Italy\u00a0(ITA)", "0", "0", "1", "1"], ["15", "Japan\u00a0(JPN)", "0", "0", "1", "1"], ["15", "Poland\u00a0(POL)", "0", "0", "1", "1"], ["15", "Slovenia\u00a0(SLO)", "0", "0", "1", "1"], ["15", "Sweden\u00a0(SWE)", "0", "0", "1", "1"], ["Total", "", "11", "11", "11", "33"], ["1", "United States\u00a0(USA)", "6", "3", "5", "14"], ["2", "China\u00a0(CHN)", "5", "3", "1", "9"], ["3", "Great Britain\u00a0(GBR)", "4", "5", "6", "15"], ["4", "Russia\u00a0(RUS)", "3", "5", "4", "12"], ["5", "Japan\u00a0(JPN)", "3", "1", "1", "5"], ["6", "Australia\u00a0(AUS)", "2", "4", "3", "9"], ["7", "South Korea\u00a0(KOR)", "1", "3", "2", "6"], ["8", "Italy\u00a0(ITA)", "1", "1", "4", "6"], ["9", "France\u00a0(FRA)", "1", "1", "1", "3"], ["10", "Germany\u00a0(GER)", "1", "0", "2", "3"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medals, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "sql": {"query": "SELECT Total FROM `Olympic Medals` WHERE Nation='United States (USA)';", "length": 70}, "source": "wikitq"} +{"description": "what is the difference between southampton's score and sunderland's score?", "label": ["2 goals"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Football Matches", "table_info": {"columns": [{"name": "Tie no", "type": "INTEGER"}, {"name": "Home team", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Away team", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["1", "Leicester City", "1\u20132", "Manchester United", "14 February 1976"], ["2", "Bolton Wanderers", "3\u20133", "Newcastle United", "14 February 1976"], ["Replay", "Newcastle United", "0\u20130", "Bolton Wanderers", "18 February 1976"], ["Replay", "Bolton Wanderers", "1\u20132", "Newcastle United", "23 February 1976"], ["3", "Wolverhampton Wanderers", "3\u20130", "Charlton Athletic", "14 February 1976"], ["4", "West Bromwich Albion", "1\u20131", "Southampton", "14 February 1976"], ["Replay", "Southampton", "4\u20130", "West Bromwich Albion", "17 February 1976"], ["5", "Derby County", "1\u20130", "Southend United", "14 February 1976"], ["6", "Norwich City", "1\u20132", "Bradford City", "23 February 1976"], ["7", "Chelsea", "2\u20133", "Crystal Palace", "14 February 1976"], ["8", "Stoke City", "0\u20130", "Sunderland", "14 February 1976"], ["Replay", "Sunderland", "2\u20131", "Stoke City", "17 February 1976"], ["9", "Everton", "1\u20132", "Liverpool", "22 September 1979"], ["10", "Arsenal", "1\u20130", "Manchester United", "22 September 1979"], ["11", "Crystal Palace", "2\u20132", "Middlesbrough", "22 September 1979"], ["Replay", "Middlesbrough", "1\u20130", "Crystal Palace", "26 September 1979"], ["12", "Southampton", "2\u20130", "Coventry City", "22 September 1979"], ["13", "West Bromwich Albion", "1\u20132", "Chelsea", "22 September 1979"], ["14", "Wolverhampton Wanderers", "1\u20130", "Ipswich Town", "22 September 1979"], ["15", "Leeds United", "3\u20131", "Brighton & Hove Albion", "22 September 1979"], ["16", "Nottingham Forest", "3\u20131", "Manchester City", "22 September 1979"], ["17", "Bristol City", "2\u20131", "Queens Park Rangers", "22 September 1979"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Tie no", "Home team", "Score", "Away team", "Date"], "add_description": "The name of this table is Football Matches, and the headers of this table are Tie no,Home team,Score,Away team,Date.", "sql": {"query": "SELECT ABS(SUBSTR(Score,1,1) - SUBSTR(Score,3,1))FROM \"Football Matches\"WHERE Home team = 'Southampton' AND Away team = 'Sunderland';", "length": 133}, "source": "wikitq"} +{"description": "VIE is the IATA for which city?", "label": ["Vienna International Airport"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Airport Information", "table_info": {"columns": [{"name": "City", "type": "TEXT"}, {"name": "Province/Region", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "IATA", "type": "TEXT"}, {"name": "ICAO", "type": "TEXT"}, {"name": "Airport", "type": "TEXT"}], "rows": [["Brisbane", "\u2014", "Australia", "BNE", "YBBN", "Brisbane Airport"], ["Calgary", "\u2014", "Canada", "YYC", "CYYC", "Calgary International Airport"], ["Denpasar", "\u2014", "Indonesia", "DPS", "WADD", "Ngurah Rai International Airport"], ["Guam", "\u2014", "Guam", "GUM", "PGUM", "Antonio B. Won Pat International Airport"], ["Kuala Lumpur", "\u2014", "Malaysia", "KUL", "WMKK", "Kuala Lumpur International Airport"], ["Milan", "\u2014", "Italy", "MXP", "LIMC", "Malpensa Airport"], ["Moscow", "\u2014", "Russia", "SVO", "UUEE", "Sheremetyevo International Airport"], ["Perth", "\u2014", "Australia", "PER", "YPPH", "Perth Airport"], ["Rome", "\u2014", "Italy", "FCO", "LIRF", "Leonardo da Vinci\u2013Fiumicino Airport"], ["Saipan", "\u2014", "Northern Mariana Islands", "SPN", "PGSN", "Saipan International Airport"], ["Stockholm", "\u2014", "Sweden", "ARN", "ESSA", "Stockholm Arlanda Airport"], ["Sydney", "\u2014", "Australia", "SYD", "YSSY", "Sydney Airport"], ["Tianjin", "\u2014", "China", "TSN", "ZBTJ", "Tianjin Binhai International Airport"], ["Vienna", "\u2014", "Austria", "VIE", "LOWW", "Vienna International Airport"], ["Los Angeles", "California", "United States", "LAX", "KLAX", "Los Angeles International Airport"], ["Dubai", "Dubai", "United Arab Emirates", "DXB", "OMDB", "Dubai International Airport"], ["Paris", "\u00cele-de-France", "France", "CDG", "LFPG", "Charles de Gaulle Airport"], ["Cape Town", "Western Cape", "South Africa", "CPT", "FACT", "Cape Town International Airport"], ["Shanghai", "Shanghai", "China", "PVG", "ZSPD", "Shanghai Pudong International Airport"], ["Tokyo", "Tokyo", "Japan", "HND", "RJTT", "Haneda Airport"], ["Amsterdam", "North Holland", "Netherlands", "AMS", "EHAM", "Amsterdam Airport Schiphol"], ["Toronto", "Ontario", "Canada", "YYZ", "CYYZ", "Toronto Pearson International Airport"], ["Bangkok", "Bangkok", "Thailand", "BKK", "VTBS", "Suvarnabhumi Airport"], ["New York City", "New York", "United States", "JFK", "KJFK", "John F. Kennedy International Airport"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["City", "Province/Region", "Country", "IATA", "ICAO", "Airport"], "add_description": "The name of this table is Airport Information, and the headers of this table are City,Province/Region,Country,IATA,ICAO,Airport.", "sql": {"query": "SELECT City FROM \"Airport Information\" WHERE IATA='VIE';", "length": 56}, "source": "wikisql"} +{"description": "other than npsl, what league has ny mens soccer team played in?", "label": ["CSL I"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Soccer Team Performance Table", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Division", "type": "INT"}, {"name": "League", "type": "TEXT"}, {"name": "Regular Season", "type": "TEXT"}, {"name": "Playoffs", "type": "TEXT"}, {"name": "Open Cup", "type": "TEXT"}], "rows": [["2008", "4", "NPSL", "2nd, Mid Atlantic", "Did not qualify", "Did not qualify"], ["2009", "4", "NPSL", "5th, Atlantic", "Did not qualify", "Did not enter"], ["2010", "4", "NPSL", "5th, Atlantic", "Did not qualify", "Did not enter"], ["2010\u201311", "5", "CSL I", "In progress", "N/A", "N/A"], ["2011", "4", "NPSL", "4th, Atlantic", "Did not qualify", "Did not enter"], ["2012", "4", "NPSL", "3rd, Atlantic", "Did not qualify", "Did not enter"], ["2013", "4", "NPSL", "3rd, Atlantic", "Did not qualify", "Did not enter"], ["2014", "4", "NPSL", "2nd, Mid Atlantic", "Did not qualify", "Did not qualify"], ["2015", "4", "NPSL", "1st, Atlantic", "Lost first round", "Did not enter"], ["2016", "4", "NPSL", "2nd, Northeast", "Did not qualify", "Did not enter"], ["2016-17", "5", "CSL I", "In progress", "N/A", "N/A"], ["2017", "4", "NPSL", "1st, Northeast", "Lost conference final", "Did not enter"], ["2018", "4", "NPSL", "4th, Northeast", "Did not qualify", "Did not enter"], ["2019", "4", "NPSL", "2nd, Atlantic", "Lost conference final", "Did not enter"], ["2020", "4", "NPSL", "Season cancelled", "N/A", "N/A"], ["2021", "4", "NPSL", "In progress", "In progress", "In progress"], ["2021-22", "5", "CSL I", "Upcoming", "Upcoming", "Upcoming"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Year", "Division", "League", "Regular Season", "Playoffs", "Open Cup"], "add_description": "The name of this table is Soccer Team Performance Table, and the headers of this table are Year,Division,League,Regular Season,Playoffs,Open Cup.", "sql": {"query": "SELECT DISTINCT LeagueFROM Soccer Team Performance TableWHERE League != 'NPSL';", "length": 79}, "source": "wikitq"} +{"description": "How many attended tie number 19?", "label": ["1174.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Matches", "table_info": {"columns": [{"name": "Tie no", "type": "TEXT"}, {"name": "Home team", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Away team", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["1", "Halifax Town", "2\u20131", "Evesham United", "1,025"], ["7", "Cambridge United", "5\u20131", "Stafford Rangers", "1,965"], ["9", "Barrow", "2\u20131", "Farsley Celtic", "1,380"], ["16", "Hitchin Town", "0\u20131", "Weymouth", "504"], ["19", "Stevenage Borough", "1\u20130", "Salisbury City", "1,174"], ["23", "Aldershot Town", "1\u20130", "Crawley Town", "2,058"], ["25", "Forest Green Rovers", "4\u20131", "Eastleigh", "753"], ["29", "Lewes", "2\u20130", "Grays Athletic", "746"], ["35", "Manchester United", "3-0", "Chelsea", "75,000"], ["12", "Arsenal", "1-1", "Tottenham Hotspur", "65,000"], ["8", "Leicester City", "2-0", "West Ham United", "33,000"], ["54", "Blackburn Rovers", "2-1", "Sheffield Wednesday", "23,000"], ["17", "Rangers", "4-0", "Celtic", "50,000"], ["42", "AC Milan", "1-0", "Inter Milan", "80,000"], ["6", "Liverpool", "0-0", "Everton", "40,000"], ["21", "Real Madrid", "3-1", "Barcelona", "100,000"], ["48", "Borussia Dortmund", "2-2", "Bayern Munich", "75,000"], ["30", "Juventus", "2-0", "Milan", "60,000"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Tie no", "Home team", "Score", "Away team", "Attendance"], "add_description": "The name of this table is Football Matches, and the headers of this table are Tie no,Home team,Score,Away team,Attendance.", "sql": {"query": "SELECT Attendance FROM \"Football Matches\" WHERE \"Tie no\"='19';", "length": 62}, "source": "wikisql"} +{"description": "crest 3d intensive professional effects and crest whitestrips 3d professional effects both have a lasting whiteness of how many months?", "label": ["12 months"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Crest Whitestrips Products", "table_info": {"columns": [{"name": "Model", "type": "TEXT"}, {"name": "Availability", "type": "TEXT"}, {"name": "Introduced", "type": "DATE"}, {"name": "Length of use", "type": "TEXT"}, {"name": "Last of whiteness", "type": "TEXT"}], "rows": [["Crest Whitestrips Classic\\npreviously Crest Whitestrips", "Discontinued", "May 2001", "14 days", "12 months"], ["Crest Whitestrips Professional", "Discontinued", "2001", "10 days", "12 months"], ["Crest Whitestrips Supreme", "Dentist and online", "September 2003", "21 days", "18 months"], ["Crest Whitestrips Premium", "Discontinued", "January 2004", "7 days", "12 months"], ["Crest Whitestrips Pro\\npreviously Crest Whitestrips Premium Plus", "Discontinued", "April 2005", "10 days", "18 months"], ["Crest Whitestrips Renewal", "Discontinued", "January 2006", "10 days", "18 months"], ["Crest Whitestrips Daily Multicare", "Discontinued", "March 2007", "Daily", "White after using system"], ["Crest Whitestrips Advanced Seal", "Discontinued", "February 2009", "14 days", "18 months"], ["Crest Whitestrips 3D Vivid", "Instore and online", "2009", "10 days", "12 months"], ["Crest Whitestrips 3D Advanced Vivid", "Instore and online", "March 2010", "14 days", "12 months"], ["Crest Whitestrips 3D Professional Effects", "Instore and online", "March 2010", "20 days", "12 months"], ["Crest 3D White 2 Hour Express", "Instore and online", "2010", "2 hours", "3 months"], ["Crest 3D Intensive Professional Effects", "Instore and online", "2011", "7 days", "12 months"], ["Crest Whitestrips Supreme Platinum", "Dentist offices only", "December 2015", "28 days", "24 months"], ["Crest 3D White Arctic Fresh", "Instore and online", "June 2012", "14 days", "12 months"], ["Crest Whitestrips Optic White", "Online only", "August 2013", "20 days", "18 months"], ["Crest Whitestrips Gentle Routine", "Instore and online", "October 2014", "30 days", "24 months"], ["Crest Whitestrips Brilliance", "Online only", "February 2016", "15 days", "18 months"], ["Crest 3D White Strips Light Kit", "Instore and online", "June 2017", "45 minutes", "3 months"], ["Crest Whitestrips Enamel Care", "Online only", "September 2018", "14 days", "12 months"], ["Crest 3D White Whitening Kit with Mouthwash", "Instore and online", "January 2019", "10 days", "12 months"], ["Crest Whitestrips Supreme Flexfit", "Dentist offices only", "June 2020", "30 days", "24 months"], ["Crest 3D White Luxe Glamorous White", "Instore and online", "April 2021", "20 days", "18 months"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Model", "Availability", "Introduced", "Length of use", "Last of whiteness"], "add_description": "The name of this table is Crest Whitestrips Products, and the headers of this table are Model,Availability,Introduced,Length of use,Last of whiteness.", "sql": {"query": "SELECT [Last of whiteness] FROM [Crest Whitestrips Products] WHERE Model LIKE '%Crest 3D Intensive Professional Effects%' OR Model LIKE '%Crest Whitestrips 3D Professional Effects%';", "length": 182}, "source": "wikitq"} +{"description": "what was the number of apps for spartak nizhy novgorod?", "label": ["36"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Football_Stats", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Division", "type": "INT"}, {"name": "Apps", "type": "INT"}, {"name": "Goals", "type": "INT"}], "rows": [["2004", "CSKA Moscow", "Russia", "1", "0", "0"], ["2005", "CSKA Moscow", "Russia", "1", "0", "0"], ["2006", "Spartak Nizhny Novgorod", "Russia", "2", "36", "1"], ["2006/07", "Dnipro Dnipropetrovsk", "Ukraine", "1", "12", "0"], ["2007/08", "Dnipro Dnipropetrovsk", "Ukraine", "1", "24", "0"], ["2008/09", "Dnipro Dnipropetrovsk", "Ukraine", "1", "22", "1"], ["2009/10", "Dnipro Dnipropetrovsk", "Ukraine", "1", "28", "0"], ["2010/11", "Dnipro Dnipropetrovsk", "Ukraine", "1", "23", "0"], ["2011/12", "Dnipro Dnipropetrovsk", "Ukraine", "1", "16", "0"], ["2012/13", "Dnipro Dnipropetrovsk", "Ukraine", "1", "10", "1"], ["2012/13", "Lokomotiv Moscow", "Russia", "1", "8", "0"], ["2013/14", "Lokomotiv Moscow", "Russia", "1", "14", "1"], ["2020", "Manchester United", "England", "1", "32", "10"], ["2020", "Real Madrid", "Spain", "1", "36", "8"], ["2020/21", "Juventus", "Italy", "1", "29", "7"], ["2021", "Paris Saint-Germain", "France", "1", "20", "12"], ["2021/22", "FC Bayern Munich", "Germany", "1", "18", "9"], ["2022", "Barcelona", "Spain", "1", "24", "5"], ["2022/23", "Manchester City", "England", "1", "27", "14"], ["2023", "Bayern Leverkusen", "Germany", "1", "30", "6"], ["2023/24", "AC Milan", "Italy", "1", "22", "11"], ["2024", "Ajax", "Netherlands", "1", "25", "8"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Season", "Team", "Country", "Division", "Apps", "Goals"], "add_description": "The name of this table is Football_Stats, and the headers of this table are Season,Team,Country,Division,Apps,Goals.", "sql": {"query": "SELECT Apps FROM Football_Stats WHERE Team = 'Spartak Nizhny Novgorod';", "length": 71}, "source": "wikitq"} +{"description": "Which Attendance has a Round of 52, and a Home of s\u00f6dert\u00e4lje sk?", "label": ["2859.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Hockey Games", "table_info": {"columns": [{"name": "Round", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Home", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Visitor", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["50", "Tuesday, February 10", "Fr\u00f6lunda HC", "4\u20131", "Bryn\u00e4s IF", "Scandinavium", "11,497"], ["48", "Thursday, February 12", "Fr\u00f6lunda HC", "4\u20131", "R\u00f6gle BK", "Scandinavium", "11,186"], ["48", "Thursday, February 12", "S\u00f6dert\u00e4lje SK", "3\u20132", "F\u00e4rjestads BK", "AXA Sports Center", "2,905"], ["48", "Thursday, February 12", "Bryn\u00e4s IF", "6\u20131", "Link\u00f6pings HC", "L\u00e4kerol Arena", "4,881"], ["48", "Thursday, February 12", "Timr\u00e5 IK", "3\u20133", "HV71", "E.ON Arena", "5,414"], ["48", "Thursday, February 12", "Modo Hockey", "4\u20131", "Skellefte\u00e5 AIK", "Swedbank Arena", "7,543"], ["49", "Saturday, February 14", "S\u00f6dert\u00e4lje SK", "0\u20134", "Lule\u00e5 HF", "AXA Sports Center", "3,225"], ["49", "Saturday, February 14", "R\u00f6gle BK", "1\u20134", "Bryn\u00e4s IF", "Lindab Arena", "5,011"], ["50", "Monday, February 16", "F\u00e4rjestads BK", "6\u20133", "Link\u00f6pings HC", "L\u00f6fbergs Lila Arena", "7,091"], ["50", "Monday, February 16", "Lule\u00e5 HF", "6\u20131", "R\u00f6gle BK", "COOP Arena", "4,905"], ["50", "Tuesday, February 17", "Djurg\u00e5rdens IF", "4\u20131", "Timr\u00e5 IK", "Hovet", "6,622"], ["51", "Thursday, February 19", "HV71", "2\u20133 (OT)", "Fr\u00f6lunda HC", "Kinnarps Arena", "7,038"], ["51", "Thursday, February 19", "Link\u00f6pings HC", "1\u20133", "Lule\u00e5 HF", "Cloetta Center", "7,992"], ["51", "Thursday, February 19", "R\u00f6gle BK", "6\u20132", "Modo Hockey", "Lindab Arena", "5,071"], ["51", "Thursday, February 19", "Timr\u00e5 IK", "8\u20130", "Skellefte\u00e5 AIK", "E.ON Arena", "5,804"], ["52", "Saturday, February 21", "S\u00f6dert\u00e4lje SK", "2\u20132", "Timr\u00e5 IK", "AXA Sports Center", "2,859"], ["52", "Saturday, February 21", "Bryn\u00e4s IF", "4\u20132", "Djurg\u00e5rdens IF", "L\u00e4kerol Arena", "8,166"], ["52", "Saturday, February 21", "Skellefte\u00e5 AIK", "3\u20132 (OT)", "R\u00f6gle BK", "Skellefte\u00e5 Kraft Arena", "5,541"], ["53", "Monday, February 23", "Modo Hockey", "5\u20130", "Lule\u00e5 HF", "Swedbank Arena", "6,433"], ["53", "Monday, February 23", "Timr\u00e5 IK", "2\u20133", "Fr\u00f6lunda HC", "E.ON Arena", "5,624"], ["53", "Monday, February 23", "R\u00f6gle BK", "3\u20134 (OT)", "F\u00e4rjestads BK", "Lindab Arena", "5,031"], ["53", "Tuesday, February 24", "HV71", "3\u20131", "Bryn\u00e4s IF", "Kinnarps Arena", "7,038"], ["53", "Tuesday, February 24", "Link\u00f6pings HC", "7\u20135", "S\u00f6dert\u00e4lje SK", "Cloetta Center", "7,004"], ["53", "Tuesday, February 24", "Djurg\u00e5rdens IF", "2\u20132", "Skellefte\u00e5 AIK", "Hovet", "7,559"], ["54", "Thursday, February 26", "Fr\u00f6lunda HC", "4\u20132", "Modo Hockey", "Scandinavium", "12,044"], ["55", "Saturday, February 28", "Djurg\u00e5rdens IF", "2\u20131", "Lule\u00e5 HF", "Hovet", "7,789"], ["55", "Saturday, February 28", "S\u00f6dert\u00e4lje SK", "1\u20134", "F\u00e4rjestads BK", "AXA Sports Center", "3,512"], ["55", "Saturday, February 28", "Skellefte\u00e5 AIK", "3\u20130", "R\u00f6gle BK", "Skellefte\u00e5 Kraft Arena", "5,763"], ["55", "Saturday, February 28", "Modo Hockey", "3\u20132", "Timr\u00e5 IK", "Swedbank Arena", "6,751"], ["55", "Saturday, February 28", "Bryn\u00e4s IF", "1\u20132", "HV71", "L\u00e4kerol Arena", "9,042"], ["56", "Monday, March 2", "Lule\u00e5 HF", "1\u20133", "Skellefte\u00e5 AIK", "COOP Arena", "4,721"], ["56", "Monday, March 2", "R\u00f6gle BK", "1\u20136", "Link\u00f6pings HC", "Lindab Arena", "5,208"], ["56", "Monday, March 2", "F\u00e4rjestads BK", "3\u20133", "Djurg\u00e5rdens IF", "L\u00f6fbergs Lila Arena", "7,856"], ["56", "Tuesday, March 3", "HV71", "4\u20131", "S\u00f6dert\u00e4lje SK", "Kinnarps Arena", "7,390"], ["56", "Tuesday, March 3", "Fr\u00f6lunda HC", "3\u20132", "Bryn\u00e4s IF", "Scandinavium", "12,049"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Round", "Date", "Home", "Result", "Visitor", "Venue", "Attendance"], "add_description": "The name of this table is Hockey Games, and the headers of this table are Round,Date,Home,Result,Visitor,Venue,Attendance.", "sql": {"query": "SELECT AttendanceFROM Hockey GamesWHERE Round = 52 AND Home = 'S\u00f6dert\u00e4lje SK';", "length": 78}, "source": "wikisql"} +{"description": "what team is listed after manchester city?", "label": ["Chelsea"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Manager Changes", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "Outgoing manager", "type": "TEXT"}, {"name": "Manner of departure", "type": "TEXT"}, {"name": "Date of vacancy", "type": "DATE"}, {"name": "Replaced by", "type": "TEXT"}, {"name": "Date of appointment", "type": "DATE"}, {"name": "Position in table", "type": "TEXT"}], "rows": [["Manchester City", "Stuart Pearce", "Contract terminated", "14 May 2007", "Sven-G\u00f6ran Eriksson", "6 July 2007", "Pre-season"], ["Chelsea", "Jos\u00e9 Mourinho", "Mutual consent", "20 September 2007", "Avram Grant", "20 September 2007", "5th"], ["Bolton Wanderers", "Sammy Lee", "Mutual consent", "17 October 2007", "Gary Megson", "25 October 2007", "19th"], ["Tottenham Hotspur", "Martin Jol", "Contract terminated", "25 October 2007", "Juande Ramos", "27 October 2007", "18th"], ["Wigan Athletic", "Chris Hutchings", "Contract terminated", "5 November 2007", "Steve Bruce", "26 November 2007", "18th"], ["Birmingham City", "Steve Bruce", "Wigan purchased rights for \u00a33m", "19 November 2007", "Alex McLeish", "28 November 2007", "15th"], ["Derby County", "Billy Davies", "Mutual consent", "26 November 2007", "Paul Jewell", "28 November 2007", "20th"], ["Fulham", "Lawrie Sanchez", "Contract terminated", "21 December 2007", "Roy Hodgson", "30 December 2007", "18th"], ["Newcastle United", "Sam Allardyce", "Mutual consent", "9 January 2008", "Kevin Keegan", "16 January 2008", "11th"], ["Chelsea", "Avram Grant", "Contract terminated", "24 May 2008", "Luiz Felipe Scolari", "1 July 2008", "Post-season (2nd)"], ["Manchester City", "Sven-G\u00f6ran Eriksson", "Mutual consent", "2 June 2008", "Mark Hughes", "4 June 2008", "Post-season (9th)"], ["Blackburn Rovers", "Mark Hughes", "Manchester City purchased rights for \u00a34.6m", "4 June 2008", "Paul Ince", "22 June 2008", "Post-season (7th)"], ["Arsenal", "Unai Emery", "Contract terminated", "29 November 2019", "Mikel Arteta", "20 December 2019", "8th"], ["Everton", "Marco Silva", "Contract terminated", "6 December 2019", "Carlo Ancelotti", "21 December 2019", "18th"], ["Watford", "Quique S\u00e1nchez Flores", "Contract terminated", "1 December 2019", "Nigel Pearson", "6 December 2019", "20th"], ["West Ham United", "Manuel Pellegrini", "Contract terminated", "28 December 2019", "David Moyes", "29 December 2019", "17th"], ["Aston Villa", "Steve Bruce", "Mutual consent", "3 October 2018", "Dean Smith", "10 October 2018", "13th"], ["Leeds United", "Paul Heckingbottom", "Contract terminated", "1 June 2018", "Marcelo Bielsa", "15 June 2018", "13th"], ["Brighton & Hove Albion", "Chris Hughton", "Contract terminated", "13 May 2019", "Graham Potter", "20 May 2019", "17th"], ["Burnley", "Owen Coyle", "Mutual consent", "5 January 2010", "Brian Laws", "13 January 2010", "13th"], ["Norwich City", "Chris Hughton", "Contract terminated", "6 April 2014", "Neil Adams", "6 April 2014", "17th"], ["Leicester City", "Claudio Ranieri", "Contract terminated", "23 February 2017", "Craig Shakespeare", "7 March 2017", "17th"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Team", "Outgoing manager", "Manner of departure", "Date of vacancy", "Replaced by", "Date of appointment", "Position in table"], "add_description": "The name of this table is Manager Changes, and the headers of this table are Team,Outgoing manager,Manner of departure,Date of vacancy,Replaced by,Date of appointment,Position in table.", "sql": {"query": "SELECT Replaced by FROM `Manager Changes` WHERE Outgoing manager = 'Stuart Pearce' AND Date of vacancy = '14 May 2007';", "length": 119}, "source": "wikitq"} +{"description": "What event did he fight masato shiozawa?", "label": ["Shooto 2003 - 5/4 in Korakuen Hall"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "MMA Fight Record", "table_info": {"columns": [{"name": "Res.", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Method", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Round", "type": "TEXT"}], "rows": [["Win", "6-1", "Kenji Osawa", "Decision(majority)", "Shooto - Back To Our Roots 3", "1"], ["Win", "5-1", "Naoya Uematsu", "Decision(unanimous)", "Fury FC 1 - Fury Fighting Championship 1", "1"], ["Win", "4-1", "Fredson Paix\u00e3o", "Decision", "JF 6 - Jungle Fight 6", "3"], ["Loss", "3-1", "Akitoshi Hokazono", "Decision(unanimous)", "Shooto 2005 - 9/23 in Korakuen Hall", "3"], ["Win", "3-0", "Jin Akimoto", "Decision(unanimous)", "Shooto 2004 - 9/26 in Kourakuen Hall", "3"], ["Win", "2-0", "Shuichiro Katsumura", "Decision (unanimous)", "Shooto 2004 - 1/24 in Korakuen Hall", "3"], ["Win", "1-0", "Masato Shiozawa", "Decision(majority)", "Shooto 2003 - 5/4 in Korakuen Hall", "3"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Res.", "Record", "Opponent", "Method", "Event", "Round"], "add_description": "The name of this table is MMA Fight Record, and the headers of this table are Res.,Record,Opponent,Method,Event,Round.", "sql": {"query": "SELECT Event FROM \"MMA Fight Record\" WHERE Opponent = 'Masato Shiozawa';", "length": 72}, "source": "wikisql"} +{"description": "list the only coach that won promotion to the first tier.", "label": ["Ole M\u00f8rk"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Coaches", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "From", "type": "DATE"}, {"name": "To", "type": "DATE"}, {"name": "Honours", "type": "TEXT"}, {"name": "Comments", "type": "TEXT"}], "rows": [["Henrik Jensen", "Denmark", "1 July 2012", "Present", "", ""], ["John 'Tune' Kristiansen", "Denmark", "18 June 2012", "23 June 2012", "", "Caretaker for one league match"], ["Peer F. Hansen", "Denmark", "1 January 2012", "18 June 2012", "won promotion to the third tier", ""], ["John 'Tune' Kristiansen", "Denmark", "27 July 2010", "30 December 2011", "won promotion to the fourth tier", "Originally had contract until summer 2012"], ["Ren\u00e9 Heitmann", "Denmark", "17 July 2010", "27 July 2010", "", "Never coached the team in a match"], ["Christian Andersen", "Denmark", "11 July 2009", "19 June 2010", "Team was relegated to third tier", "Club went bankrupt after the season"], ["Anders Theil", "Denmark", "7 November 2005", "7 July 2009", "", "Originally had contract until summer 2011"], ["Ebbe Skovdahl", "Denmark", "11 October 2003", "6 November 2005", "Team was relegated to second tier", "Originally had contract until summer 2007"], ["Ole M\u00f8rk", "Denmark", "15 October 2001", "10 October 2003", "Won promotion to first tier", "Originally had contract until end of 2004"], ["Johnny Petersen", "Denmark", "5 May 1998", "14 October 2001", "", "Originally had contract until end of 2001"], ["John 'Tune' Kristiansen", "Denmark", "1996", "4 May 1998", "Won promotion to second tier", ""], ["Sarah Anderson", "United States", "1 February 2020", "Present", "", ""], ["Michael Johnson", "Canada", "15 May 2019", "31 December 2019", "Qualified for playoffs", ""], ["Anders Svensson", "Sweden", "1 January 2019", "15 May 2019", "", "Resigned due to family reasons"], ["Juan Hernandez", "Mexico", "1 July 2018", "31 December 2018", "Team won championship", ""], ["Samantha Lee", "United States", "1 January 2018", "30 June 2018", "Team finished in top 4", ""], ["Yusuke Nakamura", "Japan", "1 August 2017", "31 December 2017", "", "Left for another club at end of season"], ["Alain Dupont", "France", "1 January 2017", "31 July 2017", "", "Terminated due to poor performance"], ["Maria Rodriguez", "Spain", "1 September 2016", "31 December 2016", "Qualified for Europa League", ""], ["Maurice Patel", "Germany", "1 January 2016", "31 August 2016", "", "Resigned to take a break from coaching"], ["Luis Gomez", "Argentina", "15 June 2015", "31 December 2015", "", "Contract not renewed for next season"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Name", "Nationality", "From", "To", "Honours", "Comments"], "add_description": "The name of this table is Coaches, and the headers of this table are Name,Nationality,From,To,Honours,Comments.", "sql": {"query": "SELECT Name FROM Coaches WHERE Honours = 'Won promotion to first tier';", "length": 71}, "source": "wikitq"} +{"description": "what team took first place in 2008?", "label": ["Cairns Saints"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "AFL Cairns Grand Final Results", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Premiers", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Runners Up", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}], "rows": [["2003", "Centrals Trinity Beach Bulldogs", "14.11 (95)", "North Cairns", "6.7 (43)"], ["2004", "Port Douglas Crocs", "17.13 (115)", "North Cairns Tigers", "8.9 (57)"], ["2005", "Port Douglas Crocs", "19.14 (128)", "Cairns Saints", "4.11 (35)"], ["2006", "Manunda Hawks", "11.11 (77)", "Centrals Trinity Beach Bulldogs", "10.9 (69)"], ["2007", "Centrals Trinity Beach Bulldogs", "14.16 (100)", "Cairns Saints", "11.2 (68)"], ["2008", "Cairns Saints", "12.15 (87)", "North Cairns Tigers", "2.9 (21)"], ["2009", "South Cairns Cutters", "9.11 (65)", "Cairns Saints", "9.4 (58)"], ["2010", "North Cairns Tigers", "8.10 (58)", "Port Douglas Crocs", "8.5 (53)"], ["2011", "Manunda Hawks", "11.8 (74)", "Port Douglas Crocs", "6.9 (45)"], ["2012", "Cairns Saints", "17.6 (108)", "North Cairns Tigers", "11.12 (78)"], ["2013", "North Cairns Tigers", "14.14 (98)", "Port Douglas Crocs", "13.6 (84)"], ["2014", "South Cairns Cutters", "12.9 (81)", "Manunda Hawks", "9.12 (66)"], ["2015", "Port Douglas Crocs", "16.11 (107)", "South Cairns Cutters", "11.8 (74)"], ["2016", "North Cairns Tigers", "18.12 (120)", "Centrals Trinity Beach Bulldogs", "7.6 (48)"], ["2017", "Manunda Hawks", "10.13 (73)", "Cairns Saints", "8.7 (55)"], ["2018", "Centrals Trinity Beach Bulldogs", "13.10 (88)", "South Cairns Cutters", "10.12 (72)"], ["2019", "Cairns Saints", "15.9 (99)", "Port Douglas Crocs", "11.11 (77)"], ["2020", "South Cairns Cutters", "14.8 (92)", "North Cairns Tigers", "12.7 (79)"], ["2021", "Centrals Trinity Beach Bulldogs", "11.11 (77)", "Manunda Hawks", "8.8 (56)"], ["2022", "Port Douglas Crocs", "14.12 (96)", "Cairns Saints", "9.13 (67)"], ["2023", "North Cairns Tigers", "16.10 (106)", "South Cairns Cutters", "9.10 (64)"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Year", "Premiers", "Score", "Runners Up", "Score"], "add_description": "The name of this table is AFL Cairns Grand Final Results, and the headers of this table are Year,Premiers,Score,Runners Up,Score.", "sql": {"query": "SELECT PremiersFROM \"AFL Cairns Grand Final Results\"WHERE Year = '2008';", "length": 72}, "source": "wikitq"} +{"description": "did dallas or ottawa win the december 9, 1993 game?", "label": ["Dallas"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Hockey_Game_Results", "table_info": {"columns": [{"name": "Date", "type": "DATE"}, {"name": "Winning Team", "type": "TEXT"}, {"name": "Score", "type": "INT"}, {"name": "Losing Team", "type": "TEXT"}, {"name": "Score", "type": "INT"}, {"name": "OT", "type": "TEXT"}, {"name": "City", "type": "TEXT"}, {"name": "State/Province", "type": "TEXT"}, {"name": "Arena", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["October 21, 1993", "St. Louis", "5", "San Jose", "2", "", "Sacramento", "CA", "ARCO Arena", "7,144"], ["October 31, 1993", "NY Rangers", "4", "New Jersey", "1", "", "Halifax", "NS", "Halifax Metro Centre", "8,200"], ["November 3, 1993", "Pittsburgh", "6", "Buffalo", "2", "", "Sacramento", "CA", "ARCO Arena", "10,117"], ["November 9, 1993", "Anaheim", "4", "Dallas", "2", "", "Phoenix", "AZ", "America West Arena", "8,143"], ["November 18, 1993", "NY Islanders", "5", "Montr\u00e9al", "1", "", "Hamilton", "ON", "Copps Coliseum", "17,008"], ["December 9, 1993", "Dallas", "6", "Ottawa", "1", "", "Minneapolis", "MN", "Target Center", "14,058"], ["December 23, 1993", "Vancouver", "4", "Calgary", "3", "", "Saskatoon", "SK", "SaskPlace", "11,429*"], ["December 31, 1993", "Philadelphia", "4", "Boston", "3", "", "Minneapolis", "MN", "Target Center", "10,855"], ["January 4, 1994", "Tampa Bay", "1", "Toronto", "0", "", "Hamilton", "ON", "Copps Coliseum", "17,526*"], ["January 5, 1994", "Montr\u00e9al", "2", "Qu\u00e9bec", "0", "", "Phoenix", "AZ", "America West Arena", "11,393"], ["January 6, 1994", "St. Louis", "2", "Hartford", "1", "", "Cleveland", "OH", "Richfield Coliseum", "6,956"], ["January 17, 1994", "Detroit", "6", "Tampa Bay", "3", "", "Minneapolis", "MN", "Target Center", "8,764"], ["January 23, 1994", "Vancouver", "5", "Edmonton", "4", "(OT)", "Saskatoon", "SK", "SaskPlace", "N/A"], ["January 24, 1994", "Calgary", "3", "Los Angeles", "3", "(OT)", "Phoenix", "AZ", "America West Arena", "14,864"], ["February 2, 1994", "Washington", "5", "Philadelphia", "2", "", "Cleveland", "OH", "Richfield Coliseum", "8,312"], ["February 8, 1994", "San Jose", "4", "Chicago", "3", "", "Sacramento", "CA", "ARCO Arena", "14,182*"], ["February 22, 1994", "Florida", "3", "Winnipeg", "2", "", "Hamilton", "ON", "Copps Coliseum", "6,291"], ["February 24, 1994", "Detroit", "3", "Hartford", "0", "", "Cleveland", "OH", "Richfield Coliseum", "11,621"], ["March 4, 1994", "Winnipeg", "6", "Ottawa", "1", "", "Minneapolis", "MN", "Target Center", "6,388"], ["March 8, 1994", "Chicago", "3", "Anaheim", "0", "", "Phoenix", "AZ", "America West Arena", "13,847"], ["March 9, 1994", "NY Rangers", "7", "Washington", "5", "", "Halifax", "NS", "Halifax Metro Centre", "9,200*"], ["March 18, 1994", "Buffalo", "2", "NY Islanders", "2", "(OT)", "Minneapolis", "MN", "Target Center", "8,016"], ["March 23, 1994", "Florida", "1", "Toronto", "1", "(OT)", "Hamilton", "ON", "Copps Coliseum", "17,096*"], ["March 27, 1994", "New Jersey", "5", "Quebec", "2", "", "Minneapolis", "MN", "Target Center", "6,222"], ["April 3, 1994", "Pittsburgh", "6", "Boston", "2", "", "Cleveland", "OH", "Richfield Coliseum", "17,224"], ["April 3, 1994", "Los Angeles", "6", "Edmonton", "1", "", "Sacramento", "CA", "ARCO Arena", "10,363"], ["April 10, 1994", "Quebec", "2", "Montreal", "1", "", "Phoenix", "AZ", "America West Arena", "13,289"], ["April 15, 1994", "New Jersey", "4", "Boston", "3", "", "Sacramento", "CA", "ARCO Arena", "8,955"], ["April 24, 1994", "Vancouver", "6", "Calgary", "3", "", "Saskatoon", "SK", "SaskPlace", "12,677"], ["May 1, 1994", "San Jose", "3", "St. Louis", "2", "(OT)", "Hamilton", "ON", "Copps Coliseum", "16,284*"], ["May 3, 1994", "NY Islanders", "5", "Washington", "4", "(OT)", "Halifax", "NS", "Halifax Metro Centre", "7,800"], ["May 8, 1994", "Detroit", "2", "Dallas", "1", "", "Cleveland", "OH", "Richfield Coliseum", "12,614"], ["May 9, 1994", "Toronto", "4", "Chicago", "3", "", "Minneapolis", "MN", "Target Center", "16,897"], ["May 11, 1994", "Vancouver", "7", "Los Angeles", "5", "", "Saskatoon", "SK", "SaskPlace", "9,227"], ["May 15, 1994", "Philadelphia", "4", "NY Rangers", "3", "", "Phoenix", "AZ", "America West Arena", "14,378"], ["May 17, 1994", "San Jose", "3", "Toronto", "2", "", "Hamilton", "ON", "Copps Coliseum", "16,247"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Date", "Winning Team", "Score", "Losing Team", "Score", "OT", "City", "State/Province", "Arena", "Attendance"], "add_description": "The name of this table is Hockey_Game_Results, and the headers of this table are Date,Winning Team,Score,Losing Team,Score,OT,City,State/Province,Arena,Attendance.", "sql": {"query": "SELECT Winning_Team FROM Hockey_Game_Results WHERE (Losing_Team = 'Dallas' OR Losing_Team = 'Ottawa') AND Date = 'December 9, 1993';", "length": 148}, "source": "wikitq"} +{"description": "what is the total agricultural value in 2008/09?", "label": ["3,729.7"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "IME Exchange (Including spot, credit and forward transactions)", "table_info": {"columns": [{"name": "IME Exchange (Including spot, credit and forward transactions)", "type": "TEXT"}, {"name": "2007/08", "type": "DECIMAL"}, {"name": "2008/09", "type": "DECIMAL"}, {"name": "2009/10", "type": "DECIMAL"}, {"name": "2010/11", "type": "DECIMAL"}, {"name": "2011/12", "type": "DECIMAL"}], "rows": [["Agricultural - Volume (thousand tons)", "273.0", "173.5", "175.2", "1,633.9", "550.0"], ["Agricultural - Value (billion rials)", "772.6", "3,729.7", "484.8", "3,729.0", "3,793.0"], ["Manufacturing and Metal - Volume (thousand tons)", "6,443.8", "6,679.7", "7,438.5", "8,694.0", "11,685.0"], ["Manufacturing and Metal - Value (billion rials)", "58,044.2", "62,120.6", "53,842.0", "75,235.5", "102,356.0"], ["Oil and Petrochemical - Volume (thousand tons)", "89.7", "4,339.2", "7,052.9", "6,662.6", "8,117.0"], ["Oil and Petrochemical - Value (billion rials)", "352.7", "19,921.0", "36,450.7", "41,478.0", "64,370.0"], ["Grand Total - Volume (thousand tons)", "6,806.5", "11,192.4", "14,666.6", "16,990.5", "20,351.0"], ["Grand Total - Value (billion rials)", "59,169.4", "82,685.3", "90,777.5", "120,443.2", "170,519.0"], ["Agricultural - Volume (thousand tons)", 330.6, 721.3, 943.8, 1186.2, 2175.5], ["Agricultural - Value (billion rials)", 427.6, 527.2, 849.4, 965.1, 1158.8], ["Manufacturing and Metal - Volume (thousand tons)", 2488.2, 2934.9, 3576.8, 4289.3, 5765.1], ["Manufacturing and Metal - Value (billion rials)", 71584.2, 84173.8, 93922.7, 108832.9, 124666.4], ["Oil and Petrochemical - Volume (thousand tons)", 1012.9, 2953.4, 4867.7, 6469.5, 8883.2], ["Oil and Petrochemical - Value (billion rials)", 193.4, 232.8, 291.2, 324.5, 430.7], ["Grand Total - Volume (thousand tons)", 3924.6, 6780.3, 9058.3, 11902.7, 16824.2], ["Grand Total - Value (billion rials)", 64327.5, 82562.0, 104055.7, 119905.7, 143706.1], ["Mining - Volume (thousand tons)", 335.0, 679.0, 970.1, 1435.4, 2068.7], ["Mining - Value (billion rials)", 2147.2, 3462.1, 4250.9, 5481.8, 6612.6]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["IME Exchange (Including spot, credit and forward transactions)", "2007/08", "2008/09", "2009/10", "2010/11", "2011/12"], "add_description": "The name of this table is IME Exchange (Including spot, credit and forward transactions), and the headers of this table are IME Exchange (Including spot, credit and forward transactions),2007/08,2008/09,2009/10,2010/11,2011/12.", "sql": {"query": "SELECT [2008/09] FROM [IME Exchange (Including spot, credit and forward transactions)] WHERE [IME Exchange (Including spot, credit and forward transactions)] = 'Agricultural - Value (billion rials)';", "length": 199}, "source": "wikitq"} +{"description": "what are the number of league apps ted davis has?", "label": ["27"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Football_Player_Stats", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "League Apps", "type": "INT"}, {"name": "League Goals", "type": "INT"}, {"name": "FA Cup Apps", "type": "INT"}, {"name": "FA Cup Goals", "type": "INT"}, {"name": "Total Apps", "type": "INT"}, {"name": "Total Goals", "type": "INT"}], "rows": [["Ned Barkas", "England", "DF", "4", "0", "0", "0", "4", "0"], ["Harry Brough", "England", "DF", "9", "0", "0", "0", "9", "0"], ["George Brown", "England", "FW", "6", "4", "0", "0", "6", "4"], ["Jack Byers", "England", "MF", "5", "1", "0", "0", "5", "1"], ["Harry Cawthorne", "England", "DF", "5", "0", "0", "0", "5", "0"], ["Ted Davis", "England", "GK", "27", "0", "7", "0", "34", "0"], ["Ernie Islip", "England", "FW", "34", "11", "9", "4", "43", "15"], ["Billy Johnston", "England", "FW", "21", "2", "2", "0", "23", "2"], ["Robert Jones", "England", "MF", "2", "1", "0", "0", "2", "1"], ["Frank Mann", "England", "FW", "40", "5", "8", "4", "48", "9"], ["Len Marlow", "England", "FW", "1", "0", "0", "0", "1", "0"], ["Colin McKay", "Scotland", "DF", "14", "2", "0", "0", "14", "2"], ["Sandy Mutch", "Scotland", "GK", "15", "0", "2", "0", "17", "0"], ["Stan Pearson", "England", "MF", "1", "0", "1", "0", "2", "0"], ["George Richardson", "England", "MF", "14", "1", "8", "1", "22", "2"], ["Charlie Slade", "England", "DF", "25", "0", "9", "0", "34", "0"], ["Billy E. Smith", "England", "FW", "1", "0", "0", "0", "1", "0"], ["Billy H. Smith", "England", "MF", "40", "8", "9", "4", "49", "12"], ["Clem Stephenson", "England", "FW", "39", "9", "9", "6", "48", "15"], ["Jack Swann", "England", "FW", "9", "3", "0", "0", "9", "3"], ["Sam Wadsworth", "England", "DF", "39", "1", "9", "0", "48", "1"], ["Billy Watson", "England", "DF", "36", "0", "9", "1", "45", "1"], ["Tom Wilson", "England", "DF", "39", "1", "9", "0", "48", "1"], ["James Wood", "England", "DF", "36", "0", "9", "0", "45", "0"], ["John Smith", "Australia", "FW", "15", "7", "2", "1", "17", "8"], ["Sarah Lee", "USA", "MF", "23", "3", "5", "0", "28", "3"], ["Yuto Nagamoto", "Japan", "DF", "12", "1", "3", "0", "15", "1"], ["Francois Dupont", "France", "MF", "29", "6", "7", "2", "36", "8"], ["Hans M\u00fcller", "Germany", "GK", "30", "0", "8", "0", "38", "0"], ["Elena Martinez", "Spain", "DF", "20", "0", "3", "0", "23", "0"], ["Giuseppe Rossi", "Italy", "FW", "16", "9", "4", "1", "20", "10"], ["Marta Silva", "Brazil", "FW", "14", "11", "0", "0", "14", "11"], ["Johan Svensson", "Sweden", "MF", "32", "4", "6", "3", "38", "7"], ["David Kim", "South Korea", "DF", "18", "2", "2", "0", "20", "2"]]}}, "evaluation": "", "example": "", "type": ["other"], "heads": ["Name", "Nation", "Position", "League Apps", "League Goals", "FA Cup Apps", "FA Cup Goals", "Total Apps", "Total Goals"], "add_description": "The name of this table is Football_Player_Stats, and the headers of this table are Name,Nation,Position,League Apps,League Goals,FA Cup Apps,FA Cup Goals,Total Apps,Total Goals.", "sql": {"query": "SELECT `League Apps` FROM Football_Player_Stats WHERE Name='Ted Davis';", "length": 71}, "source": "wikitq"} +{"description": "How many schools have a website of http://www.camp.herts.sch.uk/?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Schools Information", "table_info": {"columns": [{"name": "School", "type": "TEXT"}, {"name": "Gender", "type": "TEXT"}, {"name": "Age Range", "type": "TEXT"}, {"name": "Religious Affiliation", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "School website", "type": "TEXT"}], "rows": [["The Abbey CE VA Primary School", "Mixed", "4-11", "Church of England", "AL1", "http://www.abbey.herts.sch.uk"], ["Aboyne Lodge Primary and Nursery School", "Mixed", "3-11", "Does not apply", "AL3", "http://www.aboyne.herts.sch."], ["Alban City School", "Mixed", "4-11", "Does not apply", "AL1", "http://albancityschool.org.uk/"], ["Bernards Heath Infant School", "Mixed", "3-7", "Does not apply", "AL1", "http://www.bernardsheath.herts"], ["Bernards Heath Junior School", "Mixed", "7-11", "Does not apply", "AL3", "http://www.bernardsheathjnr."], ["Camp Primary and Nursery School", "Mixed", "3-11", "Does not apply", "AL1", "http://www.camp.herts.sch.uk/"], ["Cunningham Hill Infant School", "Mixed", "4-7", "Does not apply", "AL1", "http://cunninghaminfants.herts.sch."], ["Cunningham Hill Junior School", "Mixed", "7-11", "Does not apply", "AL1", "http://www.cunninghamhill-jun.herts."], ["Fleetville Infant and Nursery School", "Mixed", "3-7", "Does not apply", "AL1", "http://www.fleetvilleinfants.hert"], ["Fleetville Junior School", "Mixed", "7-11", "Does not apply", "AL1", "http://www.fleetvillejm.herts"], ["Garden Fields JMI", "Mixed", "5-11", "Does not apply", "AL3", "http://www.gardenfields.herts.sch."], ["Killigrew Primary and Nursery School", "Mixed", "3-11", "Does not apply", "AL2", "http://www.killigrew.herts.sch.uk"], ["Mandeville Primary School", "Mixed", "3-11", "Does not apply", "AL1", "http://www.mandeville.herts.sch.uk"], ["Maple School", "Mixed", "4-11", "Does not apply", "AL1", "http://www.maple.herts.sch.uk/"], ["Margaret Wix Primary", "Mixed", "3-11", "Does not apply", "AL3", "http://www.margaretwix.herts."], ["St Adrian Roman Catholic Primary School", "Mixed", "3-11", "Roman Catholic", "AL1", "http://www.stadrians.herts.sch."], ["St Alban and St Stephen RC Infant & Nursery School", "Mixed", "3-7", "Roman Catholic", "AL1", "http://www.ssasinfants.herts"], ["St Alban and St Stephen Catholic Junior School", "Mixed", "7-11", "Roman Catholic", "AL1", "http://www.ssasjm.herts."], ["St Michael's C of E VA Primary School", "Mixed", "4-11", "Church of England", "AL3", "http://www.stmichaels.herts."], ["St John Fisher Primary School", "Mixed", "4-11", "Roman Catholic", "AL4", "http://www.sjfisher.herts.sch."], ["St Peter's School", "Mixed", "3-11", "Does not apply", "AL1", "http://www.stpeters.herts.sch."], ["Wheatfields Infants' and Nursery School", "Mixed", "3-7", "Does not apply", "AL4", "http://www.wheatfieldsinfants.hert"], ["Wheatfields Junior School", "Mixed", "7-11", "Does not apply", "AL4", "http://www.wheatfieldsjm.herts"], ["St Catherine of Siena Catholic Primary School", "Mixed", "3-11", "Roman Catholic", "AL2", "http://www.stcatherineofsiena.herts.sch.uk"], ["Beaumont School", "Mixed", "11-18", "Does not apply", "AL4", "http://www.beaumont.herts.sch.uk"], ["Marlborough Sc... Church of England", "AL1", "http://www.hertsandessex.herts.sch.uk"], ["Roundwood Primary School", "Mixed", "3-11", "Does not apply", "AL5", "http://www.roundwoodprimary.herts.sch.uk"], ["Beech Hyde Primary School", "Mixed", "4-11", "Does not apply", "AL4", "http://www.beechhyde.herts.sch.uk"], ["Barnfield Primary School", "Mixed", "3-11", "Does not apply", "AL4", "http://www.barnfield.herts.sch.uk"], ["Tudor Primary School", "Mixed", "3-11", "Does not apply", "AL4", "http://www.tudor.herts.sch.uk"], ["Loreto College", "Mixed", "11-18", "Roman Catholic", "AL1", "http://www.loreto.herts.sch.uk"], ["Hollybush Primary School", "Mixed", "3-11", "Does not apply", "AL3", "http://www.hollybush.herts.sch.uk"], ["Leverstock Green Church of England Primary School", "Mixed", "4-11", "Church of England", "HP3", "http://www.leverstockgreen.herts.sch.uk"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["School", "Gender", "Age Range", "Religious Affiliation", "Location", "School website"], "add_description": "The name of this table is Schools Information, and the headers of this table are School,Gender,Age Range,Religious Affiliation,Location,School website.", "sql": {"query": "SELECT COUNT(*) FROM `Schools Information` WHERE `School website` = 'http://www.camp.herts.sch.uk/';", "length": 100}, "source": "wikisql"} +{"description": "How many home losses occured when PF 13?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "NFL Team Records Table", "table_info": {"columns": [{"name": "Num", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "W", "type": "TEXT"}, {"name": "L", "type": "TEXT"}, {"name": "PCT", "type": "TEXT"}, {"name": "PF", "type": "TEXT"}, {"name": "PA", "type": "TEXT"}, {"name": "Last appearance", "type": "TEXT"}, {"name": "Last championship", "type": "TEXT"}, {"name": "HOME games", "type": "TEXT"}, {"name": "Home wins", "type": "TEXT"}, {"name": "Home losses", "type": "TEXT"}, {"name": "Home Win Pct.", "type": "TEXT"}, {"name": "ROAD games", "type": "TEXT"}, {"name": "Road wins", "type": "TEXT"}, {"name": "Road losses", "type": "TEXT"}, {"name": "Road Win Pct.", "type": "TEXT"}], "rows": [["15", "Pittsburgh Steelers", "8", "7", ".533", "332", "303", "2010", "2010", "11", "6", "5", ".545", "4", "2", "2", ".500"], ["11", "Los Angeles/Oakland Raiders", "4", "7", ".364", "202", "253", "2002", "2002", "5", "3", "2", ".600", "6", "1", "5", ".167"], ["9", "New England Patriots", "7", "2", ".777", "231", "176", "2012", "2011", "5", "4", "1", ".800", "4", "3", "1", ".750"], ["8", "Denver Broncos", "6", "2", ".750", "189", "166", "2005", "1998", "5", "4", "1", ".800", "3", "2", "1", ".667"], ["7", "Miami Dolphins", "5", "2", ".714", "152", "115", "1992", "1984", "6", "4", "2", ".667", "1", "1", "0", "1.000"], ["6", "Baltimore/Indianapolis Colts", "3", "3", ".500", "125", "133", "2009", "2009", "3", "3", "0", "1.000", "3", "0", "3", ".000"], ["5", "Buffalo Bills", "4", "1", ".800", "130", "54", "1993", "1993", "3", "3", "0", "1.000", "2", "1", "1", ".500"], ["4", "Baltimore Ravens", "2", "2", ".500", "78", "62", "2012", "2012", "0", "0", "0", "\u2014\u2013", "4", "2", "2", ".500"], ["4", "Houston Oilers/ Tennessee Titans", "1", "3", ".250", "75", "116", "2002", "1999", "0", "0", "0", "\u2014\u2013", "4", "1", "3", ".250"], ["4", "San Diego Chargers", "1", "3", ".250", "63", "95", "2007", "1994", "1", "0", "1", ".000", "3", "1", "2", ".333"], ["4", "New York Jets", "0", "4", ".000", "46", "91", "2010", "1968 **", "0", "0", "0", "\u2014\u2013", "4", "0", "4", ".000"], ["3", "Cleveland Browns", "0", "3", ".000", "74", "98", "1989", "1964 *", "1", "0", "1", ".000", "2", "0", "2", ".000"], ["2", "Cincinnati Bengals", "2", "0", "1.000", "48", "17", "1988", "1988", "2", "2", "0", "1.000", "0", "0", "0", "\u2014\u2013"], ["2", "Jacksonville Jaguars", "0", "2", ".000", "20", "53", "1999", "N/A", "1", "0", "1", ".000", "1", "0", "1", ".000"], ["1", "Kansas City Chiefs", "0", "1", ".000", "13", "30", "1993", "1969 ***", "0", "0", "0", "\u2014\u2013", "1", "0", "1", ".000"], ["1", "Seattle Seahawks c[\u203a ]", "0", "1", ".000", "14", "30", "1983", "N/A", "0", "0", "0", "\u2014\u2013", "1", "0", "1", ".000"], ["16", "Kansas City Chiefs", "9", "7", ".563", "362", "310", "2020", "2019", "8", "5", "3", ".625", "8", "4", "4", ".500"], ["16", "Atlanta Falcons", "4", "12", ".250", "298", "369", "2017", "none", "8", "4", "4", ".500", "8", "0", "8", ".000"], ["15", "Detroit Lions", "3", "12", ".200", "246", "340", "2016", "none", "8", "2", "6", ".250", "7", "1", "6", ".143"], ["15", "New York Giants", "6", "9", ".400", "310", "333", "2016", "2011", "7", "3", "4", ".429", "8", "3", "5", ".375"], ["16", "Carolina Panthers", "5", "11", ".313", "350", "437", "2020", "2015", "8", "4", "4", ".500", "8", "1", "7", ".125"], ["14", "Los Angeles Chargers", "6", "9", ".400", "258", "252", "2020", "none", "7", "3", "4", ".429", "7", "3", "4", ".429"], ["12", "Tampa Bay Buccaneers", "3", "9", ".250", "272", "354", "2007", "2003", "6", "2", "4", ".333", "6", "1", "5", ".167"], ["14", "Washington Football Team", "7", "7", ".500", "307", "307", "2020", "1991", "7", "5", "2", ".714", "7", "2", "5", ".286"], ["12", "Las Vegas Raiders", "5", "7", ".417", "290", "285", "2016", "1983", "6", "2", "4", ".333", "6", "3", "3", ".500"], ["16", "Chicago Bears", "8", "8", ".500", "350", "370", "2020", "1985", "8", "5", "3", ".625", "8", "3", "5", ".375"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Num", "Team", "W", "L", "PCT", "PF", "PA", "Last appearance", "Last championship", "HOME games", "Home wins", "Home losses", "Home Win Pct.", "ROAD games", "Road wins", "Road losses", "Road Win Pct."], "add_description": "The name of this table is NFL Team Records Table, and the headers of this table are Num,Team,W,L,PCT,PF,PA,Last appearance,Last championship,HOME games,Home wins,Home losses,Home Win Pct.,ROAD games,Road wins,Road losses,Road Win Pct..", "sql": {"query": "SELECT COUNT(*) FROM `NFL Team Records Table` WHERE PF='13' AND `Home losses` != '\u2014\u2013';", "length": 86}, "source": "wikisql"} +{"description": "Among deaths 106 000 how many is crude rate.", "label": ["91.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Population Dynamics Table", "table_info": {"columns": [{"name": "Period", "type": "TEXT"}, {"name": "Births", "type": "TEXT"}, {"name": "Deaths", "type": "TEXT"}, {"name": "Difference", "type": "TEXT"}, {"name": "Crude Birth Rate", "type": "TEXT"}, {"name": "Crude Death Rate", "type": "TEXT"}, {"name": "Natural Increase", "type": "TEXT"}, {"name": "Total Fertility Rate", "type": "TEXT"}, {"name": "Infant Mortality Rate", "type": "TEXT"}], "rows": [["1950 - 1955", "230 000", "114 000", "116 000", "238", "118", "120", "270", "905"], ["1955 - 1960", "372 000", "109 000", "263 000", "362", "106", "256", "380", "759"], ["1960 - 1965", "381 000", "106 000", "275 000", "328", "91", "237", "341", "669"], ["1965 - 1970", "490 000", "105 000", "385 000", "369", "79", "290", "409", "563"], ["1970 - 1975", "458 000", "92 000", "365 000", "302", "61", "241", "372", "441"], ["1975 - 1980", "317 000", "83 000", "233 000", "190", "50", "140", "258", "352"], ["1980 - 1985", "388 000", "92 000", "296 000", "216", "51", "165", "293", "299"], ["1985 - 1990", "389 000", "105 000", "284 000", "200", "54", "146", "245", "261"], ["1990 - 1995", "450 000", "124 000", "326 000", "215", "59", "155", "240", "243"], ["1995 - 2000", "443 000", "219 000", "225 000", "198", "98", "101", "220", "549"], ["2000 - 2005", "379 000", "209 000", "170 000", "163", "90", "73", "205", "285"], ["2005 - 2010", "311 000", "189 000", "122 000", "137", "83", "54", "180", "202"], ["2010 - 2015", "287 000", "168 000", "119 000", "127", "74", "53", "172", "168"], ["2015 - 2020", "267 000", "154 000", "113 000", "115", "67", "48", "163", "143"], ["2020 - 2025", "253 000", "143 000", "110 000", "104", "59", "45", "156", "124"], ["2025 - 2030", "238 000", "132 000", "106 000", "92", "51", "41", "149", "110"], ["2030 - 2035", "225 000", "121 000", "104 000", "83", "45", "38", "143", "98"], ["2035 - 2040", "214 000", "112 000", "102 000", "75", "39", "36", "137", "87"], ["2040 - 2045", "204 000", "104 000", "100 000", "68", "34", "33", "131", "77"], ["2045 - 2050", "196 000", "97 000", "99 000", "62", "30", "32", "126", "68"], ["2050 - 2055", "188 000", "91 000", "97 000", "58", "27", "31", "122", "61"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Period", "Births", "Deaths", "Difference", "Crude Birth Rate", "Crude Death Rate", "Natural Increase", "Total Fertility Rate", "Infant Mortality Rate"], "add_description": "The name of this table is Population Dynamics Table, and the headers of this table are Period,Births,Deaths,Difference,Crude Birth Rate,Crude Death Rate,Natural Increase,Total Fertility Rate,Infant Mortality Rate.", "sql": {"query": "SELECT COUNT(*) FROM `Population Dynamics Table` WHERE Deaths = '106 000' AND `Crude Death Rate` IS NOT NULL;", "length": 109}, "source": "wikisql"} +{"description": "Name the total number of represents for clary sermina delgado cid", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "contestants", "table_info": {"columns": [{"name": "Represents", "type": "TEXT"}, {"name": "Contestant", "type": "TEXT"}, {"name": "Age", "type": "TEXT"}, {"name": "Height (cm)", "type": "TEXT"}, {"name": "Height (ft)", "type": "TEXT"}, {"name": "Hometown", "type": "TEXT"}], "rows": [["Azua", "Aneliz Henr\u00edquez Soto", "24", "1.71", "5'7\"", "Santo Domingo"], ["Bonao", "Lorraine S\u00faarez Carmona", "21", "1.75", "5'9\"", "Bonao"], ["Comunidad Dominicana En EEUU", "Ashley P\u00e9rez Cabrera", "19", "1.70", "5'6\"", "Miami"], ["Distrito Nacional", "Elizabeth Qui\u00f1\u00f3nez Aroyo", "20", "1.71", "5'7\"", "Santo Domingo"], ["Haina", "Eve Tatiana Cruz Oviedo", "19", "1.72", "5'7\"", "Santo Domingo"], ["Imbert", "Nadia Caba Rodr\u00edguez", "22", "1.79", "5'10\"", "Santo Domingo"], ["Jarabacoa", "Clary Sermina Delgado Cid", "21", "1.75", "5'9\"", "Santiago de los Caballeros"], ["La Altagracia", "Marina Castro Medina", "20", "1.76", "5'9\"", "Santo Domingo"], ["La Romana", "Rosa Clarissa Ort\u00edz Melo", "23", "1.81", "5'11\"", "La Romana"], ["La Vega", "Endis de los Santos \u00c1lvarez", "24", "1.72", "5'7\"", "Los Alcarrizos"], ["Monte Plata", "Emeniris Tat\u00eds Guerra", "25", "1.72", "5'7\"", "Santo Domingo"], ["Neiba", "Walesca Torres Xavier", "21", "1.73", "5'8\"", "Santo Domingo"], ["Puerto Plata", "Joneydis Pe\u00f1a Vargas", "22", "1.83", "6'0\"", "Puerto Plata"], ["Salcedo", "Amanda Ure\u00f1a Zaragoza", "26", "1.70", "5'6\"", "Salcedo"], ["San Crist\u00f3bal", "Carmen Rosa Torres Lebr\u00f3n", "18", "1.72", "5'7\"", "San Crist\u00f3bal"], ["San Francisco de Macor\u00eds", "Mariel Garc\u00eda Estevez", "20", "1.78", "5'10\"", "Santo Domingo"], ["San Juan de la Maguana", "Carolina Polanco Ojeda", "24", "1.75", "5'9\"", "Santo Domingo"], ["Santiago", "Anna Hern\u00e1ndez Taveras", "18", "1.73", "5'8\"", "Santiago de los Caballeros"], ["Santo Domingo Norte", "Edilia Veras Inoa", "19", "1.69", "5'6\"", "Santiago de los Caballeros"], ["Azua", "Micaela P\u00e9rez Gonz\u00e1lez", "22", "1.70", "5'6\"", "Azua"], ["Bonao", "Renata Abreu De La Cruz", "21", "1.73", "5'8\"", "Bonao"], ["Comendador", "Karen Peralta Cuevas", "23", "1.75", "5'9\"", "Elias Pina"], ["Distrito Nacional", "Diana Vald\u00e9z Ure\u00f1a", "20", "1.68", "5'6\"", "Santo Domingo"], ["Hato Mayor", "Ana Emilia Tejeda Aquino", "19", "1.71", "5'7\"", "Hato Mayor"], ["Los Llanos", "Marisol Santana Santana", "24", "1.72", "5'7\"", "San Juan"], ["Maim\u00f3n", "Ver\u00f3nica Valdez S\u00e1nchez", "22", "1.76", "5'9\"", "Maim\u00f3n"], ["Nagua", "Damaris Castillo Grull\u00f3n", "20", "1.71", "5'7\"", "San Francisco de Macor\u00eds"], ["Sos\u00faa", "Gisselle Rodr\u00edguez Fern\u00e1ndez", "21", "1.75", "5'9\"", "Puerto Plata"], ["Villa Altagracia", "Catalina Mosquea Delgado", "23", "1.78", "5'10\"", "San Crist\u00f3bal"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Represents", "Contestant", "Age", "Height (cm)", "Height (ft)", "Hometown"], "add_description": "The name of this table is contestants, and the headers of this table are Represents,Contestant,Age,Height (cm),Height (ft),Hometown.", "sql": {"query": "SELECT COUNT(Represents) AS TotalRepresents FROM contestants WHERE Contestant = 'Clary Sermina Delgado Cid';", "length": 108}, "source": "wikisql"} +{"description": "how many locomotives are currently operational?", "label": ["3"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Locomotive Inventory", "table_info": {"columns": [{"name": "Number", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}, {"name": "Livery", "type": "TEXT"}, {"name": "Status", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["", "Brightside", "Yorkshire Engine Company 0-4-0", "Black", "Under Repair", "Currently dismantled for overhaul"], ["6", "Roger H. Bennett", "Yorkshire Engine Company \"Janus\" 0-6-0", "NCB Blue", "Operational", "~"], ["D2334", "", "Class 04", "Green", "Under Repair", "Stopped at Sep 2012 diesel gala after failure"], ["25322", "Tamworth Castle", "Class 25", "\"Ice Cream Van\" Blue", "Static Display", "built in 1967. Cosmetically restored in 2008"], ["33021", "Captain Charles", "Class 33", "Blue", "Operational", "built in 1960. On loan from Tysley"], ["33102", "Sophie (Unofficial)", "Class 33", "Blue", "Operational", "built in 1960. Launched Sep 2012 - restoration still being completed although the loco is now in service"], ["37407", "", "Class 37", "Transrail Grey", "Stored", "~"], ["37424", "", "Class 37", "Transrail Grey", "Stored", "~"], ["47524", "", "Class 47", "Rail Express Systems", "Under restoration", "~"], ["", "Victory", "Baldwin 2-8-0", "Black", "Static Display", "Built in 1943. Retired in 1967"], ["A4 Sir Nigel Gresley", "", "Class A4", "Blue", "Operational", "Designed by Sir Nigel Gresley for streamlined high-speed running. Built in 1937"], ["60103", "Flying Scotsman", "Class A3", "LNER Apple Green", "Operational", "Built in 1923. Made the first non-stop London to Edinburgh run and also toured North America in 1969-1972"], ["7820", "Dinmore Manor", "GWR 7800 Class", "Black", "Operational", "Built in 1950. Returned to service in 2018 after 23 years of restoration"], ["D4052", "", "Class 40122", "Green", "Stored", "Built in 1958. Retired in 1988 and saved for preservation"], ["D821 Greyhound", "", "Class 52", "Green", "Operational", "Built in 1961. Used on the Western Region of British Railways"], ["", "Tornado", "Peppercorn Class A1", "Apple Green", "Operational", "Built in 2008 as a replica of the original Tornado that was built in 1948"], ["60009", "Union of South Africa", "Class A4", "LNER Apple Green", "Operational", "Built in 1937. Named after the country in which it was built"], ["71000", "Duke of Gloucester", "Class 8P", "Brunswick Green", "Operational", "Built in 1954 for British Railways by the North British Locomotive Company"], ["92203", "Black Prince", "BR Standard Class 9F", "Black", "Operational", "Built in 1959. Used on the London Midland Region of British Railways"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Number", "Name", "Type", "Livery", "Status", "Notes"], "add_description": "The name of this table is Locomotive Inventory, and the headers of this table are Number,Name,Type,Livery,Status,Notes.", "sql": {"query": "SELECT COUNT(*) FROM `Locomotive Inventory` WHERE `Status` = 'Operational';", "length": 75}, "source": "wikitq"} +{"description": "how many games did the badgers play in october?", "label": ["4"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Football Schedule", "table_info": {"columns": [{"name": "Date", "type": "DATE"}, {"name": "Time", "type": "TIME"}, {"name": "Opponent#", "type": "TEXT"}, {"name": "Rank#", "type": "TEXT"}, {"name": "Site", "type": "TEXT"}, {"name": "TV", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["September 1", "2:30 PM", "#9 (FCS)\u00a0Northern Iowa*", "#12", "Camp Randall Stadium \u2022 Madison, WI", "BTN", "W\u00a026\u201321", "79,568"], ["September 8", "3:00 PM", "at\u00a0Oregon State*", "#13", "Reser Stadium \u2022 Corvallis, OR", "FX", "L\u00a07\u201310", "42,189"], ["September 15", "7:00 PM", "Utah State*", "#22", "Camp Randall Stadium \u2022 Madison, WI", "BTN", "W\u00a016\u201314", "79,332"], ["September 22", "11:00 AM", "UTEP*", "#24", "Camp Randall Stadium \u2022 Madison, WI", "ESPN2", "W\u00a037\u201326", "79,806"], ["September 29", "7:00 PM", "at\u00a0#20\u00a0Nebraska", "#23", "Memorial Stadium \u2022 Lincoln, NE", "ABC", "L\u00a027\u201330", "85,962"], ["October 6", "2:30 PM", "Illinois", "", "Camp Randall Stadium \u2022 Madison, WI", "ABC/ESPN2", "W\u00a031\u201314", "80,096"], ["October 13", "11:00 AM", "at\u00a0Purdue", "", "Ross-Ade Stadium \u2022 West Lafayette, IN", "BTN", "W\u00a038\u201314", "46,007"], ["October 20", "11:00 AM", "Minnesota", "", "Camp Randall Stadium \u2022 Madison, WI (Paul Bunyan's Axe)", "ESPNU", "W\u00a038\u201313", "80,587"], ["October 27", "2:30 PM", "Michigan State", "#25", "Camp Randall Stadium \u2022 Madison, WI", "ABC/ESPN2", "L\u00a013\u201316\u00a0OT", "80,538"], ["November 10", "11:00 AM", "at\u00a0Indiana", "", "Memorial Stadium \u2022 Bloomington, IN", "ESPN2", "W\u00a062\u201314", "43,240"], ["November 17", "2:30 PM", "Ohio State", "", "Camp Randall Stadium \u2022 Madison, WI", "ABC/ESPN2", "L\u00a014\u201321\u00a0OT", "80,112"], ["November 24", "2:30 PM", "at\u00a0Penn State", "", "Beaver Stadium \u2022 University Park, PA", "ESPN2", "L\u00a021\u201324\u00a0OT", "93,505"], ["December 1", "7:00 PM", "vs.\u00a0#14\u00a0Nebraska", "", "Lucas Oil Stadium \u2022 Indianapolis, IN (Big Ten Championship Game)", "FOX", "W\u00a070\u201331", "41,260"], ["January 1, 2013", "4:10 PM", "vs.\u00a0#8\u00a0Stanford", "#23", "Rose Bowl \u2022 Pasadena, CA (Rose Bowl)", "ESPN", "L\u00a014\u201320", "93,259"], ["January 2", "7:30 PM", "Texas A&M*", "#10", "AT&T Stadium \u2022 Arlington, TX", "CBS", "W 28-24", "65,876"], ["January 13", "8:00 PM", "vs.\u00a0#1\u00a0Alabama", "#2", "Mercedes-Benz Superdome \u2022 New Orleans, LA (BCS Championship Game)", "ESPN", "W\u00a013-7", "78,237"], ["August 31", "7:00 PM", "UMass*", "#5", "Autzen Stadium \u2022 Eugene, OR", "PAC-12N", "W 68-7", "53,543"], ["September 7", "4:00 PM", "Nevada*", "#7", "Autzen Stadium \u2022 Eugene, OR", "PAC-12N", "W 62-7", "54,415"], ["September 14", "5:00 PM", "Tennessee*", "#4", "Autzen Stadium \u2022 Eugene, OR", "ABC", "W 59-14", "58,104"], ["September 21", "5:00 PM", "Cal*", "#2", "California Memorial Stadium \u2022 Berkeley, CA", "FOX", "W 55-16", "57,371"], ["September 28", "3:30 PM", "at\u00a0Colorado", "#2", "Folsom Field \u2022 Boulder, CO", "PAC-12N", "W 57-7", "50,298"], ["October 5", "2:00 PM", "Washington State", "#2", "Autzen Stadium \u2022 Eugene, OR", "PAC-12N", "W 63-14", "57,123"], ["October 12", "5:00 PM", "at\u00a0#16\u00a0Washington", "#2", "Husky Stadium \u2022 Seattle, WA (UW\u2013UO rivalry)", "FOX", "L\u00a017-13", "71,853"], ["October 19", "5:00 PM", "Washington State", "#12", "Martin Stadium \u2022 Pullman, WA", "ESPN", "W 62-38", "38,592"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Date", "Time", "Opponent#", "Rank#", "Site", "TV", "Result", "Attendance"], "add_description": "The name of this table is Football Schedule, and the headers of this table are Date,Time,Opponent#,Rank#,Site,TV,Result,Attendance.", "sql": {"query": "SELECT COUNT(*) FROM `Football Schedule` WHERE Date LIKE 'October%';", "length": 68}, "source": "wikitq"} +{"description": "what is the total number of websites listed?", "label": ["17"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Educational Websites Table", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Topic", "type": "TEXT"}, {"name": "Cost", "type": "TEXT"}, {"name": "Target age", "type": "TEXT"}, {"name": "Advertising", "type": "TEXT"}], "rows": [["Ask A Biologist", "Biology", "Free", "5+", "None"], ["Archimedes-lab.org", "Mathematics", "Free", "10+", "Yes - limited"], ["Awesome Library", "All", "Free", "All", "Yes - large"], ["Bitesize by the BBC", "Art & Design, Business Studies, Design & Technology, DiDA, Drama, English, English Literature, French, Geography, German, History, ICT, Irish, Maths, Music, Physical Education, Religious Studies, Science, Spanish", "Free", "5-16", "None"], ["BrainPop", "Science, Social studies, English, Maths, Art & Music, Health, Technology", "from US$75/year", "4-17", "None"], ["Cut-the-Knot", "Maths", "Free", "8+", "Yes - extensive"], ["Fact Monster", "World & News, U.S., People, English, Science, Math & Money, Sports", "Free", "4-14 (K-8)", "Yes"], ["Geometry from the Land of the Incas", "Geometry", "Free", "12+", "Yes - extensive"], ["HackMath.net", "Mathematics", "Free", "9-18", "None"], ["HyperPhysics", "Physics", "Free", "15+", "None"], ["IXL", "Math", "$80/year", "4-12", "?"], ["Le Patron", "French", "Free", "12+", "Yes"], ["LearnAlberta.ca", "Everything (mainly aimed at teachers)", "Free", "5-18", "No"], ["Nafham", "Multidisciplinary 5-20min K-12 school video lessons for Arabic students", "Free", "6-18", "Yes"], ["Starfall.com", "Reading", "Free", "2-9", "None"], ["Smartygames.com", "Math Games, Reading, Art, Word Scramble, Spanish, Puzzles, Kids Sudoku and more", "Free", "2-9", "None"], ["WatchKnowLearn", "All", "Free", "2-17", "None"], ["Science Buddies", "Science", "Free", "9-16", "Yes - limited"], ["Brainly", "All", "Free", "13-18", "Yes - large"], ["Khan Academy", "All", "Free", "8+", "None"], ["Scholastic Learn at Home", "All", "Free", "PreK-9", "None"], ["FunBrain", "Math, Reading, Other", "Free", "PreK-8", "None"], ["Study Island", "Math, ELA, Science, Social Studies", "$15/month", "K-12", "Yes - limited"], ["Mystery Science", "Science", "Free", "K-5", "Yes - limited"], ["Star Wars in the Classroom", "STEM, ELA, Social Studies", "Free", "K-12", "No"], ["WolframAlpha", "Computational Knowledge", "$4.99/month", "All", "None"], ["Quizlet", "All", "Free", "All", "Yes - limited"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Name", "Topic", "Cost", "Target age", "Advertising"], "add_description": "The name of this table is Educational Websites Table, and the headers of this table are Name,Topic,Cost,Target age,Advertising.", "sql": {"query": "SELECT COUNT(*) AS total_websites FROM \"Educational Websites Table\";", "length": 68}, "source": "wikitq"} +{"description": "How many college teams have a player with a nationality of Russia?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "NHL_draft_picks", "table_info": {"columns": [{"name": "Pick", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "NHL team", "type": "TEXT"}, {"name": "College/junior/club team", "type": "TEXT"}], "rows": [["136", "Andreas Dackell", "Right Wing", "Sweden", "Ottawa Senators", "Bryn\u00e4s IF (Sweden)"], ["137", "Michel Larocque", "Goaltender", "Canada", "San Jose Sharks", "Boston University (NCAA)"], ["138", "Todd Miller", "Centre", "Canada", "New York Islanders", "Sarnia Sting (OHL)"], ["139", "Robert Esche", "Goaltender", "United States", "Winnipeg Jets (from Los Angeles)", "Detroit Whalers (OHL)"], ["140", "Dmitriy Yakushin", "Defence", "Ukraine", "Toronto Maple Leafs (from Dallas)", "Pembroke (COJHL)"], ["141", "Bryan Randall", "Centre", "Canada", "Edmonton Oilers", "Medicine Hat Tigers (WHL)"], ["142", "Ryan Davis", "Right Wing", "Canada", "Buffalo Sabres", "Owen Sound Platers (OHL)"], ["143", "Aaron Baker", "Goaltender", "Canada", "Hartford Whalers", "Kennewick Tri-City Americans (WHL)"], ["144", "Magnus Nilsson", "Left Wing", "Sweden", "Detroit Red Wings (from Anaheim)", "IK Vita Hasten (Sweden)"], ["145", "Sean Ritchlin", "Right Wing", "United States", "New Jersey Devils", "University of Michigan (NCAA)"], ["146", "Brian Willsie", "Right Wing", "Canada", "Colorado Avalanche (from Winnipeg via Los Angeles)", "Guelph Storm (OHL)"], ["147", "Nolan McDonald", "Goaltender", "Canada", "Vancouver Canucks", "University of Vermont (NCAA)"], ["148", "Chris Bogas", "Defence", "United States", "Toronto Maple Leafs (from Calgary)", "Michigan State University (NCAA)"], ["149", "Blaine Russell", "Goaltender", "Canada", "Mighty Ducks of Anaheim (from St. Louis)", "Prince Albert Raiders (WHL)"], ["150", "Peter Bergman", "Centre", "Canada", "Pittsburgh Penguins (compensatory)", "Kamloops Blazers (WHL)"], ["151", "Lucio DeMartinis", "Left Wing", "Canada", "Toronto Maple Leafs", "Shawinigan Cataractes (QMJHL)"], ["152", "Nikolai Ignatov", "Defence", "Russia", "Tampa Bay Lightning (from Tampa Bay via St. Louis)", "CSKA Moscow (Russia)"], ["153", "A. J. van Bruggen", "Right Wing", "United States", "Washington Capitals", "Northern Michigan University (NCAA)"], ["154", "Brett Clark", "Defence", "Canada", "Montreal Canadiens", "University of Maine (NCAA)"], ["155", "Chris Lane", "Defence", "Canada", "Boston Bruins", "Spokane Chiefs (WHL)"], ["156", "Gaetan Poirier", "Left Wing", "Canada", "Florida Panthers", "Merrimack College (NCAA)"], ["157", "Xavier Delisle", "Centre", "Canada", "Tampa Bay Lightning (from Chicago)", "Granby Pr\u00e9dateurs (QMJHL)"], ["158", "Ola Sandberg", "Defence", "Sweden", "New York Rangers", "Djurgardens IF (Sweden)"], ["159", "Stephen Wagner", "Goaltender", "Canada", "St. Louis Blues (from Pittsburgh)", "Olds Grizzlys ( AJHL )"], ["160", "Kai Fischer", "Goaltender", "Germany", "Colorado Avalanche (from Philadelphia)", "D\u00fcsseldorfer EG (Germany)"], ["161", "Darren Mortier", "Centre", "Canada", "Buffalo Sabres (from Colorado)", "Sarnia Sting (OHL)"], ["1", "John Smith", "Left Wing", "Canada", "New York Rangers", "University of Manitoba (CIS)"], ["2", "Peter Lee", "Right Wing", "United States", "Pittsburgh Penguins", "Northern Michigan University (NCAA)"], ["3", "Thomas Wilson", "Defence", "United States", "Washington Capitals", "Oshawa Generals (OHL)"], ["4", "Jannik Hansen", "Left Wing", "Denmark", "Vancouver Canucks", "Portland Winterhawks (WHL)"], ["5", "Pavel Datsyuk", "Centre", "Russia", "Detroit Red Wings", "Sibir Novosibirsk (Russia)"], ["6", "Jaromir Jagr", "Right Wing", "Czech Republic", "Florida Panthers", "HC Kladno (Czech Republic)"], ["7", "Evgeni Malkin", "Centre", "Russia", "Pittsburgh Penguins", "Metallurg Magnitogorsk (Russia)"], ["8", "Henrik Lundqvist", "Goaltender", "Sweden", "New York Rangers", "Frolunda HC (Sweden)"], ["9", "Wayne Gretzky", "Centre", "Canada", "Edmonton Oilers", "Sault Ste. Marie Greyhounds (OHL)"], ["10", "Bobby Orr", "Defence", "Canada", "Boston Bruins", "Oshawa Generals (OHL)"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Pick", "Player", "Position", "Nationality", "NHL team", "College/junior/club team"], "add_description": "The name of this table is NHL_draft_picks, and the headers of this table are Pick,Player,Position,Nationality,NHL team,College/junior/club team.", "sql": {"query": "SELECT COUNT(DISTINCT `College/junior/club team`) FROM `NHL_draft_picks` WHERE `Nationality` = 'Russia';", "length": 104}, "source": "wikisql"} +{"description": "what is the total number of films he has made?", "label": ["15"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Film Ratings", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Film", "type": "TEXT"}, {"name": "Rotten Tomatoes", "type": "TEXT"}, {"name": "Metacritic", "type": "TEXT"}, {"name": "IMDb", "type": "TEXT"}], "rows": [["1982", "Images of Liberation", "N/A", "N/A", "5.1/10"], ["1984", "The Element of Crime", "77%", "N/A", "6.9/10"], ["1987", "Epidemic", "33%", "66%", "6.1/10"], ["1991", "Europa", "85%", "66%", "7.7/10"], ["1996", "Breaking the Waves", "86%", "76%", "7.9/10"], ["1998", "The Idiots", "70%", "47%", "6.9/10"], ["2000", "Dancer in the Dark", "68%", "61%", "8.0/10"], ["2003", "The Five Obstructions", "88%", "79%", "7.5/10"], ["2003", "Dogville", "70%", "59%", "8.0/10"], ["2005", "Manderlay", "51%", "46%", "7.4/10"], ["2006", "The Boss of It All", "74%", "71%", "6.7/10"], ["2009", "Antichrist", "48%", "49%", "6.6/10"], ["2011", "Melancholia", "77%", "80%", "7.1/10"], ["2013", "Nymphomaniac: Volume I", "77%", "63%", "7.5/10"], ["2013", "Nymphomaniac: Volume II", "79%", "76%", "7.2/10"], ["2022", "The New Beginning", "N/A", "N/A", "N/A"], ["2023", "The Second Act", "80%", "85%", "8.5/10"], ["2024", "The Last Chance", "65%", "60%", "7.2/10"], ["2025", "The Final Possibility", "N/A", "78%", "6.9/10"], ["2026", "The Ultimate Solution", "90%", "82%", "9.0/10"], ["2027", "The Great Adventure", "N/A", "N/A", "6.5/10"], ["2028", "The Grand Pursuit", "73%", "69%", "7.8/10"], ["2029", "The Epic Journey", "N/A", "N/A", "8.2/10"], ["2030", "The Ultimate Test", "85%", "80%", "8.9/10"], ["2031", "The Endgame", "N/A", "N/A", "N/A"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Year", "Film", "Rotten Tomatoes", "Metacritic", "IMDb"], "add_description": "The name of this table is Film Ratings, and the headers of this table are Year,Film,Rotten Tomatoes,Metacritic,IMDb.", "sql": {"query": "SELECT COUNT(*) FROM `film ratings`;", "length": 36}, "source": "wikitq"} +{"description": "how many nations won no silver medals at all?", "label": ["11"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Olympic Medal Table", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "INT"}, {"name": "Silver", "type": "INT"}, {"name": "Bronze", "type": "INT"}, {"name": "Total", "type": "INT"}], "rows": [["1", "China\u00a0(CHN)", "14", "10", "12", "36"], ["2", "Thailand\u00a0(THA)", "13", "9", "6", "28"], ["3", "South Korea\u00a0(KOR)", "6", "7", "10", "23"], ["4", "Indonesia\u00a0(INA)", "6", "6", "4", "16"], ["5", "Chinese Taipei\u00a0(TPE)", "3", "6", "6", "15"], ["6", "India\u00a0(IND)", "2", "0", "1", "3"], ["7", "Iran\u00a0(IRI)", "2", "0", "0", "2"], ["8", "Japan\u00a0(JPN)", "1", "3", "2", "6"], ["9", "Afghanistan\u00a0(AFG)", "1", "0", "0", "1"], ["9", "Qatar\u00a0(QAT)", "1", "0", "0", "1"], ["11", "Philippines\u00a0(PHI)", "0", "2", "2", "4"], ["12", "Vietnam\u00a0(VIE)", "0", "2", "1", "3"], ["13", "Kazakhstan\u00a0(KAZ)", "0", "1", "1", "2"], ["13", "Pakistan\u00a0(PAK)", "0", "1", "1", "2"], ["15", "Bahrain\u00a0(BRN)", "0", "1", "0", "1"], ["15", "Turkmenistan\u00a0(TKM)", "0", "1", "0", "1"], ["17", "Sri Lanka\u00a0(SRI)", "0", "0", "2", "2"], ["18", "Bangladesh\u00a0(BAN)", "0", "0", "1", "1"], ["18", "Brunei\u00a0(BRU)", "0", "0", "1", "1"], ["18", "Laos\u00a0(LAO)", "0", "0", "1", "1"], ["18", "Mongolia\u00a0(MGL)", "0", "0", "1", "1"], ["18", "Palestine\u00a0(PLE)", "0", "0", "1", "1"], ["18", "Singapore\u00a0(SIN)", "0", "0", "1", "1"], ["Total", "Total", "49", "49", "54", "152"], ["1", "United States\u00a0(USA)", "20", "25", "18", "63"], ["2", "China\u00a0(CHN)", "16", "18", "22", "56"], ["3", "Russia\u00a0(RUS)", "15", "22", "13", "50"], ["4", "Australia\u00a0(AUS)", "13", "11", "14", "38"], ["5", "Japan\u00a0(JPN)", "9", "12", "14", "35"], ["6", "Britain\u00a0(GBR)", "7", "9", "13", "29"], ["7", "South Korea\u00a0(KOR)", "6", "6", "11", "23"], ["8", "Germany\u00a0(GER)", "6", "4", "4", "14"], ["9", "France\u00a0(FRA)", "5", "10", "6", "21"], ["10", "Netherlands\u00a0(NED)", "5", "5", "10", "20"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medal Table, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "sql": {"query": "SELECT COUNT(*) FROM `Olympic Medal Table` WHERE Silver = 0;", "length": 60}, "source": "wikitq"} +{"description": "How many award-winning films have the opening film of encounters at the end of the world?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "International Documentary Film Festival Amsterdam (IDFA)", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Date (Opening)", "type": "TEXT"}, {"name": "Date (Closing)", "type": "TEXT"}, {"name": "Opening Film", "type": "TEXT"}, {"name": "Number of Screening", "type": "TEXT"}, {"name": "Award-Winning Film", "type": "TEXT"}], "rows": [["2004", "August 30", "September 5", "Deconstruction of Korean Housewife", "129 films 99 televised", "Last Home Standing"], ["2005", "August 29", "September 4", "Another Myanmar, Mae Sot", "98 films 94 televised", "Bunso \u2013 The Youngest"], ["2006", "July 10", "July 16", "The Journey of Vaan Nguyen", "83 films 83 televised", "Out of Bounds"], ["2007", "August 27", "September 2", "Heimatkl\u00e4nge", "58 films 54 televised", "Puujee"], ["2008", "September 22", "September 28", "Encounters at the End of the World", "43 films 43 televised", "If We Knew"], ["2009", "September 21", "September 27", "Google Baby", "50 films 50 televised", "Unmistaken"], ["2010", "August 23", "August 29", "Planet of Snail", "49 films 49 televised", "Last Train Home"], ["2011", "August 19", "August 25", "How Are You Doing, Rudolf Ming?", "51 films 43 televised", "Marathon Boy"], ["2012", "August 27", "September 2", "Ai Weiwei: Never Sorry", "45 films 45 televised", "The Law in These Parts"], ["2013", "September 2", "September 8", "The Act of Killing", "36 films 36 televised", "American Promise"], ["2014", "August 25", "August 31", "The Overnighters", "39 films 39 televised", "Between Seas"], ["2015", "August 31", "September 6", "The Look of Silence", "32 films 32 televised", "Foreigners Out! Schlingensiefs Container"], ["2016", "August 29", "September 4", "Tower", "27 films 27 televised", "Babylon Dreamers"], ["2017", "August 28", "September 3", "Makala", "31 films 31 televised", "Rocking Poponguine"], ["2018", "August 27", "September 2", "Of Fathers and Sons", "30 films 30 televised", "Martyr"], ["2019", "August 26", "September 1", "Midnight Family", "29 films 29 televised", "Thousands Are Sailing"], ["2020", "August 24", "August 30", "Gunda", "28 films 28 televised", "Downstream to Kinshasa"], ["2021", "August 23", "August 29", "Flee", "27 films 27 televised", "Faith Love Desire"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Year", "Date (Opening)", "Date (Closing)", "Opening Film", "Number of Screening", "Award-Winning Film"], "add_description": "The name of this table is International Documentary Film Festival Amsterdam (IDFA), and the headers of this table are Year,Date (Opening),Date (Closing),Opening Film,Number of Screening,Award-Winning Film.", "sql": {"query": "SELECT COUNT(*) FROM `International Documentary Film Festival Amsterdam (IDFA)` WHERE `Opening Film` = 'Encounters at the End of the World' AND `Award-Winning Film` IS NOT NULL;", "length": 177}, "source": "wikisql"} +{"description": "what is the total number of participants between norway and france?", "label": ["7"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Biathlon Results Table", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Bib", "type": "INTEGER"}, {"name": "Name", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Start", "type": "TEXT"}, {"name": "Penalties (P+P+S+S)", "type": "TEXT"}, {"name": "Time", "type": "TEXT"}, {"name": "Deficit", "type": "TEXT"}], "rows": [["", "1", "Emil Hegle Svendsen", "Norway", "0:00", "1 (0+0+0+1)", "32:35.5", ""], ["", "2", "Martin Fourcade", "France", "0:08", "2 (0+1+1+0)", "32:35.6", "+0.1"], ["", "7", "Anton Shipulin", "Russia", "0:33", "1 (0+0+1+0)", "32:39.1", "+3.6"], ["4", "5", "Dmitry Malyshko", "Russia", "0:23", "0 (0+0+0+0)", "32:40.9", "+5.4"], ["5", "15", "Dominik Landertinger", "Austria", "0:58", "0 (0+0+0+0)", "32:55.9", "+20.4"], ["6", "3", "Jakov Fak", "Slovenia", "0:11", "1 (0+0+0+1)", "33:05.2", "+29.7"], ["7", "8", "Fredrik Lindstr\u00f6m", "Sweden", "0:38", "1 (0+0+1+0)", "33:18.9", "+43.4"], ["8", "6", "Alexis B\u0153uf", "France", "0:25", "2 (0+0+2+0)", "33:22.1", "+46.6"], ["9", "13", "Bj\u00f6rn Ferry", "Sweden", "0:52", "0 (0+0+0+0)", "33:23.6", "+48.1"], ["10", "4", "Ole Einar Bj\u00f8rndalen", "Norway", "0:20", "4 (2+0+1+1)", "33:27.0", "+51.5"], ["11", "14", "Lukas Hofer", "Italy", "0:57", "2 (0+2+0+0)", "33:28.8", "+53.3"], ["12", "10", "Simon Eder", "Austria", "0:39", "3 (0+0+2+1)", "33:50.5", "+1:15.0"], ["13", "32", "Lowell Bailey", "United States", "1:38", "0 (0+0+0+0)", "33:56.4", "+1:20.9"], ["14", "12", "Erik Lesser", "Germany", "0:49", "4 (1+0+2+1)", "34:06.0", "+1:30.5"], ["15", "36", "Jean-Philippe Leguellec", "Canada", "1:45", "1 (0+0+0+1)", "34:08.7", "+1:33.2"], ["16", "9", "Evgeny Ustyugov", "Russia", "0:38", "3 (0+1+2+0)", "34:16.7", "+1:41.2"], ["17", "18", "Tarjei B\u00f8", "Norway", "1:14", "3 (2+0+1+0)", "34:18.9", "+1:43.4"], ["18", "29", "Simon Schempp", "Germany", "1:36", "1 (0+0+0+1)", "34:24.4", "+1:48.9"], ["19", "11", "Krasimir Anev", "Bulgaria", "0:48", "2 (0+1+0+1)", "34:24.7", "+1:49.2"], ["20", "37", "Henrik L'Abee-Lund", "Norway", "1:45", "1 (0+0+0+1)", "34:36.1", "+2:00.6"], ["21", "16", "Arnd Peiffer", "Germany", "1:08", "3 (0+0+2+1)", "34:39.8", "+2:04.3"], ["22", "23", "Andreas Birnbacher", "Germany", "1:25", "3 (0+1+1+1)", "34:41.7", "+2:06.2"], ["23", "34", "Simon Fourcade", "France", "1:42", "3 (0+3+0+0)", "34:51.1", "+2:15.6"], ["24", "21", "Klemen Bauer", "Slovenia", "1:16", "4 (1+0+3+0)", "34:55.4", "+2:19.9"], ["25", "26", "Christian De Lorenzi", "Italy", "1:30", "1 (0+0+0+1)", "34:57.5", "+2:22.0"], ["26", "20", "Jean-Guillaume B\u00e9atrix", "France", "1:15", "4 (0+1+2+1)", "34:58.4", "+2:22.9"], ["27", "33", "Daniel Mesotitsch", "Austria", "1:39", "3 (0+0+2+1)", "34:58.7", "+2:23.2"], ["28", "19", "Evgeniy Garanichev", "Russia", "1:14", "5 (2+0+2+1)", "35:04.2", "+2:28.7"], ["29", "30", "Matej Kaz\u00e1r", "Slovakia", "1:36", "5 (2+1+1+1)", "35:04.9", "+2:29.4"], ["30", "17", "Andriy Deryzemlya", "Ukraine", "1:13", "4 (0+0+2+2)", "35:05.3", "+2:29.8"], ["31", "35", "Ond\u0159ej Moravec", "Czech Republic", "1:42", "3 (0+1+1+1)", "35:05.3", "+2:48.2"], ["32", "28", "Tim Burke", "United States", "1:36", "4 (0+1+2+1)", "35:33.8", "+2:58.3"], ["33", "58", "Dominik Windisch", "Italy", "2:31", "2 (0+0+1+1)", "35:36.4", "+3:00.9"], ["34", "54", "Carl Johan Bergman", "Sweden", "2:19", "2 (0+0+1+1)", "35:37.0", "+3:01.5"], ["35", "25", "Benjamin Weger", "Switzerland", "1:28", "3 (0+1+1+1)", "36:13.1", "+3:37.6"], ["36", "42", "Artem Pryma", "Ukraine", "1:59", "3 (1+2+0+0)", "36:13.2", "+3:37.7"], ["37", "50", "Pavol Hurajt", "Slovakia", "2:14", "2 (0+1+0+1)", "36:18.9", "+3:43.4"], ["38", "22", "Tomas Kauk\u0117nas", "Lithuania", "1:20", "4 (0+0+2+2)", "36:33.4", "+3:57.9"], ["39", "43", "Vladimir Iliev", "Bulgaria", "2:03", "5 (1+1+2+1)", "36:43.4", "+4:07.9"], ["40", "40", "Edgars Piksons", "Latvia", "1:55", "4 (1+0+2+1)", "36:49.8", "+4:14.3"], ["41", "60", "Christian Martinelli", "Italy", "2:36", "2 (1+0+0+1)", "36:53.0", "+4:17.5"], ["42", "27", "Jaroslav Soukup", "Czech Republic", "1:32", "6 (2+2+2+0)", "36:59.8", "+4:24.3"], ["43", "53", "Leif Nordgren", "United States", "2:19", "6 (2+2+2+0)", "37:08.3", "+4:32.8"], ["44", "56", "Hidenori Isa", "Japan", "2:27", "2 (0+0+0+2)", "37:13.9", "+4:38.4"], ["45", "41", "Serhiy Semenov", "Ukraine", "1:55", "5 (3+1+1+0)", "37:14.0", "+4:38.5"], ["46", "24", "Zden\u011bk V\u00edtek", "Czech Republic", "1:25", "7 (2+2+1+2)", "37:21.0", "+4:45.5"], ["47", "49", "Milanko Petrovi\u0107", "Serbia", "2:14", "6 (2+2+2+0)", "37:26.6", "+4:51.1"], ["48", "31", "Kauri K\u00f5iv", "Estonia", "1:37", "6 (2+1+2+1)", "37:29.9", "+4:54.4"], ["49", "47", "Yan Savitskiy", "Kazakhstan", "2:11", "5 (2+2+0+1)", "37:51.8", "+5:16.3"], ["50", "45", "Scott Gow", "Canada", "2:06", "5 (0+0+1+4)", "37:57.4", "+5:21.9"], ["51", "48", "Claudio B\u00f6ckli", "Switzerland", "2:13", "3 (2+0+0+1)", "38:02.8", "+5:27.3"], ["52", "44", "Russell Currier", "United States", "2:05", "7 (3+1+2+1)", "38:06.2", "+5:30.7"], ["53", "57", "Vladimir Chepelin", "Belarus", "2:28", "4 (0+1+2+1)", "38:06.5", "+5:31.0"], ["54", "46", "Aliaksandr Babchyn", "Belarus", "2:06", "6 (3+2+1+0)", "38:19.8", "+5:44.3"], ["55", "59", "Miroslav Matia\u0161ko", "Slovakia", "2:36", "6 (3+0+2+1)", "38:54.6", "+6:19.1"], ["56", "38", "Jarkko Kauppinen", "Finland", "1:46", "6 (1+1+3+1)", "39:06.6", "+6:31.1"], ["57", "51", "Junji Nagai", "Japan", "2:17", "7 (0+2+3+2)", "39:49.9", "+7:14.4"], ["", "55", "Stefan Gavrila", "Romania", "2:25", "10 (4+3+3)", "LAP", ""], ["", "39", "Sergei Sednev", "Ukraine", "1:54", "", "DNS", ""], ["", "52", "Michal \u0160lesingr", "Czech Republic", "2:18", "", "DNS", ""], ["", "27", "Simon Desthieux", "France", "0:00", "1 (0+0+1+0)", "32:25.0", ""], ["", "5", "Johannes Thingnes B\u00f8", "Norway", "0:10", "0 (0+0+0+0)", "32:28.8", "+3.8"], ["", "18", "Julian Eberhard", "Austria", "0:27", "2 (0+1+0+1)", "32:33.5", "+8.5"], ["4", "11", "Tarjei B\u00f8", "Norway", "0:22", "3 (1+0+2+0)", "32:37.1", "+12.1"], ["5", "9", "Martin Fourcade", "France", "0:35", "2 (0+1+1+0)", "32:41.8", "+16.8"], ["6", "14", "Simon Schempp", "Germany", "0:43", "1 (0+0+0+1)", "32:45.9", "+20.9"], ["7", "3", "Anton Shipulin", "Russia", "1:00", "1 (0+0+1+0)", "32:49.4", "+24.4"], ["8", "23", "Maxime Laheurte", "France", "1:15", "0 (0+0+0+0)", "33:05.1", "+40.1"], ["9", "42", "Quentin Fillon Maillet", "France", "1:30", "2 (0+1+0+1)", "33:13.5", "+48.5"], ["10", "7", "Jakov Fak", "Slovenia", "0:55", "2 (0+1+0+1)", "33:20.0", "+54.0"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Rank", "Bib", "Name", "Nationality", "Start", "Penalties (P+P+S+S)", "Time", "Deficit"], "add_description": "The name of this table is Biathlon Results Table, and the headers of this table are Rank,Bib,Name,Nationality,Start,Penalties (P+P+S+S),Time,Deficit.", "sql": {"query": "SELECT COUNT(*) FROM `Biathlon Results Table` WHERE Nationality IN ('Norway', 'France');", "length": 88}, "source": "wikitq"} +{"description": "give the total of trains that run daily", "label": ["17"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Train Schedule", "table_info": {"columns": [{"name": "Sr. No.", "type": "INT"}, {"name": "Train No.", "type": "INT"}, {"name": "Name of the Train", "type": "TEXT"}, {"name": "Arrival", "type": "TIME"}, {"name": "Departure", "type": "TIME"}, {"name": "Day", "type": "TEXT"}], "rows": [["1.", "18238", "Chhatisgarh Express", "01:23", "01:25", "Daily"], ["2.", "12160", "Jabalpur-Amravati SF", "04:51", "04:53", "Daily"], ["3.", "51294", "Amla-Nagpur Pass", "06:39", "06:40", "Daily"], ["4.", "12913", "Indore-Nag Tri. Exp", "06:49", "06:51", "M"], ["5.", "19301", "Indore-Yashwantpur Exp", "07:20", "07:25", "M"], ["6.", "12406", "Nizamuddin-Bhusaval Gondwana Exp", "07:25", "07:27", "M,St"], ["7.", "12410", "Nizamuddin-Raigarh Gondwana Exp", "07:25", "07:27", "S,M,Tu,W,T,F"], ["8.", "51151", "New Amravati-Narkhed Pass", "08:30", "N/a", "Daily"], ["9.", "22112", "Nagpur-Bhusaval SF", "08:37", "08:39", "M,T,St"], ["10.", "11045", "Dikshsabhoomi Exp", "08:53", "08:55", "St"], ["11.", "16359", "Ernakulam-Patna Exp", "08:53", "08:55", "M"], ["12.", "51829", "Nagpur-Agra Pass", "09:41", "09:42", "Daily"], ["13.", "12861", "Visakapatnam-Nizamuddin", "10:43", "10:44", "Daily"], ["14.", "12721", "Dakshin Express", "10:43", "10:44", "Daily"], ["15.", "12616", "Grand Trunk(GT) Exp", "10:49", "10:51", "Daily"], ["16.", "19714", "Sec-Jaipur Exp", "11:58", "12:00", "Tu"], ["17.", "11203", "Nagpur-Jaipur Weekly Express", "13:03", "13:05", "T"], ["18.", "12615", "Grand Trunk(GT) Exp", "13:30", "13:32", "Daily"], ["19.", "12405", "Bhusaval-H.Nizamuddin Gondwana Exp", "14:08", "14:10", "S,Tu,"], ["20.", "12409", "Raigarh-H.Nizamuddin- Gondwana Exp", "14:08", "14:10", "M,W,T,F,St"], ["21.", "16360", "Patna-Ernakulam Exp", "14:08", "14:10", "W"], ["22.", "11046", "Dikshsabhoomi Exp", "14:09", "14:10", "Tu"], ["23.", "22111", "Bhusaval_Nagpur SF", "14:36", "14:38", "S,W,F"], ["24.", "19713", "Jaipur-Sec Exp", "15:48", "15:50", "Tu"], ["25.", "12722", "Dakshin Express", "16:00", "16:02", "Daily"], ["26.", "51183", "Bhusaval-Narkhed Pass", "16:00", "N/a", "Daily"], ["27.", "11204", "Jaipur-Nagpur Exp", "17:24", "17:25", "St"], ["28.", "19302", "Yashwantpur-Indore Exp", "17:35", "17:40", "W"], ["29.", "51830", "Agra-Nagpur Pass", "18:04", "18:05", "Daily"], ["30.", "51293", "Nagpur-Amla Pass", "19:55", "20:00", "Daily"], ["31.", "12914", "Nagpur-Indore Tri. Exp", "20:08", "20:10", "M"], ["32.", "12159", "Amravati-Jabalpur SF", "22:30", "22:32", "Daily"], ["33.", "18237", "Chhatisgarh Express", "23:09", "23:10", "Daily"], ["34.", "51152", "Narkhed-New Amravati Pass", "N/a", "18:00", "Daily"], ["35.", "51184", "Bhusaval-Narkhed Pass", "N/a", "09:00", "Daily"], ["36.", "12261", "Howrah-Mumbai Duronto Exp", "00:45", "00:50", "Su, T, Th"], ["37.", "11071", "Kamayani Exp", "01:55", "01:57", "Daily"], ["38.", "11081", "Lokmanya Tilak- Gorakhpur Exp", "03:14", "03:16", "M, W, F"], ["39.", "12010", "Shatabdi Exp", "04:45", "04:46", "Daily"], ["40.", "12321", "Howrah-Mumbai Mail Exp", "05:25", "05:28", "Daily"], ["41.", "12617", "Mangala Lakshadweep Exp", "06:25", "06:27", "Daily"], ["42.", "12071", "Jan Shatabdi Exp", "08:35", "08:37", "Daily"], ["43.", "12139", "Sewagram Exp", "10:15", "10:17", "Daily"], ["44.", "11039", "Maharashtra Exp", "11:10", "11:12", "Daily"], ["45.", "12018", "Dehradun Shatabdi Exp", "11:40", "11:42", "Daily"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Sr. No.", "Train No.", "Name of the Train", "Arrival", "Departure", "Day"], "add_description": "The name of this table is Train Schedule, and the headers of this table are Sr. No.,Train No.,Name of the Train,Arrival,Departure,Day.", "sql": {"query": "SELECT COUNT(*) FROM `Train Schedule` WHERE Day = 'Daily';", "length": 58}, "source": "wikitq"} +{"description": "How many different counts of the Raiders first downs are there for the game number 9?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "raiders_game_stats", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Raiders points", "type": "TEXT"}, {"name": "Opponents", "type": "TEXT"}, {"name": "Raiders first downs", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["1", "Sept. 22", "at Miami Dolphins", "Win", "31", "21", "17", "1\u20130", "78744"], ["2", "Sept. 28", "at Baltimore Colts", "Win", "31", "20", "18", "2\u20130", "40657"], ["3", "Oct. 5", "at San Diego Chargers", "Win", "6", "0", "17", "3\u20130", "31095"], ["4", "Oct. 12", "at Kansas City Chiefs", "Loss", "10", "42", "23", "3\u20131", "60425"], ["5", "Oct. 19", "at Cincinnati Bengals", "Loss", "10", "14", "18", "3\u20132", "48122"], ["6", "Oct. 26", "San Diego Chargers", "Win", "25", "0", "23", "4\u20132", "42796"], ["7", "Nov. 2", "at Denver Broncos", "Win", "42", "17", "21", "5\u20132", "52505"], ["8", "Nov. 9", "New Orleans Saints", "Win", "48", "10", "34", "6\u20132", "51267"], ["9", "Nov. 16", "Cleveland Browns", "Win", "38", "17", "22", "7\u20132", "50461"], ["10", "Nov. 23", "at Washington Redskins", "Win", "26", "23", "26", "8\u20132", "53582"], ["11", "Nov. 30", "Atlanta Falcons", "Win", "37", "34", "33", "9\u20132", "50860"], ["12", "Dec. 8", "Denver Broncos", "Win", "17", "10", "16", "10\u20132", "51075"], ["13", "Dec. 14", "Houston Oilers", "Loss", "26", "27", "23", "10\u20133", "50719"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Game", "Date", "Opponent", "Result", "Raiders points", "Opponents", "Raiders first downs", "Record", "Attendance"], "add_description": "The name of this table is raiders_game_stats, and the headers of this table are Game,Date,Opponent,Result,Raiders points,Opponents,Raiders first downs,Record,Attendance.", "sql": {"query": "SELECT COUNT(DISTINCT `Raiders first downs`)FROM `raiders_game_stats`WHERE `Game` = 9;", "length": 86}, "source": "wikisql"} +{"description": "how many times did brazil score during the game on november 6th?", "label": ["2"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Brazil National Football Team Results", "table_info": {"columns": [{"name": "Date", "type": "DATE"}, {"name": "Opposition", "type": "TEXT"}, {"name": "Result", "type": "CHAR"}, {"name": "Score", "type": "TEXT"}, {"name": "Brazil scorers", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}], "rows": [["June 9, 1968", "Uruguay", "W", "2-0", "Tost\u00e3o, Sadi", "Ta\u00e7a Rio Branco"], ["June 12, 1968", "Uruguay", "W", "4-0", "Paulo Borges, Tost\u00e3o, Jairzinho, G\u00e9rson", "Ta\u00e7a Rio Branco"], ["June 16, 1968", "West Germany", "L", "1-2", "Tost\u00e3o", "International Friendly"], ["June 20, 1968", "Poland", "W", "6-3", "Rivelino (2), Jairzinho (2), Tost\u00e3o, Natal", "International Friendly"], ["June 23, 1968", "Czechoslovakia", "L", "2-3", "Natal, Carlos Alberto Torres", "International Friendly"], ["June 25, 1968", "Yugoslavia", "W", "2-0", "Carlos Alberto Torres, Tost\u00e3o", "International Friendly"], ["June 30, 1968", "Portugal", "W", "2-0", "Rivelino, Tost\u00e3o", "International Friendly"], ["July 7, 1968", "Mexico", "W", "2-0", "Jairzinho (2)", "International Friendly"], ["July 10, 1968", "Mexico", "L", "1-2", "Rivelino", "International Friendly"], ["July 14, 1968", "Peru", "W", "4-3", "Natal, Jairzinho, Roberto Miranda, Carlos Alberto Torres", "International Friendly"], ["July 17, 1968", "Peru", "W", "4-0", "Rivelino, G\u00e9rson, Tost\u00e3o, Jairzinho", "International Friendly"], ["July 25, 1968", "Paraguay", "W", "4-0", "Pel\u00e9 (2), Toninho Guerreiro, Eduardo", "Ta\u00e7a Oswaldo Cruz"], ["July 28, 1968", "Paraguay", "L", "0-1", "-", "Ta\u00e7a Oswaldo Cruz"], ["August 7, 1968", "Argentina", "W", "4-1", "Waltencir, Roberto Miranda, Paulo C\u00e9sar Caju, Jairzinho", "International Friendly"], ["August 11, 1968", "Argentina", "W", "3-2", "Evaldo, Rodrigues, Dirceu Lopes", "International Friendly"], ["October 31, 1968", "Mexico", "L", "1-2", "Carlos Alberto Torres", "International Friendly"], ["November 3, 1968", "Mexico", "W", "2-1", "Pel\u00e9, Jairzinho", "International Friendly"], ["November 6, 1968", "FIFA XI", "W", "2-1", "Rivelino, Tost\u00e3o", "International Friendly (unofficial match)"], ["November 13, 1968", "Coritiba", "W", "2-1", "Dirceu Lopes, Z\u00e9 Carlos", "International Friendly (unofficial match)"], ["December 14, 1968", "West Germany", "D", "2-2", "Eduardo (2)", "International Friendly"], ["December 17, 1968", "Yugoslavia", "D", "3-3", "Carlos Alberto Torres, Pel\u00e9, Bab\u00e1", "International Friendly"], ["December 19, 1968", "Yugoslavia", "W", "3-2", "Vaguinho, Amauri, Ronaldo", "International Friendly"], ["January 5, 1969", "Argentina", "W", "3-0", "Jairzinho, Tost\u00e3o, Carlos Alberto Torres", "International Friendly"], ["January 9, 1969", "Argentina", "D", "1-1", "Rivelino", "International Friendly"], ["February 2, 1969", "Colombia", "W", "4-0", "Tost\u00e3o (2), Rivelino, Jairzinho", "Ta\u00e7a da Independ\u00eancia"], ["February 9, 1969", "Chile", "D", "1-1", "Tost\u00e3o", "Ta\u00e7a da Independ\u00eancia"], ["February 13, 1969", "Peru", "W", "3-0", "Rivelino, Tost\u00e3o, Pel\u00e9 (pen.)", "Ta\u00e7a da Independ\u00eancia"], ["February 16, 1969", "Chile", "W", "6-2", "Jairzinho (2), Pel\u00e9 (2), Tost\u00e3o, Rivelino", "Ta\u00e7a da Independ\u00eancia"], ["March 6, 1969", "Paraguay", "W", "3-0", "Jairzinho (2), G\u00e9rson", "International Friendly"], ["March 9, 1969", "Peru", "W", "3-1", "Rivelino, Jairzinho, Tost\u00e3o", "International Friendly"], ["March 13, 1969", "Bolivia", "W", "6-0", "Pel\u00e9 (3), Jairzinho (2), Tost\u00e3o", "International Friendly"], ["April 23, 1969", "Uruguay", "D", "0-0", "-", "International Friendly"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Date", "Opposition", "Result", "Score", "Brazil scorers", "Competition"], "add_description": "The name of this table is Brazil National Football Team Results, and the headers of this table are Date,Opposition,Result,Score,Brazil scorers,Competition.", "sql": {"query": "SELECT COUNT(*) FROM `Brazil National Football Team Results` WHERE Date='November 6, 1968' AND `Brazil scorers` LIKE '%,%';", "length": 123}, "source": "wikitq"} +{"description": "How many episodes aired Saturday, July 11, 2009", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Episode Ratings", "table_info": {"columns": [{"name": "Episode #", "type": "TEXT"}, {"name": "US air date", "type": "TEXT"}, {"name": "Rating", "type": "TEXT"}, {"name": "Share", "type": "TEXT"}, {"name": "Rating/Share (18\u201349)", "type": "TEXT"}, {"name": "Viewers (millions)", "type": "TEXT"}], "rows": [["1", "Thursday, April 9, 2009", "6.5", "11", "2.6/8", "10.21"], ["2", "Thursday, April 16, 2009", "5.1", "9", "2.2/6", "7.82"], ["3", "Thursday, April 23, 2009", "4.7", "9", "1.9/5", "7.02"], ["4", "Saturday, May 2, 2009", "3.1", "6", "1.0/3", "4.61"], ["5", "Saturday, May 9, 2009", "3.1", "6", "1.1/3", "4.60"], ["6", "Saturday, May 23, 2009", "2.5", "5", "1.0/4", "3.85"], ["7", "Saturday, May 30, 2009", "2.4", "5", "0.9/3", "3.62"], ["8", "Saturday, June 6, 2009", "2.4", "5", "0.9/3", "3.56"], ["9", "Saturday, June 13, 2009", "2.0", "4", "0.8/3", "3.20"], ["10", "Saturday, June 20, 2009", "TBA", "TBA", "0.9/4", "3.79"], ["11", "Saturday, June 27, 2009", "2.4", "5", "0.8/3", "3.53"], ["12", "Saturday, July 11, 2009", "2.4", "5", "0.8/3", "3.63"], ["13", "Saturday, July 18, 2009", "2.2", "4", "0.7/3", "3.41"], ["14", "Saturday, July 25, 2009", "2.1", "4", "0.6/3", "3.20"], ["15", "Saturday, August 1, 2009", "2.3", "4", "0.7/3", "3.55"], ["16", "Saturday, August 8, 2009", "2.0", "4", "0.7/3", "3.15"], ["17", "Saturday, August 15, 2009", "1.8", "3", "0.6/2", "2.87"], ["18", "Saturday, August 22, 2009", "2.0", "4", "0.7/3", "3.15"], ["19", "Saturday, August 29, 2009", "1.9", "3", "0.6/2", "2.92"], ["20", "Saturday, September 5, 2009", "2.2", "4", "0.8/3", "3.39"], ["21", "Saturday, September 12, 2009", "2.2", "4", "0.8/3", "3.34"], ["22", "Saturday, September 19, 2009", "2.4", "5", "0.8/3", "3.66"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Episode #", "US air date", "Rating", "Share", "Rating/Share (18\u201349)", "Viewers (millions)"], "add_description": "The name of this table is Episode Ratings, and the headers of this table are Episode #,US air date,Rating,Share,Rating/Share (18\u201349),Viewers (millions).", "sql": {"query": "SELECT COUNT(*) FROM `Episode Ratings` WHERE `US air date`='Saturday, July 11, 2009';", "length": 85}, "source": "wikisql"} +{"description": "how many surfaces are grass?", "label": ["2"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Tennis Matches", "table_info": {"columns": [{"name": "Outcome", "type": "TEXT"}, {"name": "Date", "type": "DATE"}, {"name": "Tournament", "type": "TEXT"}, {"name": "Surface", "type": "TEXT"}, {"name": "Partnering", "type": "TEXT"}, {"name": "Opponent in the final", "type": "TEXT"}, {"name": "Score in the final", "type": "TEXT"}], "rows": [["Winner", "29 Apr 2002", "$10,000 Bournemouth, Great Britain", "Clay", "Anna Hawkins", "\u0130pek \u015eeno\u011flu\\n Christina Zachariadou", "6\u20130, 6\u20130"], ["Runner-up", "14 May 2002", "$10,000 Hatfield, Great Britain", "Clay", "Anna Hawkins", "Irina Bulykina\\n Ekaterina Sysoeva", "6\u20134, 4\u20136, 6\u20137(8\u201310)"], ["Runner-up", "25 Nov 2002", "$25,000 Mount Gambier, Australia", "Hard", "Chanelle Scheepers", "Daniella Dominikovic\\n Evie Dominikovic", "w/o"], ["Winner", "12 Oct 2004", "$25,000 Sunderland, Great Britain", "Hard", "Elena Baltacha", "Eva Fislov\u00e1\\n Stanislava Hrozensk\u00e1", "6\u20131, 4\u20136, 6\u20132"], ["Winner", "18 Jan 2005", "$10,000 Tipton, Great Britain", "Hard", "Surina De Beer", "Katie O'Brien\\n Melanie South", "6\u20132, 6\u20134"], ["Runner-up", "10 Jul 2006", "$25,000 Felixstowe, Great Britain", "Grass", "Sarah Borwell", "Trudi Musgrave\\n Christina Wheeler", "2\u20136, 4\u20136"], ["Winner", "17 Jul 2006", "$10,000 Frinton, Great Britain", "Grass", "Georgie Stoop", "Danielle Brown\\n Ana \u010cetnik", "6\u20134, 4\u20136, 6\u20132"], ["Runner-up", "7 Aug 2006", "$10,000 Wrexham, Great Britain", "Hard", "Karen Paterson", "Lindsay Cox\\n Anna Hawkins", "3\u20136, 3\u20136"], ["Winner", "22 Aug 2006", "$10,000 Cumberland (London),\\nGreat Britain", "Hard", "Karen Paterson", "Laura Peterzen\\n Emily Webley-Smith", "6\u20133, 6\u20133"], ["Runner-up", "28 Aug 2006", "$10,000 Mollerusa, Spain", "Hard", "Karen Paterson", "Michaela Johansson\\n Nadja Roma", "3\u20136, 6\u20132, 3\u20136"], ["Winner", "14 Mar 2007", "$10,000 Sunderland, Great Britain", "Hard", "Anna Hawkins", "Ria Doernemann\\n Emily Webley-Smith", "6\u20134, 6\u20137(5\u20137), 6\u20133"], ["Winner", "23 Apr 2007", "$25,000 Charlottesville, USA", "Clay", "Lena Litvak", "Riza Zalameda\\n Gabriela Niculescu", "6\u20134, 7\u20136(7\u20133)"], ["Runner-up", "15 May 2007", "$10,000 Grado, Italy", "Clay", "Lena Litvak", "Karin Knapp\\n Maria Elena Camerin", "3\u20136, 4\u20136"], ["Winner", "29 Oct 2007", "$50,000 Troy, USA", "Hard", "Patricia Mayr", "Sofia Arvidsson\\n Sharon Fichman", "6\u20133, 7\u20135"], ["Runner-up", "14 Jan 2008", "$25,000 Lutz, USA", "Clay", "Raluca Olaru", "Maria Fernanda \u00c1lvarez Ter\u00e1n\\n Patricia Mayr", "6\u20133, 3\u20136, 2\u20136"], ["Winner", "25 Feb 2008", "$50,000 La Quinta, USA", "Hard", "Ekaterina Ivanova", "Angela Haynes\\n Ahsha Rolle", "6\u20132, 7\u20136(7\u20135)"], ["Runner-up", "14 Jul 2008", "$25,000 Imola, Italy", "Clay", "Ekaterina Ivanova", "Karin Knapp\\n Maria Elena Camerin", "2\u20136, 2\u20136"], ["Winner", "18 Oct 2008", "$25,000 Hammond, USA", "Hard", "Arina Rodionova", "Tetreault\\n Haydn Lewis", "6\u20133, 6\u20134"], ["Runner-up", "8 Dec 2008", "$100,000 Pune, India", "Hard", "Ekaterina Ivanova", "Monica Niculescu\\n Raluca Olaru", "6\u20133, 2\u20136, 5\u20137"], ["Winner", "23 Feb 2009", "$75,000 Monzon, Spain", "Hard", "Aleksandra Wozniak", "Maria Jo\u00e3o Koehler\\n Eva Hrdinov\u00e1", "6\u20131, 6\u20132"], ["Runner-up", "16 Mar 2009", "$25,000 Hammond, USA", "Hard", "Maret Ani", "Sesil Karatantcheva\\n Kathrin W\u00f6rle", "3\u20136, 6\u20134, 3\u20136"]]}}, "evaluation": "", "example": "", "type": ["counting"], "heads": ["Outcome", "Date", "Tournament", "Surface", "Partnering", "Opponent in the final", "Score in the final"], "add_description": "The name of this table is Tennis Matches, and the headers of this table are Outcome,Date,Tournament,Surface,Partnering,Opponent in the final,Score in the final.", "sql": {"query": "SELECT COUNT(*) FROM \"Tennis Matches\" WHERE \"Surface\"='Grass';", "length": 62}, "source": "wikitq"} +{"description": "What is Country of Origin, when Type is Disposable, when Primary Cartridge is 105mm, and when Year of Intro is less than 2008?", "label": ["Soviet Union"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Rocket Propelled Grenade (RPG) Weapons", "table_info": {"columns": [{"name": "Name/ designation", "type": "TEXT"}, {"name": "Year of intro", "type": "TEXT"}, {"name": "Country of origin", "type": "TEXT"}, {"name": "Primary cartridge", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}], "rows": [["M1 Bazooka", "1942", "United States", "60mm", "Recoilless"], ["M2GC", "1948", "Sweden", "84mm", "Recoilless"], ["Northover Projector", "1940", "United Kingdom", "63.5mm", "Recoilless"], ["Panzerfaust", "1943", "Germany", "150mm", "Recoilless"], ["PIAT", "1942", "United Kingdom", "86mm", "Spigot mortar"], ["Rifleman's Assault Weapon", "1977", "United States", "140mm", "Close support rocket"], ["RPG-2", "1949", "Soviet Union", "40mm", "Reusable"], ["RPG-7", "1961", "Soviet Union", "40mm", "Reusable"], ["RPG-16", "1970", "Soviet Union", "58.3mm", "Reusable"], ["RPG-18", "1972", "Soviet Union", "64mm", "Disposable"], ["RPG-22", "1985", "Soviet Union", "72.5mm", "Disposable"], ["RPG-26", "1985", "Soviet Union", "72.5mm", "Disposable"], ["RPG-27", "1989", "Soviet Union", "105mm", "Disposable"], ["RPG-28", "2007", "Russia", "125mm", "Disposable"], ["RPG-29", "1989", "Soviet Union", "40mm", "Reusable"], ["RPG-30", "2008", "Russia", "105mm", "Disposable"], ["RPG-32", "1961", "Russia", "40mm", "Reusable"], ["RPG-76", "1985", "Poland", "68mm", "Disposable"], ["Type 69 RPG", "1969", "China", "40mm", "Reusable"], ["Yasin", "2004", "Palestine", "40mm", "Reusable"], ["Stinger", "1981", "United States", "70mm", "Surface-to-air missile"], ["Javelin", "1996", "United States", "127mm", "Fire and forget"], ["SMAW", "1984", "United States", "83mm", "Rocket propelled grenade"], ["LAW 80", "1985", "United Kingdom", "94mm", "Rocket propelled grenade"], ["Matador", "2014", "Sweden", "90mm", "Penetration rocket assisted"], ["Bazooka", "1942", "United States", "60mm", "Rocket launcher"], ["Vampyr", "1944", "Soviet Union", "40mm", "Reusable"], ["Carl Gustav", "1948", "Sweden", "84mm", "Reusable"], ["AGM-114", "1984", "United States", "178mm", "Air-to-ground missile"], ["AT4", "1987", "Sweden", "84mm", "Disposable"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Name/ designation", "Year of intro", "Country of origin", "Primary cartridge", "Type"], "add_description": "The name of this table is Rocket Propelled Grenade (RPG) Weapons, and the headers of this table are Name/ designation,Year of intro,Country of origin,Primary cartridge,Type.", "sql": {"query": "SELECT `Country of origin` FROM `Rocket Propelled Grenade (RPG) Weapons` WHERE `Type` = 'Disposable' AND `Primary cartridge` = '105mm' AND `Year of intro` < 2008;", "length": 162}, "source": "wikisql"} +{"description": "name a builder that had above 7 gt numbers.", "label": ["ALCO"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Train Builders and their Works Numbers", "table_info": {"columns": [{"name": "Builder", "type": "TEXT"}, {"name": "Works numbers", "type": "TEXT"}, {"name": "Dates", "type": "INT"}, {"name": "CN numbers", "type": "TEXT"}, {"name": "GT numbers", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["MLW", "39548-39562\\n40583-40622", "1906", "2525-2566\\n2663", "651-705", ""], ["MLW", "42331-42345\\n43150-43164", "1907", "2577-2605\\n2661-2662\\n2685", "721-750", ""], ["ALCO", "42046-42060\\n43540-43554", "1907", "2567-2576\\n2606-2615\\n2664-2665\\n2669-2676", "706-720\\n752\\n755\\n758\\n761\\n763", ""], ["MLW", "45163-45182", "1908", "2627-2646", "631-650", ""], ["MLW", "46880-46894", "1910", "2647-2660\\n2686", "616-630", ""], ["ALCO", "49663-49674", "1911", "2616-2625\\n2677-2678", "766-777", "built at ALCO's Brooks Works"], ["ALCO", "50472-50481", "1911", "2626\\n2666-2668\\n2679-2684", "779-780\\n784\\n786-787", ""], ["ALCO", "51421-51430", "1912", "2687-2696", "781-790", ""], ["MLW", "53646-53655", "1913", "2697-2706\\n2727-2730", "791-800\\n803", "built at MLW's Kingston Works"], ["MLW", "55913-55925", "1914", "2707-2719", "801-813", ""], ["ALCO", "57000-57004\\n57015-57019", "1914", "2720-2726\\n2731-2737", "814-818\\n821-825", ""], ["MLW", "58531-58540", "1915", "2738-2747", "826-835", ""], ["ALCO", "59091-59095\\n59107-59111", "1915", "2748-2752\\n2758-2762\\n2764-2766", "819-823\\n836-840\\n842", "built at ALCO's Rhode Island Works"], ["MLW", "61457-61466", "1916", "2767-2776\\n2795-2796", "843-852\\n859", ""], ["ALCO", "62074-62083", "1916", "2777-2786\\n2802-2803", "853-862\\n870", ""], ["MLW", "64527-64536", "1917", "2804-2813", "871-880", ""], ["ALCO", "65969-65978\\n66003-66007", "1918", "2814-2823\\n2827-2831", "881-890\\n895", "built at ALCO's Schenectady Works"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Builder", "Works numbers", "Dates", "CN numbers", "GT numbers", "Notes"], "add_description": "The name of this table is Train Builders and their Works Numbers, and the headers of this table are Builder,Works numbers,Dates,CN numbers,GT numbers,Notes.", "sql": {"query": "SELECT Builder FROM [Train Builders and their Works Numbers]WHERE LEN(GT numbers) - LEN(REPLACE([GT numbers], '-', '')) + 1 > 7;", "length": 128}, "source": "wikitq"} +{"description": "Which Round has a School/Club Team of indiana, and a Pick smaller than 198?", "label": ["none"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "NFL Draft Picks", "table_info": {"columns": [{"name": "Round", "type": "TEXT"}, {"name": "Pick", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "School/Club Team", "type": "TEXT"}], "rows": [["2", "39", "Sam Cowart", "Middle linebacker", "Florida State"], ["3", "68", "Robert Hicks", "Offensive tackle", "Mississippi State"], ["5", "131", "Jonathan Linton", "Fullback", "North Carolina"], ["6", "160", "Fred Coleman", "Wide receiver", "Washington"], ["7", "198", "Victor Allotey", "Offensive guard", "Indiana"], ["7", "238", "Kamil Loud", "Wide receiver", "Cal-Poly SLO"], ["1", "12", "John Smith", "Quarterback", "Ohio State"], ["2", "36", "Tom James", "Tight end", "USC"], ["3", "74", "Mary Johnson", "Offensive guard", "Alabama"], ["4", "103", "Joe Williams", "Running back", "LSU"], ["5", "122", "Sarah Brown", "Wide receiver", "Penn State"], ["6", "151", "Timothy Green", "Cornerback", "Cincinnati"], ["7", "204", "Kevin Lee", "Defensive tackle", "Texas"], ["7", "237", "Julia Chen", "Safety", "Arizona State"], ["8", "259", "Carlos Rodriguez", "Kicker", "Miami"], ["9", "291", "Emily Davis", "Linebacker", "Stanford"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Round", "Pick", "Player", "Position", "School/Club Team"], "add_description": "The name of this table is NFL Draft Picks, and the headers of this table are Round,Pick,Player,Position,School/Club Team.", "sql": {"query": "SELECT Round FROM `NFL Draft Picks` WHERE `School/Club Team` = 'Indiana' AND Pick < 198;", "length": 88}, "source": "wikisql"} +{"description": "what is the name of the episode whose director is Michael Pressman and the number of that episode in that season is less than 10.0? ", "label": ["\"House of Cards\""], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "episode_table", "table_info": {"columns": [{"name": "No. in series", "type": "TEXT"}, {"name": "No. in season", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Directed by", "type": "TEXT"}, {"name": "Written by", "type": "TEXT"}, {"name": "Original air date", "type": "TEXT"}, {"name": "Production code", "type": "TEXT"}, {"name": "U.S. viewers (millions)", "type": "TEXT"}], "rows": [["350", "1", "\"Red Ball\"", "Matthew Penn", "David Wilcox", "September21,2005", "16001", "13.03"], ["351", "2", "\"Flaw\"", "Jean de Segonzac", "Chris Levinson", "September28,2005", "16002", "15.06"], ["352", "3", "\"Ghosts\"", "Constantine Makris", "Rick Eid", "October5,2005", "16003", "12.59"], ["353", "4", "\"Age of Innocence\"", "David Platt", "Davey Holmes", "October12,2005", "16005", "10.92"], ["354", "5", "\"Life Line\"", "Rosemary Rodriguez", "Greg Plageman", "October19,2005", "16006", "12.33"], ["355", "6", "\"Birthright\"", "Constantine Makris", "David Slack", "November2,2005", "16007", "12.57"], ["356", "7", "\"House of Cards\"", "Michael Pressman", "Wendy Battles", "November9,2005", "16008", "10.86"], ["357", "8", "\" New York Minute \"", "Don Scardino", "Nicholas Wootton", "November16,2005", "16009", "11.44"], ["358", "9", "\"Criminal Law\"", "Ed Sherin", "David Wilcox", "November23,2005", "16010", "11.93"], ["359", "10", "\"Acid\"", "Michael Pressman", "Richard Sweren", "November30,2005", "16011", "12.87"], ["360", "11", "\"Bible Story\"", "Rick Wallace", "Richard Sweren", "December7,2005", "16004", "12.13"], ["361", "12", "\"Family Friend\"", "Jean de Segonzac", "Philippe Browning", "January11,2006", "16012", "12.83"], ["362", "13", "\"Heart of Darkness\"", "Richard Dobbs", "Carter Harris", "January18,2006", "16013", "12.38"], ["363", "14", "\"Magnet\"", "Adam Bernstein", "David Black", "February8,2006", "16014", "14.53"], ["364", "15", "\"Choice of Evils\"", "Michael Pressman", "David Wilcox", "March1,2006", "16016", "12.39"], ["365", "16", "\"Cost of Capital\"", "Michael W. Watkins", "Tom Smuts & Rick Eid", "March8,2006", "16010", "11.79"], ["366", "17", "\"America, Inc.\"", "Jean de Segonzac", "Richard Sweren", "March22,2006", "16017", "9.00"], ["367", "18", "\"Thinking Makes It So\"", "Tony Goldwyn", "Michael S. Chernuchin", "March29,2006", "16019", "9.35"], ["368", "19", "\"Positive\"", "Richard Dobbs", "Sonny Postiglione", "April5,2006", "16020", "10.84"], ["369", "20", "\"Kingmaker\"", "Don Scardino", "David Slack", "May3,2006", "16018", "10.66"], ["370", "21", "\"Hindsight\"", "Jean de Segonzac", "Chris Levinson", "May10,2006", "16021", "12.68"], ["371", "1", "\"New Beginning\"", "David Platt", "Greg Plageman", "September20,2006", "17001", "15.25"], ["372", "2", "\"In the Dark\"", "Constantine Makris", "David Slack", "September27,2006", "17002", "13.84"], ["373", "3", "\"Inside Man\"", "Timothy Busfield", "Chris Levinson", "October4,2006", "17003", "12.59"], ["374", "4", "\"The Decider\"", "David Straiton", "Rick Eid", "October11,2006", "17004", "11.65"], ["375", "5", "\"Prisoner's Dilemma\"", "Michael Watkins", "Philippe Browning", "October18,2006", "17005", "10.92"], ["376", "6", "\"Homesick\"", "Chris Misiano", "David Wilcox", "November1,2006", "17006", "13.23"], ["377", "7", "\"Rotten Apple\"", "John F. Showalter", "Nicholas Wootton", "November8,2006", "17007", "11.98"], ["378", "8", "\"Endgame\"", "Alex Zakrzewski", "David Slack & Chris Levinson", "November15,2006", "17008", "12.88"], ["379", "9", "\"Blind Spot\"", "Jean de Segonzac", "Michael S. Chernuchin", "November22,2006", "17009", "10.77"], ["380", "10", "\"Forensics\"", "Timothy Busfield", "Melissa Scrivner-Love", "November29,2006", "17010", "12.16"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["No. in series", "No. in season", "Title", "Directed by", "Written by", "Original air date", "Production code", "U.S. viewers (millions)"], "add_description": "The name of this table is episode_table, and the headers of this table are No. in series,No. in season,Title,Directed by,Written by,Original air date,Production code,U.S. viewers (millions).", "sql": {"query": "SELECT Title FROM episode_table WHERE Directed by='Michael Pressman' AND CAST(`No. in season` AS FLOAT) < 10.0;", "length": 111}, "source": "wikisql"} +{"description": "What is the year of the first appearance of the Black Knights, who had less than 1 finals appearances?", "label": ["0.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Finals Appearances by Drum Corps", "table_info": {"columns": [{"name": "Corps Name", "type": "TEXT"}, {"name": "Number of Finals Appearances", "type": "TEXT"}, {"name": "Year of First Appearance", "type": "TEXT"}, {"name": "Year of Most Recent Appearance", "type": "TEXT"}, {"name": "All Years of Finals Appearances", "type": "TEXT"}], "rows": [["Santa Clara Vanguard", "42", "1972", "2013", "1972\u20132013"], ["Blue Devils", "40", "1974", "2013", "1974\u20132013"], ["The Cavaliers", "40", "1972", "2013", "1972,1974\u201377,1979\u20132013"], ["Phantom Regiment", "40", "1974", "2013", "1974\u20132013"], ["Madison Scouts", "38", "1973", "2013", "1973\u20132001,2003\u201306,2008,2010-2013"], ["The Cadets", "36", "1975", "2013", "1975, 1977, 1980\u20132013"], ["Bluecoats", "26", "1987", "2013", "1987-98,2000\u20132013"], ["Crossmen", "23", "1977", "2012", "1977-78,1980\u201382,1984,1989\u20132004"], ["Spirit of Atlanta", "20", "1978", "2013", "1978-88,1990,2002\u201303,2005\u201307,"], ["Blue Knights", "19", "1991", "2013", "1991-94,1996\u20132000,2004\u201313"], ["Carolina Crown", "18", "1995", "2013", "1995\u20132001,2003\u201313"], ["Glassmen", "16", "1993", "2010", "1993-95,1997\u20132002,2004\u201310"], ["Boston Crusaders", "15", "1999", "2013", "1999\u20132013"], ["27th Lancers", "12", "1972", "1984", "1972-73,1975\u201384"], ["Blue Stars", "13", "1972", "2013", "1972-79,2008\u201311,13"], ["Bridgemen", "10", "1972", "1983", "1972-73,1976\u201383"], ["Freelancers", "10", "1976", "1992", "1976-77,1981\u201385,1989,1991\u2013"], ["Star of Indiana", "9", "1985", "1993", "1985-93"], ["Colts", "8", "1993", "2007", "1993-96,1998\u201399,2001,2007"], ["Troopers", "9", "1972", "2009", "1972-75,1979,1981,1985\u201386,2009"], ["Velvet Knights", "8", "1984", "1992", "1984-90,1992"], ["Suncoast Sound", "7", "1983", "1989", "1983-89"], ["Kilties", "6", "1972", "1978", "1972-75,1977\u201378"], ["The Magic", "6", "1994", "2003", "1994\u20131997,2002\u201303"], ["Sky Ryders", "6", "1982", "1991", "1982-83,1986\u201388,1991"], ["Guardsmen", "4", "1976", "1980", "1976, 1978\u201380"], ["Anaheim Kingsmen", "3", "1972", "1974", "1972-74"], ["Muchachos", "3", "1972", "1974", "1972-74"], ["North Star", "3", "1978", "1980", "1978-80"], ["Argonne Rebels", "2", "1972", "1973", "1972-73"], ["Oakland Crusaders", "2", "1975", "1976", "1975-76"], ["Seneca Optimists", "2", "1976", "1977", "1976-77"], ["Bleu Raeders", "1", "1972", "1972", "1972"], ["Black Knights", "1", "1973", "1973", "1973"], ["De La Salle Oaklands", "1", "1974", "1974", "1974"], ["Des Plaines Vangaurd", "1", "1972", "1972", "1972"], ["Dutch Boy", "1", "1990", "1990", "1990"], ["Purple Lancers", "1", "1974", "1974", "1974"], ["Royal Crusaders", "1", "1975", "1975", "1975"], ["Stockton Commodores", "1", "1973", "1973", "1973"], ["Cascades", "1", "2002", "2002", "2002"], ["Bluecoats", "26", "1987", "2019", "1987-98, 2000-05, 2007, 2009-19"], ["Carolina Crown", "15", "2003", "2019", "2003-09, 2011-19"], ["The Cadets", "37", "1975", "2019", "1975, 1977, 1980-81, 1983-2005, 2007-16, 2019"], ["Santa Clara Vanguard", "43", "1972", "2019", "1972-2019"], ["Blue Devils", "41", "1974", "2019", "1974-2019"], ["Boston Crusaders", "16", "2000", "2019", "2000-02, 2004-06, 2008-16, 2019"], ["Phantom Regiment", "41", "1974", "2019", "1974-2019"], ["Madison Scouts", "39", "1973", "2019", "1973-2001, 2003-08, 2010-14, 2017-19"], ["The Cavaliers", "41", "1972", "2019", "1972, 1974-2014, 2017-19"], ["Blue Knights", "20", "1993", "2019", "1993-94, 1996-2000, 2004-12, 2014, 2016-19"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Corps Name", "Number of Finals Appearances", "Year of First Appearance", "Year of Most Recent Appearance", "All Years of Finals Appearances"], "add_description": "The name of this table is Finals Appearances by Drum Corps, and the headers of this table are Corps Name,Number of Finals Appearances,Year of First Appearance,Year of Most Recent Appearance,All Years of Finals Appearances.", "sql": {"query": "SELECT [Year of First Appearance] FROM [Finals Appearances by Drum Corps] WHERE [Corps Name] = 'Black Knights' AND [Number of Finals Appearances] < 1;", "length": 150}, "source": "wikisql"} +{"description": "When the population is greater than 146,445 in the county of Carroll, what is the number of households?", "label": ["none"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Income and Population by County in New Hampshire", "table_info": {"columns": [{"name": "County", "type": "TEXT"}, {"name": "Per capita income", "type": "TEXT"}, {"name": "Median household income", "type": "TEXT"}, {"name": "Median family income", "type": "TEXT"}, {"name": "Population", "type": "TEXT"}, {"name": "Number of households", "type": "TEXT"}], "rows": [["Rockingham", "$37,422", "$77,470", "$92,835", "295,223", "115,033"], ["Hillsborough", "$33,653", "$70,591", "$83,636", "400,721", "155,466"], ["New Hampshire", "$32,357", "$64,664", "$78,310", "1,316,470", "518,973"], ["Merrimack", "$31,403", "$65,722", "$78,998", "146,445", "57,069"], ["Belknap", "$29,449", "$56,921", "$67,768", "60,088", "24,766"], ["Strafford", "$29,405", "$59,082", "$74,319", "123,143", "47,100"], ["Carroll", "$29,194", "$50,555", "$60,530", "47,818", "21,052"], ["Grafton", "$29,090", "$53,000", "$66,701", "89,118", "35,986"], ["United States", "$27,915", "$52,762", "$64,293", "308,745,538", "116,716,292"], ["Cheshire", "$27,459", "$55,241", "$69,203", "77,117", "30,204"], ["Sullivan", "$27,223", "$51,678", "$63,682", "43,742", "18,126"], ["Coos", "$23,580", "$41,087", "$52,676", "33,055", "14,171"], ["Grafton", "$30,000", "$55,000", "$68,500", "95,000", "38,000"], ["Hillsborough", "$34,502", "$71,704", "$84,925", "415,622", "160,037"], ["Sullivan", "$25,936", "$49,172", "$60,638", "47,325", "19,619"], ["Merrimack", "$32,100", "$65,988", "$79,124", "154,789", "60,069"], ["Belknap", "$29,890", "$57,729", "$69,667", "63,210", "25,910"], ["Rockingham", "$38,452", "$79,821", "$94,211", "310,455", "120,837"], ["Strafford", "$31,220", "$61,372", "$76,498", "135,512", "52,069"], ["Coos", "$24,952", "$43,200", "$54,890", "35,788", "15,387"], ["Cheshire", "$28,590", "$57,925", "$71,912", "82,367", "32,130"], ["Carroll", "$29,670", "$51,372", "$61,455", "49,421", "21,702"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["County", "Per capita income", "Median household income", "Median family income", "Population", "Number of households"], "add_description": "The name of this table is Income and Population by County in New Hampshire, and the headers of this table are County,Per capita income,Median household income,Median family income,Population,Number of households.", "sql": {"query": "SELECT `Number of households` FROM `Income and Population by County in New Hampshire` WHERE `County` = 'Carroll' AND `Population` > 146445;", "length": 139}, "source": "wikisql"} +{"description": "which nation won gold but did not win silver?", "label": ["United States"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Olympic Medals", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "INTEGER"}, {"name": "Silver", "type": "INTEGER"}, {"name": "Bronze", "type": "INTEGER"}, {"name": "Total", "type": "INTEGER"}], "rows": [["1", "Cuba", "4", "3", "2", "9"], ["2", "Canada", "4", "2", "1", "7"], ["3", "United States", "2", "0", "2", "4"], ["4", "Mexico", "1", "1", "0", "2"], ["5", "Ecuador", "1", "0", "0", "1"], ["6", "Argentina", "0", "4", "3", "7"], ["7", "Brazil", "0", "2", "2", "4"], ["8", "Chile", "0", "0", "1", "1"], ["8", "Venezuela", "0", "0", "1", "1"], ["Total", "Total", "12", "12", "12", "36"], ["1", "Japan", "5", "4", "3", "12"], ["2", "South Korea", "4", "3", "3", "10"], ["3", "China", "3", "5", "2", "10"], ["4", "Australia", "2", "3", "4", "9"], ["5", "New Zealand", "1", "2", "3", "6"], ["6", "Thailand", "0", "2", "1", "3"], ["7", "Malaysia", "0", "1", "2", "3"], ["8", "Philippines", "0", "1", "1", "2"], ["9", "India", "0", "0", "3", "3"], ["10", "Indonesia", "0", "0", "1", "1"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medals, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "sql": {"query": "SELECT Nation FROM `Olympic Medals` WHERE Gold > 0 AND Silver = 0;", "length": 66}, "source": "wikitq"} +{"description": "What is the US cash box before 1978 with a US billboard of 35?", "label": ["18.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "US Music Charts", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "US Billboard", "type": "TEXT"}, {"name": "US Cash Box", "type": "TEXT"}, {"name": "US AC", "type": "TEXT"}, {"name": "CAN AC", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}], "rows": [["1972", "86", "90", "\u2013", "\u2013", "\"Don't Want to Say Goodbye\""], ["1972", "5", "4", "\u2013", "\u2013", "\" Go All the Way \""], ["1972", "16", "10", "\u2013", "\u2013", "\"I Wanna Be With You\""], ["1973", "35", "18", "\u2013", "\u2013", "\"Let's Pretend\""], ["1973", "69", "37", "\u2013", "\u2013", "\"Tonight\""], ["1973", "94", "75", "\u2013", "\u2013", "\"I'm a Rocker\""], ["1974", "18", "24", "\u2013", "\u2013", "\"Overnight Sensation (Hit Record)\""], ["1976", "2", "1", "6", "1", "\" All By Myself \""], ["1976", "11", "9", "1", "1", "\" Never Gonna Fall in Love Again \""], ["1976", "34", "38", "33", "29", "\"Sunrise\""], ["1977", "23", "15", "26", "\u2013", "\" She Did It \""], ["1978", "88", "95", "\u2013", "\u2013", "\"Boats Against the Current\""], ["1978", "19", "19", "6", "10", "\"Change of Heart\""], ["1978", "62", "60", "30", "8", "\" Baby I Need Your Lovin' \""], ["1980", "75", "83", "\u2013", "\u2013", "\"It Hurts Too Much\""], ["1985", "35", "37", "10", "17", "\"I Wanna Hear it from Your Lips\""], ["1985", "87", "79", "16", "\u2013", "\"I'm Through with Love\""], ["1987", "4", "3", "2", "6", "\" Hungry Eyes \""], ["1988", "3", "4", "1", "1", "\" Make Me Lose Control \""], ["1988", "87", "\u2013", "\u2013", "\u2013", "\"Reason to Try\""]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Year", "US Billboard", "US Cash Box", "US AC", "CAN AC", "Title"], "add_description": "The name of this table is US Music Charts, and the headers of this table are Year,US Billboard,US Cash Box,US AC,CAN AC,Title.", "sql": {"query": "SELECT `US Cash Box` FROM `US Music Charts` WHERE `US Billboard` = 35 AND `Year` < 1978;", "length": 88}, "source": "wikisql"} +{"description": "How manywins for dunfermline athletic that has a total final appearances less than 2?", "label": ["0.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Scottish Challenge Cup Finalists", "table_info": {"columns": [{"name": "Club", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Last final won", "type": "TEXT"}, {"name": "Runners-up", "type": "TEXT"}, {"name": "Last final lost", "type": "TEXT"}, {"name": "Total final appearances", "type": "TEXT"}], "rows": [["Falkirk", "4", "2012", "0", "\u2014", "4"], ["Airdrieonians", "3", "2001", "0", "\u2014", "3"], ["Queen of the South", "2", "2013", "2", "2010", "4"], ["Ross County", "2", "2010", "2", "2008", "4"], ["Hamilton Academical", "2", "1992", "2", "2012", "4"], ["Dundee", "2", "2009", "1", "1994", "3"], ["Inverness Caledonian Thistle", "1", "2003", "2", "2009", "3"], ["Airdrie United", "1", "2008", "1", "2003", "2"], ["St. Johnstone", "1", "2007", "1", "1996", "2"], ["St. Mirren", "1", "2005", "1", "1993", "2"], ["Alloa Athletic", "1", "1999", "1", "2001", "2"], ["Stranraer", "1", "1996", "0", "\u2014", "1"], ["Stenhousemuir", "1", "1995", "0", "\u2014", "1"], ["Ayr United", "0", "\u2014", "2", "1991", "2"], ["Partick Thistle", "0", "\u2014", "1", "2013", "1"], ["Dunfermline Athletic", "0", "\u2014", "1", "2007", "1"], ["Clyde", "0", "\u2014", "1", "2006", "1"], ["Brechin City", "0", "\u2014", "1", "2002", "1"], ["Livingston", "0", "\u2014", "1", "2000", "1"], ["Dundee United", "0", "\u2014", "1", "1995", "1"], ["Morton", "0", "\u2014", "1", "1992", "1"], ["Celtic", "10", "2019", "6", "2018", "16"], ["Rangers", "9", "2010", "4", "2016", "13"], ["Hibernian", "3", "2016", "6", "2013", "9"], ["Hearts", "4", "2012", "5", "2006", "9"], ["Kilmarnock", "1", "2012", "4", "2019", "5"], ["Motherwell", "2", "2018", "2", "2011", "4"], ["Aberdeen", "1", "1995", "3", "2017", "4"], ["Livingston", "0", "\u2014", "2", "2019", "2"], ["St. Johnstone", "1", "2014", "0", "\u2014", "1"], ["Dundee", "1", "1910", "0", "\u2014", "1"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Club", "Wins", "Last final won", "Runners-up", "Last final lost", "Total final appearances"], "add_description": "The name of this table is Scottish Challenge Cup Finalists, and the headers of this table are Club,Wins,Last final won,Runners-up,Last final lost,Total final appearances.", "sql": {"query": "SELECT Wins FROM Scottish Challenge Cup Finalists WHERE Club = 'Dunfermline Athletic' AND `Total final appearances` < 2;", "length": 120}, "source": "wikisql"} +{"description": "in which major competitions did yoichiro kakitani have at least 3 starts?", "label": ["2006 AFC U-17 Championship", "2008 AFC Youth Championship qualification"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "team_competition_stats", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Category", "type": "TEXT"}, {"name": "Appearances\\nStart", "type": "INT"}, {"name": "Appearances\\nSub", "type": "INT"}, {"name": "Goals", "type": "INT"}, {"name": "Team Record", "type": "TEXT"}], "rows": [["Japan", "2006 AFC U-17 Championship qualification", "U-15", "1", "0", "0", "Qualified"], ["Japan", "2006 AFC U-17 Championship", "U-16", "4", "1", "4", "Champions"], ["Japan", "2007 FIFA U-17 World Cup", "U-17", "1", "2", "2", "Round 1"], ["Japan", "2008 AFC Youth Championship qualification", "U-18", "4", "0", "2", "Qualified"], ["Japan", "2008 AFC U-19 Championship", "U-19", "1", "1", "0", "Quarterfinal"], ["Japan", "2013 EAFF East Asian Cup", "Senior", "2", "0", "3", "Champions"], ["Team", "Competition", "Category", "Appearances\nStart", "Appearances\nSub", "Goals", "Team Record"], ["Spain", "2010 World Cup", "Senior", "6", "0", "5", "Champions"], ["Germany", "2009 UEFA European Under-21 Championship", "U-21", "5", "1", "3", "Semifinals"], ["Brazil", "2014 FIFA World Cup", "Senior", "7", "0", "10", "Fourth place"], ["Argentina", "2008 Toulon Tournament", "U-20", "4", "2", "5", "Champions"], ["England", "2015 FIFA Women's World Cup", "Senior", "4", "0", "3", "Third place"], ["France", "2013 UEFA European Under-21 Championship", "U-21", "3", "2", "1", "Group stage"], ["Italy", "2010 FIFA World Cup", "Senior", "3", "1", "2", "Group stage"], ["Portugal", "2016 UEFA European Championship", "Senior", "7", "1", "3", "Champions"], ["Netherlands", "2014 FIFA World Cup", "Senior", "7", "0", "15", "Third place"], ["Mexico", "2012 Summer Olympics", "U-23", "6", "0", "9", "Gold medal"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Team", "Competition", "Category", "Appearances\\nStart", "Appearances\\nSub", "Goals", "Team Record"], "add_description": "The name of this table is team_competition_stats, and the headers of this table are Team,Competition,Category,Appearances\\nStart,Appearances\\nSub,Goals,Team Record.", "sql": {"query": "SELECT Competition FROM team_competition_stats WHERE Team = 'Yoichiro Kakitani' AND Appearances_Start >= 3;", "length": 107}, "source": "wikitq"} +{"description": "What was the home teams score at Victoria Park when attendance was more than 12,000?", "label": ["16.11 (107)"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Australian Rules Football Matches", "table_info": {"columns": [{"name": "Home team", "type": "TEXT"}, {"name": "Home team score", "type": "TEXT"}, {"name": "Away team", "type": "TEXT"}, {"name": "Away team score", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Crowd", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["Melbourne", "16.19 (115)", "Richmond", "9.11 (65)", "MCG", "22,382", "30 April 1927"], ["Collingwood", "16.11 (107)", "Geelong", "12.12 (84)", "Victoria Park", "20,000", "30 April 1927"], ["Carlton", "9.15 (69)", "South Melbourne", "10.10 (70)", "Princes Park", "28,000", "30 April 1927"], ["St Kilda", "12.16 (88)", "Hawthorn", "11.2 (68)", "Junction Oval", "12,000", "30 April 1927"], ["North Melbourne", "9.21 (75)", "Fitzroy", "10.11 (71)", "Arden Street Oval", "10,000", "30 April 1927"], ["Footscray", "10.3 (63)", "Essendon", "16.14 (110)", "Western Oval", "18,000", "30 April 1927"], ["Hawthorn", "12.8 (80)", "Richmond", "9.15 (69)", "MCG", "25,000", "1 May 2021"], ["Geelong", "16.12 (108)", "Collingwood", "10.6 (66)", "GMHBA Stadium", "28,000", "1 May 2021"], ["Essendon", "14.10 (94)", "Melbourne", "9.12 (66)", "MCG", "30,000", "1 May 2021"], ["Sydney", "10.11 (71)", "Brisbane", "8.14 (62)", "SCG", "20,000", "1 May 2021"], ["Western Bulldogs", "13.17 (95)", "Adelaide", "8.8 (56)", "Mars Stadium", "15,000", "1 May 2021"], ["Fremantle", "10.9 (69)", "North Melbourne", "12.12 (84)", "Optus Stadium", "25,000", "1 May 2021"], ["GWS Giants", "13.12 (90)", "Carlton", "9.11 (65)", "Giants Stadium", "18,000", "1 May 2021"], ["Gold Coast", "9.13 (67)", "Port Adelaide", "16.6 (102)", "Metricon Stadium", "12,000", "1 May 2021"], ["Collingwood", "11.9 (75)", "Essendon", "10.13 (73)", "MCG", "40,000", "2 May 2021"], ["Richmond", "14.9 (93)", "Melbourne", "11.12 (78)", "MCG", "35,000", "2 May 2021"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Home team", "Home team score", "Away team", "Away team score", "Venue", "Crowd", "Date"], "add_description": "The name of this table is Australian Rules Football Matches, and the headers of this table are Home team,Home team score,Away team,Away team score,Venue,Crowd,Date.", "sql": {"query": "SELECT [Home team score]FROM [Australian Rules Football Matches]WHERE Venue='Victoria Park' AND Crowd>'12,000'", "length": 110}, "source": "wikisql"} +{"description": "which competitions did she compete in before the 2001 world championships?", "label": ["World Youth Championships", "World Junior Championships", "European Junior Championships"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Athletics Performances", "table_info": {"columns": [{"name": "Year", "type": "int"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1999", "World Youth Championships", "Bydgoszcz, Poland", "12th", ""], ["2000", "World Junior Championships", "Santiago, Chile", "5th", ""], ["2001", "European Junior Championships", "Grosseto, Italy", "2nd", "61.97 m"], ["2001", "World Championships", "Edmonton, Canada", "23rd", "61.26 m"], ["2002", "World Junior Championships", "Kingston, Jamaica", "2nd", "63.91 m"], ["2002", "European Championships", "Munich, Germany", "26th", "60.28 m"], ["2006", "European Championships", "Gothenburg, Sweden", "26th", "62.39 m"], ["2007", "World Student Games", "Bangkok, Thailand", "5th", "64.95 m"], ["2007", "World Championships", "Osaka, Japan", "13th", "68.15 m"], ["2008", "Olympic Games", "Beijing, PR China", "8th", "71.00 m"], ["2008", "World Athletics Final", "Stuttgart, Germany", "2nd", "71.40 m"], ["2009", "World Student Games", "Belgrade, Serbia", "2nd", "72.85 m"], ["2009", "World Championships", "Berlin, Germany", "3rd", "74.79 m"], ["2009", "World Athletics Final", "Thessaloniki, Greece", "3rd", "70.45 m"], ["2012", "European Championships", "Helsinki, Finland", "2nd", "73.34 m"], ["2010", "World Junior Championships", "Moncton, Canada", "1st", "75.25 m"], ["2011", "European U23 Championships", "Ostrava, Czech Republic", "3rd", "73.80 m"], ["2013", "World Championships", "Moscow, Russia", "7th", "77.43 m"], ["2014", "European Championships", "Z\u00fcrich, Switzerland", "1st", "80.30 m"], ["2015", "World Championships", "Beijing, PR China", "5th", "78.67 m"], ["2016", "European Championships", "Amsterdam, Netherlands", "1st", "81.36 m"], ["2017", "World Championships", "London, United Kingdom", "2nd", "79.81 m"], ["2018", "European Championships", "Berlin, Germany", "1st", "89.47 m"], ["2019", "World Championships", "Doha, Qatar", "3rd", "85.94 m"], ["2021", "Olympic Games", "Tokyo, Japan", "1st", "82.96 m"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Year", "Competition", "Venue", "Position", "Notes"], "add_description": "The name of this table is Athletics Performances, and the headers of this table are Year,Competition,Venue,Position,Notes.", "sql": {"query": "SELECT CompetitionFROM Athletics PerformancesWHERE Year < '2001'AND Competition != 'World Championships';", "length": 105}, "source": "wikitq"} +{"description": "What is Round, when Winner is \"Ivanovic\", when Year is less than 2008, and when Tournament is \"Paris\"?", "label": ["QF"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "tennis_results", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Tournament", "type": "TEXT"}, {"name": "Surface", "type": "TEXT"}, {"name": "Round", "type": "TEXT"}, {"name": "Winner", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}], "rows": [["2005", "Miami", "Hard", "4R", "Ivanovic", "6\u20133, 3\u20136, 7\u20135"], ["2006", "Sydney", "Hard", "QF", "Kuznetsova", "7\u20136 (7\u20133) , 6\u20133"], ["2007", "Berlin", "Clay", "F", "Ivanovic", "3\u20136, 6\u20134, 7\u20136 (7\u20134)"], ["2007", "Paris", "Clay", "QF", "Ivanovic", "6\u20130, 3\u20136, 6\u20131"], ["2007", "Madrid", "Hard (i)", "Round Robin", "Ivanovic", "6\u20131, 4\u20136, 7\u20135"], ["2008", "Indian Wells", "Hard", "F", "Ivanovic", "6\u20134, 6\u20133"], ["2010", "Belgrade", "Hard (i)", "N/A", "Kuznetsova", "6\u20131, 6\u20134"], ["2011", "Beijing", "Hard", "2R", "Ivanovic", "6\u20132, 6\u20133"], ["2012", "Moscow", "Clay (i)", "N/A", "Kuznetsova", "6\u20132, 2\u20136, 6\u20134"], ["2012", "Rome", "Clay", "1R", "Ivanovic", "6\u20134, 6\u20133"], ["2013", "Miami", "Hard", "3R", "Ivanovic", "6\u20133, 6\u20133"], ["2009", "Paris", "Clay", "SF", "Kuznetsova", "7\u20136 (7\u20134), 6\u20134"], ["2014", "Sydney", "Hard", "F", "Ivanovic", "6\u20132, 5\u20137, 7\u20136 (7\u20135)"], ["2015", "Wimbledon", "Grass", "3R", "Kuznetsova", "6\u20133, 7\u20136 (7\u20135)"], ["2016", "Miami", "Hard", "QF", "Ivanovic", "7\u20135, 6\u20134"], ["2017", "Roland Garros", "Clay", "F", "Kuznetsova", "6\u20134, 6\u20134"], ["2018", "Stuttgart", "Clay", "QF", "Ivanovic", "6\u20132, 6\u20131"], ["2018", "Cincinnati", "Hard", "2R", "Kuznetsova", "6\u20133, 6\u20132"], ["2019", "Beijing", "Hard", "SF", "Ivanovic", "7\u20136 (7\u20134), 6\u20132"], ["2020", "Australian Open", "Hard", "4R", "Kuznetsova", "6\u20134, 6\u20133"], ["2021", "Miami", "Hard", "F", "Ivanovic", "6\u20133, 6\u20134"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Year", "Tournament", "Surface", "Round", "Winner", "Score"], "add_description": "The name of this table is tennis_results, and the headers of this table are Year,Tournament,Surface,Round,Winner,Score.", "sql": {"query": "SELECT RoundFROM tennis_resultsWHERE Winner = \"Ivanovic\"AND Year < 2008AND Tournament = \"Paris\";", "length": 96}, "source": "wikisql"} +{"description": "What was the result at A Arena, the SL league, and a match number over 16?", "label": ["63\u201385"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Basketball Matches", "table_info": {"columns": [{"name": "Match", "type": "TEXT"}, {"name": "League", "type": "TEXT"}, {"name": "Date & Time ( CET )", "type": "TEXT"}, {"name": "Arena", "type": "TEXT"}, {"name": "Team and Score", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}], "rows": [["1", "FM", "07.09.07, 18:30", "A", "Fortitudo Bologna \u2013 CSKA Moscow", "91\u201366"], ["2", "FM", "12.09.07, 20:30", "A", "Ferrara \u2013 CSKA Moscow", "57\u201377"], ["3", "FM", "15.09.07, 19:45", "A", "Unicaja M\u00e1laga \u2013 CSKA Moscow", "63\u201372"], ["4", "FM", "16.09.07, 20:30", "A", "Montepaschi Siena \u2013 CSKA Moscow", "72\u201367"], ["5", "FM", "19.09.07, 20:45", "A", "Benetton Treviso \u2013 CSKA Moscow", "65\u201364"], ["6", "FM", "21.09.07, 19:00", "A", "Be\u015fikta\u015f Cola Turka \u2013 CSKA", "83\u201390"], ["7", "FM", "22.09.07, 21:00", "A", "Virtus Bologna \u2013 CSKA Moscow", "106\u201377"], ["8", "CBA", "30.09.07, 13:10", "A", "Sydney Kings \u2013 CSKA Moscow", "62\u201371"], ["9", "CBA", "01.10.07, 08:30", "A", "China \u2013 CSKA Moscow", "77\u201383"], ["10", "SL", "03.10.07, 10:00", "A", "Spartak Primorje \u2013 CSKA Moscow", "63\u201389"], ["11", "SL", "05.10.07, 12:30", "A", "Enisey \u2013 CSKA Moscow", "63\u201383"], ["12", "SL", "06.10.07, 12:00", "A", "Sibirtelecom \u2013 CSKA Moscow", "60\u2013104"], ["13", "SL", "13.10.07, 16:00", "H", "CSKA Moscow \u2013 Lokomotiv Rostov", "92\u201369"], ["14", "SL", "17.10.07, 17:00", "H", "CSKA Moscow \u2013 CSK VSS Samara", "97\u201362"], ["15", "EL", "22.10.07, 20:15", "A", "Prokom Trefl Sopot \u2013 CSKA Moscow", "69\u201388"], ["16", "SL", "27.10.07, 13:30", "A", "Ural Great \u2013 CSKA Moscow", "69\u201375"], ["17", "EL", "31.10.07, 18:15", "H", "CSKA Moscow \u2013 Lokomotiv Rostov", "74\u201370"], ["18", "SL", "01.11.07, 16:00", "H", "CSKA Moscow \u2013 Triumph Lyubertsy", "93\u201374"], ["19", "EL", "07.11.07, 20:45", "A", "Olimpija Ljubljana \u2013 CSKA", "74\u201372"], ["20", "SL", "10.11.07, 15:00", "H", "CSKA Moscow \u2013 Dynamo Moscow", "80\u201382"], ["21", "EL", "14.11.07, 18:15", "H", "CSKA Moscow \u2013 Olympiacos", "88\u201379"], ["22", "SL", "17.11.07, 13:00", "A", "Universitet \u2013 CSKA Moscow", "63\u201385"], ["23", "EL", "21.11.07, 20:15", "H", "CSKA Moscow \u2013 BC \u017dalgiris", "78\u201370"], ["24", "SL", "24.11.07, 17:00", "H", "CSKA Moscow \u2013 UNICS Kazan", "93\u201361"], ["25", "EL", "29.11.07, 22:00", "A", "TAU Cer\u00e1mica \u2013 CSKA Moscow", "76\u201385"], ["26", "SL", "02.12.07, 17:00", "H", "CSKA Moscow \u2013 Spartak St. Pet.", "78\u201365"], ["27", "EL", "05.12.07, 20:15", "H", "CSKA Moscow \u2013 Virtus Bologna", "79\u201353"], ["28", "FM", "10.12.07, 21:00", "A", "BC Khimki \u2013 CSKA Moscow", "70\u201378"], ["29", "CBA", "14.12.07, 14:10", "A", "Melbourne Tigers \u2013 CSKA Moscow", "54\u201368"], ["30", "SL", "17.12.07, 16:00", "H", "CSKA Moscow \u2013 BC Krasnye", "101\u201385"], ["31", "EL", "20.12.07, 19:30", "H", "CSKA Moscow \u2013 Panathinaikos", "90\u201380"], ["32", "SL", "24.12.07, 12:00", "A", "Temp-SUMZ \u2013 CSKA Moscow", "57\u201387"], ["33", "FM", "27.12.07, 18:00", "A", "Benetton Basket \u2013 CSKA Moscow", "70\u201369"], ["34", "CBA", "30.12.07, 11:30", "A", "New Zealand Breakers \u2013 CSKA Moscow", "64\u201377"], ["35", "SL", "02.01.08, 15:00", "H", "CSKA Moscow \u2013 BC Nizhny", "96\u201374"], ["36", "EL", "05.01.08, 20:15", "A", "Efes Pilsen \u2013 CSKA Moscow", "80\u201389"], ["37", "SL", "08.01.08, 17:00", "H", "CSKA Moscow \u2013 Lokomotiv-Kuban", "89\u201371"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Match", "League", "Date & Time ( CET )", "Arena", "Team and Score", "Result"], "add_description": "The name of this table is Basketball Matches, and the headers of this table are Match,League,Date & Time ( CET ),Arena,Team and Score,Result.", "sql": {"query": "SELECT Result FROM Basketball Matches WHERE Arena = 'A' AND League = 'SL' AND Match > 16;", "length": 89}, "source": "wikisql"} +{"description": "What was the score against Portland in game numbers under 20?", "label": ["L 97\u201398 (OT)"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "game_results", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "High points", "type": "TEXT"}, {"name": "High rebounds", "type": "TEXT"}, {"name": "High assists", "type": "TEXT"}, {"name": "Location Attendance", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["17", "December 2", "@ Denver", "L 93\u2013132 (OT)", "Chris Bosh (24)", "Chris Bosh (12)", "Jos\u00e9 Calder\u00f3n (7)", "Pepsi Center 14,243", "8\u20139"], ["18", "December 5", "@ Utah", "L 87\u2013114 (OT)", "Chris Bosh (18)", "Chris Bosh (11)", "Jos\u00e9 Calder\u00f3n (8)", "EnergySolutions Arena 19,911", "8\u201310"], ["19", "December 7", "Portland", "L 97\u201398 (OT)", "Jermaine O'Neal (24)", "Jermaine O'Neal (8)", "Jos\u00e9 Calder\u00f3n (13)", "Air Canada Centre 17,671", "8\u201311"], ["20", "December 9", "@ Cleveland", "L 94\u2013114 (OT)", "Joey Graham (17)", "Chris Bosh (11)", "Jermaine O'Neal (4)", "Quicken Loans Arena 20,049", "8\u201312"], ["21", "December 10", "Indiana", "W 101\u201388 (OT)", "Jason Kapono (25)", "Chris Bosh (10)", "Jos\u00e9 Calder\u00f3n (14)", "Air Canada Centre 17,877", "9\u201312"], ["22", "December 12", "@ New Jersey", "W 101\u201379 (OT)", "Chris Bosh (18)", "Jamario Moon (9)", "Roko Uki\u0107 (5)", "Izod Center 13,926", "10\u201312"], ["23", "December 14", "New Orleans", "L 91\u201399 (OT)", "Chris Bosh (25)", "Chris Bosh , Jamario Moon (8)", "Jos\u00e9 Calder\u00f3n (7)", "Air Canada Centre 18,537", "10\u201313"], ["24", "December 15", "New Jersey", "L 87\u201394 (OT)", "Chris Bosh , Jason Kapono (17)", "Chris Bosh , Jamario Moon (9)", "Jos\u00e9 Calder\u00f3n (8)", "Air Canada Centre 18,561", "10\u201314"], ["25", "December 17", "Dallas", "L 86\u201396 (OT)", "Jermaine O'Neal (19)", "Chris Bosh , Jamario Moon (9)", "Jos\u00e9 Calder\u00f3n (10)", "Air Canada Centre 18,832", "10\u201315"], ["26", "December 19", "@ Oklahoma City", "L 83\u201391 (OT)", "Chris Bosh (22)", "Chris Bosh (16)", "Jos\u00e9 Calder\u00f3n (8)", "Ford Center 18,806", "10\u201316"], ["27", "December 20", "@ San Antonio", "L 97\u2013107 (OT)", "Jermaine O'Neal (24)", "Chris Bosh , Jermaine O'Neal", "Chris Bosh , Jos\u00e9 Calder\u00f3n (4)", "AT&T Center 17,227", "10\u201317"], ["28", "December 22", "@ L.A. Clippers", "W 97\u201375 (OT)", "Chris Bosh (31)", "Jermaine O'Neal (9)", "Jos\u00e9 Calder\u00f3n (9)", "Staples Center 16,094", "11\u201317"], ["29", "December 26", "@ Sacramento", "W 107\u2013101 (OT)", "Jermaine O'Neal (36)", "Jermaine O'Neal (9)", "Jos\u00e9 Calder\u00f3n (6)", "ARCO Arena 12,059", "12\u201317"], ["30", "December 27", "@ Portland", "L 89\u2013102 (OT)", "Chris Bosh (29)", "Chris Bosh (9)", "Jos\u00e9 Calder\u00f3n (8)", "Rose Garden 20,588", "12\u201318"], ["31", "December 29", "@ Golden State", "L 111\u2013117 (OT)", "Chris Bosh (30)", "Chris Bosh (14)", "Jos\u00e9 Calder\u00f3n (16)", "Oracle Arena 19,596", "12\u201319"], ["32", "December 31", "Denver", "L 107\u2013114 (OT)", "Andrea Bargnani (26)", "Chris Bosh (11)", "Jos\u00e9 Calder\u00f3n (11)", "Air Canada Centre 18,879", "12\u201320"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Game", "Date", "Team", "Score", "High points", "High rebounds", "High assists", "Location Attendance", "Record"], "add_description": "The name of this table is game_results, and the headers of this table are Game,Date,Team,Score,High points,High rebounds,High assists,Location Attendance,Record.", "sql": {"query": "SELECT Score FROM game_results WHERE Game < 20 AND Team = 'Portland';", "length": 69}, "source": "wikisql"} +{"description": "Which November has a Game smaller than 16, and Points larger than 22?", "label": ["none"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "game_results", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "November", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["13", "2", "@ Florida Panthers", "4\u20133", "10\u20133\u20130", "20"], ["14", "4", "Quebec Nordiques", "4\u20131", "11\u20133\u20130", "22"], ["15", "6", "@ Toronto Maple Leafs", "3\u20135", "11\u20134\u20130", "22"], ["16", "7", "Vancouver Canucks", "2\u20135", "11\u20135\u20130", "22"], ["17", "10", "@ Buffalo Sabres", "5\u20133", "12\u20135\u20130", "24"], ["18", "11", "New Jersey Devils", "3\u20135", "12\u20136\u20130", "24"], ["19", "13", "Buffalo Sabres", "2\u20137", "12\u20137\u20130", "24"], ["20", "16", "@ Pittsburgh Penguins", "5\u201311", "12\u20138\u20130", "24"], ["21", "18", "Hartford Whalers", "6\u20133", "13\u20138\u20130", "26"], ["22", "20", "@ Boston Bruins", "5\u20135 OT", "13\u20138\u20131", "27"], ["23", "21", "New York Islanders", "4\u20135 OT", "13\u20139\u20131", "27"], ["24", "24", "Montreal Canadiens", "9\u20132", "14\u20139\u20131", "29"], ["25", "26", "Tampa Bay Lightning", "3\u20130", "15\u20139\u20131", "31"], ["26", "27", "@ Tampa Bay Lightning", "4\u20133 OT", "16\u20139\u20131", "33"], ["27", "1", "New York Rangers", "5-4", "17-9-1", "35"], ["28", "3", "@ Philadelphia Flyers", "2-3", "17-10-1", "35"], ["29", "5", "Edmonton Oilers", "3-6", "17-11-1", "35"], ["30", "8", "@ Los Angeles Kings", "1-4", "17-12-1", "35"], ["31", "9", "San Jose Sharks", "2-4", "17-13-1", "35"], ["32", "12", "@ Washington Capitals", "4-1", "18-13-1", "37"], ["33", "14", "@ New York Rangers", "3-5", "18-14-1", "37"], ["34", "15", "Philadelphia Flyers", "5-2", "19-14-1", "39"], ["35", "17", "@ Montreal Canadiens", "1-2", "19-15-1", "39"], ["36", "19", "Boston Bruins", "2-3", "19-16-1", "39"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Game", "November", "Opponent", "Score", "Record", "Points"], "add_description": "The name of this table is game_results, and the headers of this table are Game,November,Opponent,Score,Record,Points.", "sql": {"query": "SELECT NovemberFROM game_resultsWHERE Game < 16 AND Points > 22;", "length": 64}, "source": "wikisql"} +{"description": "Name the plaform for year more than 2006 and developer of 3g studios", "label": ["PlayStation Portable"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "SWAT Games", "table_info": {"columns": [{"name": "Title", "type": "TEXT"}, {"name": "Year", "type": "TEXT"}, {"name": "Platform", "type": "TEXT"}, {"name": "Developer", "type": "TEXT"}, {"name": "Publisher", "type": "TEXT"}], "rows": [["SWAT 3: Close Quarters Battle", "1999", "Microsoft Windows", "Sierra Northwest", "Sierra Entertainment"], ["SWAT: Global Strike Team", "2003", "PlayStation 2 , Xbox", "Argonaut Games", "Argonaut Games Sierra Entertainment"], ["SWAT 4", "2005", "Microsoft Windows", "Irrational Games", "Vivendi Universal Games Sierra Entertainment"], ["SWAT 4: The Stetchkov Syndicate", "2006", "Microsoft Windows", "Irrational Games", "Vivendi Universal Games Sierra Entertainment"], ["SWAT Force", "2006", "Mobile phones", "Kaolink", "Vivendi Games Mobile"], ["SWAT: Target Liberty", "2007", "PlayStation Portable", "3G Studios", "Sierra Entertainment"], ["SWAT Elite Troops", "2008", "Mobile phones", "Rovio Mobile", "Vivendi Games Mobile"], ["Super Mario Bros.", "1985", "Nintendo Entertainment System", "Nintendo", "Nintendo"], ["Tetris", "1984", "Various platforms", "Alexey Pajitnov", "Various publishers"], ["Doom", "1993", "Microsoft Windows", "id Software", "GT Interactive Software"], ["Myst", "1993", "Mac OS", "Cyan", "Br\u00f8derbund Software"], ["SimCity 2000", "1994", "Microsoft Windows", "Maxis", "Maxis Electronic Arts"], ["Gran Turismo", "1997", "PlayStation", "Polyphony Digital", "Sony Computer Entertainment"], ["Half-Life", "1998", "Microsoft Windows", "Valve Corporation", "Sierra Studios"], ["The Sims", "2000", "Microsoft Windows", "Maxis", "Electronic Arts"], ["Grand Theft Auto III", "2001", "PlayStation 2", "DMA Design", "Rockstar Games"], ["Halo: Combat Evolved", "2001", "Xbox, Microsoft Windows, Mac OS", "Bungie", "Microsoft Game Studios"]]}}, "evaluation": "", "example": "", "type": ["comparison"], "heads": ["Title", "Year", "Platform", "Developer", "Publisher"], "add_description": "The name of this table is SWAT Games, and the headers of this table are Title,Year,Platform,Developer,Publisher.", "sql": {"query": "SELECT Platform FROM `SWAT Games` WHERE Year > 2006 AND Developer = '3G Studios';", "length": 81}, "source": "wikisql"} +{"description": "Name the least matches for runs being 276", "label": ["12.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Cricket Bowling Statistics", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Matches", "type": "TEXT"}, {"name": "Overs", "type": "TEXT"}, {"name": "Runs", "type": "TEXT"}, {"name": "Wickets", "type": "TEXT"}, {"name": "Best", "type": "TEXT"}, {"name": "Econ", "type": "TEXT"}, {"name": "S/Rate", "type": "TEXT"}, {"name": "4/inns", "type": "TEXT"}, {"name": "5+/inns", "type": "TEXT"}, {"name": "Average", "type": "TEXT"}], "rows": [["Yasir Arafat", "Kent Spitfires", "13", "44", "341", "23", "4/17", "7.75", "11.48", "2", "0", "14.82"], ["Tyron Henderson", "Middlesex Crusaders", "12", "47", "349", "21", "4/29", "7.42", "13.43", "1", "0", "16.61"], ["Andrew Hall", "Northamptonshire Steelbacks", "9", "34.1", "271", "20", "6/21", "7.93", "10.25", "0", "2", "13.55"], ["Danish Kaneria", "Essex Eagles", "12", "45.1", "276", "20", "4/22", "6.11", "13.55", "1", "0", "13.80"], ["Tim Murtagh", "Middlesex Crusaders", "13", "50", "400", "20", "3/15", "8.00", "15.00", "0", "0", "20.00"], ["Johann Louw", "Northamptonshire Steelbacks", "11", "39", "325", "17", "3/18", "8.33", "13.76", "0", "0", "19.12"], ["James Tredwell", "Kent Spitfires", "13", "41", "264", "16", "3/9", "6.43", "15.38", "0", "0", "16.50"], ["Graham Napier", "Essex Eagles", "12", "40.1", "282", "16", "4/10", "7.02", "15.06", "1", "0", "17.62"], ["Ian Salisbury", "Warwickshire Bears", "10", "32", "175", "15", "3/14", "5.47", "12.80", "0", "0", "11.67"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Player", "Team", "Matches", "Overs", "Runs", "Wickets", "Best", "Econ", "S/Rate", "4/inns", "5+/inns", "Average"], "add_description": "The name of this table is Cricket Bowling Statistics, and the headers of this table are Player,Team,Matches,Overs,Runs,Wickets,Best,Econ,S/Rate,4/inns,5+/inns,Average.", "sql": {"query": "SELECT Player FROM Cricket Bowling Statistics WHERE Runs = 276 ORDER BY Matches LIMIT 1;", "length": 88}, "source": "wikisql"} +{"description": "first player picked who attended school in california", "label": ["Michael Miley"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "NBA Draft History", "table_info": {"columns": [{"name": "Round", "type": "INTEGER"}, {"name": "Pick", "type": "INTEGER"}, {"name": "Player", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "School/Club Team", "type": "TEXT"}], "rows": [["1", "15", "Reggie Johnson", "PF/C", "United States", "Tennessee"], ["2", "39", "Michael Miley", "", "United States", "California State-Long Beach"], ["3", "60", "Lavon Mercer", "", "United States", "Georgia"], ["3", "61", "Rich Yonakor", "", "United States", "North Carolina"], ["4", "83", "Calvin Roberts", "", "United States", "California State-Fullerton"], ["5", "107", "Gib Hinz", "", "United States", "Wisconsin-Eau Claire"], ["6", "129", "Dean Uthoff", "", "United States", "Iowa State"], ["7", "153", "Allan Zahn", "", "United States", "Arkansas"], ["8", "172", "Bill Bailey", "", "United States", "Texas Pan-American"], ["9", "192", "Al Williams", "", "United States", "North Texas State"], ["10", "209", "Steve Schall", "", "United States", "Arkansas"], [11, 221, "Jared Smith", "PF", "United States", "Oregon State"], [2, 47, "Alex Johnson", "SG", "United States", "Memphis"], [4, 85, "Nicole Chen", "SF", "China", "Shandong"], [3, 52, "Mateusz Kowalski", "C", "Poland", "Cracovia"], [1, 3, "John Brown", "PG", "Canada", "Ryerson"], [5, 118, "George Wilson", "PF", "United States", "Ohio State"], [6, 142, "Lucas Martinez", "SG", "Spain", "Real Madrid"], [7, 168, "Tom Green", "SF", "Australia", "Illawarra"], [8, 201, "Derek Lee", "PG", "United States", "San Diego State"], [9, 217, "Emily Hudson", "C", "United States", "Baylor"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Round", "Pick", "Player", "Position", "Nationality", "School/Club Team"], "add_description": "The name of this table is NBA Draft History, and the headers of this table are Round,Pick,Player,Position,Nationality,School/Club Team.", "sql": {"query": "SELECT Player FROM \"NBA Draft History\" WHERE \"School/Club Team\" LIKE '%California%' ORDER BY Pick ASC LIMIT 1;", "length": 110}, "source": "wikitq"} +{"description": "which island has the most area, tiree or kasos?", "label": ["Tiree"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Island Area by Country/Region", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "Island", "type": "TEXT"}, {"name": "Area\\n(km\u00b2)", "type": "REAL"}, {"name": "Area\\n(sq mi)", "type": "REAL"}, {"name": "Country/Countries/Region", "type": "TEXT"}], "rows": [["209", "Mljet", "100", "39", "Croatia"], ["210", "Kythnos", "99", "38", "Greece"], ["211", "Sylt", "99", "38", "Germany"], ["212", "Ask\u00f8y", "99", "38", "Norway"], ["213", "Santa Maria Island", "97", "37", "Portugal"], ["214", "Astypalaia", "97", "38", "Greece"], ["215", "Amager", "96", "37", "Denmark"], ["216", "Ithaki", "96", "37", "Greece"], ["217", "Bor\u00f0oy", "95", "37", "Faroe Islands, an autonomous region of Denmark"], ["218", "Salamis", "95", "37", "Greece"], ["219", "Skopelos", "95", "37", "Greece"], ["220", "Sheppey", "94", "36", "United Kingdom"], ["221", "Gr\u00e4s\u00f6", "93", "36", "Sweden"], ["222", "Lemland", "92", "36", "Finland"], ["223", "Vormsi", "92", "36", "Estonia"], ["224", "Rab", "91", "36", "Croatia"], ["225", "Ecker\u00f6", "91", "36", "Finland"], ["226", "\u00d6ja (island)", "90", "35", "Finland"], ["227", "Vis", "90", "35", "Croatia"], ["228", "Rolvs\u00f8y, Finnmark", "89", "34", "Norway"], ["229", "Tustna", "89", "34", "Norway"], ["230", "Austra", "88", "34", "Norway"], ["231", "Holsn\u00f8y", "88", "34", "Norway"], ["232", "Terschelling", "88", "34", "Netherlands"], ["233", "\u00c6r\u00f8", "88", "34", "Denmark"], ["234", "Belle \u00cele", "87", "34", "France"], ["235", "Mykonos", "86", "34", "Greece"], ["236", "K\u00e5gen", "86", "33", "Norway"], ["237", "\u00cele de R\u00e9", "85", "33", "France"], ["238", "Nordkval\u00f8ya", "84", "33", "Norway"], ["239", "Syros", "84", "33", "Greece"], ["240", "Aegina", "83", "32", "Greece"], ["241", "Formentera", "83", "32", "Spain"], ["242", "Pantelleria", "83", "32", "Italy"], ["243", "Ytre Vikna (outer island of Vikna archipelago)", "83", "32", "Norway"], ["244", "Benbecula", "82", "32", "United Kingdom"], ["245", "Rebbenes\u00f8ya", "82", "32", "Norway"], ["246", "F\u00f6hr", "82", "32", "Germany"], ["247", "Tiree", "78", "30", "United Kingdom"], ["248", "Ul\u00f8ya", "78", "30", "Norway"], ["249", "Coll", "77", "30", "United Kingdom"], ["250", "Otr\u00f8y (in M\u00f8re og Romsdal)", "76", "29", "Norway"], ["251", "Santorini", "76", "29", "Greece"], ["252", "Lo\u0161inj", "75", "29", "Croatia"], ["253", "Herts\u00f6n", "73", "28", "Sweden"], ["254", "Serifos", "73", "29", "Greece"], ["255", "Sifnos", "73", "29", "Greece"], ["256", "Storlandet (Finnish: Iso-Nauvo) (Nagu/Nauvo main island)", "72", "29", "Finland"], ["257", "T\u00e5singe", "70", "27", "Denmark"], ["258", "\u00c5l\u00f6n (in Pargas/Parainen)", "70", "27", "Finland"], ["259", "Engel\u00f8ya", "68", "26", "Norway"], ["260", "Finn\u00f8ya (in Nordland)", "68", "26", "Norway"], ["261", "Aln\u00f6n", "68", "26", "Sweden"], ["262", "Gozo", "67", "26", "Malta"], ["263", "Kasos", "66", "26", "Greece"], ["264", "Kyrklandet (in Korpo/Korppoo)", "64", "25", "Finland"], ["265", "Alonissos", "64", "25", "Greece"], ["266", "V\u00e5gs\u00f8y", "64", "25", "Norway"], ["267", "Frei", "63", "24", "Norway"], ["268", "Guernsey", "63", "24", "Guernsey, British Crown dependency"], ["269", "Ingar\u00f6", "63", "24", "Sweden"], ["270", "Pa\u0161man", "63", "24", "Croatia"], ["271", "Tilos", "63", "24", "Greece"], ["272", "Raasay", "62", "24", "United Kingdom"], ["273", "Graciosa Island", "62", "24", "Portugal"], ["274", "Ljuster\u00f6", "62", "24", "Sweden"], ["275", "Bolshoy Berezovy (in Beryozovye Islands, Gulf of Finland)", "60", "23", "Russia"], ["276", "Leka", "60", "23", "Norway"], ["277", "Sula (in M\u00f8re og Romsdal)", "59", "23", "Norway"], ["278", "Barra", "59", "23", "United Kingdom"], ["279", "\u0160olta", "59", "23", "Croatia"], ["280", "Ombo", "58", "22", "Norway"], ["281", "Ameland", "58", "22", "Netherlands"], ["282", "Symi", "58", "22", "Greece"], ["283", "Kivimaa (in Gustavs/Kustavi)", "57", "22", "Finland"], ["284", "Fan\u00f8", "56", "21.5", "Denmark"], ["285", "Dzharylgach", "56", "21.5", "Ukraine"], ["286", "\u00cele de Noirmoutier", "55.5", "21.5", "France"], ["287", "J\u00f8a", "55", "21", "Norway"], ["288", "Inner-Vikna (inner island of Vikna archipelago)", "55", "21", "Norway"], ["289", "Hems\u00f6n", "54", "21", "Sweden"], ["290", "Dyr\u00f8ya", "53", "20", "Norway"], ["291", "Leros", "53", "20", "Greece"], ["292", "Pyh\u00e4maa (in Nystad/Uusikaupunki)", "53", "20", "Finland"], ["293", "Vess\u00f6landet (in Borg\u00e5/Porvoo)", "52", "20", "Finland"], ["294", "M\u00f6rk\u00f6n", "52", "20", "Sweden"], ["295", "San Pietro Island", "51", "20", "Italy"], ["296", "Asinara", "51", "20", "Italy"], ["297", "Hydra", "50", "19", "Greece"], ["298", "Sanday, Orkney", "50", "19", "United Kingdom"], ["299", "Ugljan", "50", "19", "Croatia"], ["300", "Huftar\u00f8y", "50", "19", "Norway"], ["301", "Stor\u00f8ya", "50", "19", "Svalbard, \u00a0Norway"], ["302", "Wahlberg\u00f8ya", "50", "19", "Svalbard, \u00a0Norway"], ["303", "South Ronaldsay", "50", "19", "United Kingdom"], ["304", "Cres", "49", "19", "Croatia"], ["305", "Sunnm\u00f8re", "48", "18", "Norway"], ["306", "Kythira", "47", "18", "Greece"], ["307", "Alderney", "46", "18", "Alderney, British Crown dependency"], ["308", "Bol", "46", "18", "Croatia"], ["309", "Anafi", "45", "17", "Greece"], ["310", "Fehmarn", "45", "17", "Germany"], ["311", "Pag", "44", "17", "Croatia"], ["312", "R\u00f8v\u00e6r", "43", "16", "Norway"], ["313", "Kos", "42", "16", "Greece"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Rank", "Island", "Area\\n(km\u00b2)", "Area\\n(sq mi)", "Country/Countries/Region"], "add_description": "The name of this table is Island Area by Country/Region, and the headers of this table are Rank,Island,Area\\n(km\u00b2),Area\\n(sq mi),Country/Countries/Region.", "sql": {"query": "SELECT IslandFROM `Island Area by Country/Region`WHERE Island IN ('Tiree', 'Kasos')ORDER BY CAST(`Area\\n(sq mi)` AS INT) DESCLIMIT 1;", "length": 133}, "source": "wikitq"} +{"description": "Name the most goals for 1972 \u2013 1975, 1976 \u2013 1982", "label": ["32.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "football_player_statistics", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Period", "type": "TEXT"}, {"name": "Appearances\u00b9", "type": "TEXT"}, {"name": "Goals\u00b9", "type": "TEXT"}, {"name": "Nationality\u00b2", "type": "TEXT"}], "rows": [["Thierry Rabat", "Defender", "1986 \u2013 1988, 1989 \u2013 1990", "78", "3", "France"], ["\u00c9ric Rab\u00e9sandratana", "Defender", "1997 \u2013 2001", "135", "9", "France"], ["Adrien Rabiot", "Midfielder", "2012", "9", "0", "France"], ["Hocine Ragued", "Midfielder", "2005 \u2013 2006", "1", "0", "Tunisia"], ["Ra\u00ed", "Midfielder", "1993 \u2013 1998 \u2020", "215", "72", "Brazil"], ["Philippe Redon", "Forward", "1976 \u2013 1978", "75", "9", "France"], ["Reinaldo", "Forward", "2003 \u2013 2005", "78", "15", "Brazil"], ["Jacques R\u00e9mond", "Forward", "1970 \u2013 1972", "41", "15", "France"], ["\u00c9ric Renaut", "Defender", "1972 \u2013 1975, 1976 \u2013 1982", "289", "32", "France"], ["Christophe Revault", "Goalkeeper", "1997 \u2013 1998", "37", "0", "France"], ["Pierre Reynaud", "Midfielder", "1986 \u2013 1994", "125", "4", "France"], ["Ricardo", "Defender", "1991 \u2013 1995", "154", "17", "Brazil"], ["Jocelyn Rico", "Defender", "1988 \u2013 1989", "25", "0", "France"], ["David Rin\u00e7on", "Forward", "1989 \u2013 1992", "12", "0", "France"], ["Claude Rivet", "Midfielder", "1972 \u2013 1973", "5", "0", "France"], ["Laurent Robert", "Forward", "1999 \u2013 2002", "84", "35", "France"], ["Romain Rocchi", "Midfielder", "2002 \u2013 2004", "34", "0", "France"], ["Alain Roche", "Defender", "1992 \u2013 1998 \u2020", "222", "12", "France"], ["Dominique Rocheteau", "Forward", "1980 \u2013 1987", "253", "100", "France"], ["Bruno Rodriguez", "Forward", "1998 \u2013 2000", "20", "6", "France"], ["Cristian Rodr\u00edguez", "Midfielder", "2005 \u2013 2008", "50", "3", "Uruguay"], ["Ronaldinho *", "Midfielder", "2001 \u2013 2003", "77", "25", "Brazil"], ["Jean-Paul Rostagni", "Defender", "1971 \u2013 1972", "32", "0", "France"], ["J\u00e9r\u00f4me Rothen", "Midfielder", "2004 \u2013 2010", "181", "13", "France"], ["Bruno Roux", "Forward", "1987 \u2013 1988", "27", "1", "France"], ["Olivier Renard", "Goalkeeper", "2000 \u2013 2004", "38", "0", "Belgium"], ["Gianluca Rocchi", "Defender", "1997 \u2013 2000", "22", "1", "Italy"], ["Lucas Rodrigues Moura da Silva", "Forward", "2013 \u2013 2022", "248", "63", "Brazil"], ["Sergei Rebrov", "Forward", "2004 \u2013 2005", "24", "2", "Ukraine"], ["Milan Rapaic", "Midfielder", "1998 \u2013 1999", "3", "0", "Croatia"], ["Mariano Rivera", "Midfielder", "1986 \u2013 1990, 1991 \u2013 1992", "176", "5", "USA"], ["Roberto R\u00edos", "Defender", "1995 \u2013 1997", "63", "2", "Colombia"], ["Mauricio Romero", "Defender", "2013 \u2013 2015", "22", "1", "Argentina"], ["Kepa Arrizabalaga", "Goalkeeper", "2016 \u2013 2018", "54", "0", "Spain"], ["Heung-Min Son", "Forward", "2015 \u2013 Present", "236", "107", "South Korea"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Name", "Position", "Period", "Appearances\u00b9", "Goals\u00b9", "Nationality\u00b2"], "add_description": "The name of this table is football_player_statistics, and the headers of this table are Name,Position,Period,Appearances\u00b9,Goals\u00b9,Nationality\u00b2.", "sql": {"query": "SELECT Name, GoalsFROM football_player_statisticsWHERE Period = '1972 \u2013 1975, 1976 \u2013 1982'ORDER BY Goals DESCLIMIT 1;", "length": 117}, "source": "wikisql"} +{"description": "who has the highest rank?", "label": ["Petar Popangelov"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Athlete Event Results", "table_info": {"columns": [{"name": "Athlete", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Race 1\\nTime", "type": "TEXT"}, {"name": "Race 2\\nTime", "type": "TEXT"}, {"name": "Total\\nTime", "type": "TEXT"}, {"name": "Total\\nRank", "type": "TEXT"}], "rows": [["Stefan Shalamanov", "Giant Slalom", "DNF", "\u2013", "DNF", "\u2013"], ["Borislav Dimitrachkov", "Giant Slalom", "DNF", "\u2013", "DNF", "\u2013"], ["Lyubomir Popov", "Giant Slalom", "1:10.73", "DNF", "DNF", "\u2013"], ["Stefan Shalamanov", "Slalom", "58.68", "53.69", "1:52.37", "23"], ["Lyubomir Popov", "Slalom", "57.78", "53.03", "1:50.81", "19"], ["Borislav Dimitrachkov", "Slalom", "57.58", "53.23", "1:50.81", "19"], ["Petar Popangelov", "Slalom", "55.14", "51.20", "1:46.34", "16"], ["John Smith", "Giant Slalom", "DNF", "\u2013", "DNF", "\u2013"], ["Samantha Lee", "Giant Slalom", "DSQ", "\u2013", "DNF", "\u2013"], ["Mike Johnson", "Giant Slalom", "1:13.45", "1:15.68", "2:29.13", "27"], ["John Smith", "Slalom", "54.91", "51.43", "1:46.34", "16"], ["Samantha Lee", "Slalom", "59.04", "54.82", "1:53.86", "24"], ["Mike Johnson", "Slalom", "57.12", "52.45", "1:49.57", "18"], ["Emily Williams", "Giant Slalom", "DNF", "\u2013", "DSQ", "\u2013"], ["Emily Williams", "Slalom", "55.91", "51.97", "1:47.88", "15"], ["Adam Lee", "Giant Slalom", "DNF", "\u2013", "DNF", "\u2013"], ["Adam Lee", "Slalom", "1:01.25", "1:03.89", "2:05.14", "31"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Athlete", "Event", "Race 1\\nTime", "Race 2\\nTime", "Total\\nTime", "Total\\nRank"], "add_description": "The name of this table is Athlete Event Results, and the headers of this table are Athlete,Event,Race 1\\nTime,Race 2\\nTime,Total\\nTime,Total\\nRank.", "sql": {"query": "SELECT Athlete FROM `Athlete Event Results` ORDER BY `Total\\nRank` DESC LIMIT 1;", "length": 80}, "source": "wikitq"} +{"description": "what two hospitals holding consecutive rankings of 8 and 9 respectively, both provide 1200 hospital beds?", "label": ["Laguna Honda Hospital Rehabilitation Center", "Atascadero State Hospital"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Hospital Information", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "Hospital", "type": "TEXT"}, {"name": "City", "type": "TEXT"}, {"name": "County", "type": "TEXT"}, {"name": "# Beds", "type": "INTEGER"}, {"name": "Type of Hospital", "type": "TEXT"}], "rows": [["1", "Patton State Hospital", "Patton", "San Bernardino", "1500", "Mental Health"], ["2", "LA County & USC Medical Center", "Los Angeles", "Los Angeles", "1395", "General Acute Care"], ["3", "Napa State Hospital", "Napa", "Napa", "1385", "Mental Health"], ["4", "Sonoma Developmental Center", "Eldridge", "Sonoma", "1300", "Mental Health"], ["5", "Lanterman Developmental Center", "Pomona", "Los Angeles", "1286", "Rehabilitaion"], ["6", "Fairview Developmental Center", "Costa Mesa", "Orange", "1218", "Mental Health"], ["7", "Porterville Developmental Center", "Porterville", "Tulare", "1210", "Mental Health"], ["8", "Laguna Honda Hospital Rehabilitation Center", "San Francisco", "San Francisco", "1200", "Nursing Homes"], ["9", "Atascadero State Hospital", "Atascadero", "San Luis Obispo", "1200", "Mental Health"], ["10", "Veterans Home of California", "Yountville", "Napa", "1100", "Veteran Admin"], ["11", "Metropolitan State Hospital", "Norwalk", "Los Angeles", "1096", "Mental Health"], ["12", "VA Palo Alto Health Care System", "Palo Alto", "Santa Clara", "967", "Veteran Admin"], ["13", "Cedars-Sinai Medical Center", "West Hollywood", "Los Angeles", "952", "General Acute Care"], ["14", "Loma Linda University Medica Center", "Loma Linda", "San Bernardino", "822", "University/Teaching"], ["15", "UCLA Medical Center", "Los Angeles", "Los Angeles", "668", "General Acute Care"], ["16", "Kaweah Delta Regional Medical Center", "Visalia", "Tulare", "629", "General Acute Care"], ["17", "Naval Medical Center", "San Diego", "San Diego", "620", "Military"], ["18", "UCSD Medical Center", "San Diego", "San Diego", "594", "University/Teaching"], ["19", "UCSF Medical Center Mount Zion", "San Francisco", "San Francisco", "579", "General Acute Care"], ["20", "UCD Medical Center", "Sacramento", "Sacramento", "577", "University/Teaching"], ["21", "California Pacific/Calif Campus", "San Francisco", "San Francisco", "572", "General Acute Care"], ["22", "Long Beach Memorial Medical Center", "Long Beach", "Los Angeles", "568", "General Acute Care"], ["23", "Harbor UCLA Medical Center", "Torrance", "Los Angeles", "553", "General Acute Care"], ["24", "Mission Hospital Regional Medical Center", "Mission Viejo", "Orange", "552", "General Acute Care"], ["25", "Alta Bates Summit Medical Center", "Berkeley", "Alameda", "551", "General Acute Care"], ["26", "San Francisco General Hospital", "San Francisco", "San Francisco", "550", "General Acute Care"], ["27", "UCSF Medical Center at Parnassus", "San Francisco", "San Francisco", "536", "General Acute Care"], ["28", "Alta Bates Summit Medical Center", "Oakland", "Alameda", "534", "General Acute Care"], ["29", "Santa Clara Valley Medical Center", "San Jose", "Santa Clara", "524", "General Acute Care"], ["30", "Scripps Mercy Hospital", "San Diego", "San Diego", "523", "General Acute Care"], ["31", "Huntington Memorial Hospital", "Pasadena", "Los Angeles", "522", "General Acute Care"], ["32", "Adventist Medical Center", "Glendale", "Los Angeles", "508", "General Acute Care"], ["33", "Grossmont Hospital", "La Mesa", "San Diego", "481", "General Acute Care"], ["34", "Doctors Medical Center", "Modesto", "Stanislaus", "465", "General Acute Care"], ["35", "St. Bernardine Medical Center", "San Bernardino", "San Bernardino", "463", "General Acute Care"], ["36", "UCI Medical Center", "Orange", "Orange", "462", "General Acute Care"], ["37", "Stanford Medical Center", "Stanford", "Santa Clara", "460", "General Acute Care"], ["38", "Community Regional Medical Center", "Fresno", "Fresno", "457", "General Acute Care"], ["39", "Methodist Hospital", "Arcadia", "Los Angeles", "455", "General Acute Care"], ["40", "Providence St. Joseph Medical Center", "Burbank", "Los Angeles", "455", "General Acute Care"], ["41", "Hoag Memorial Hospital", "Newport Beach", "Orange", "450", "General Acute Care"], ["42", "Agnews Developmental Center", "San Jose", "Santa Clara", "450", "Mental Health"], ["43", "Jewish Home", "San Francisco", "San Francisco", "450", "Nursing Homes"], ["44", "St. Joseph Hospital Orange", "Orange", "Orange", "448", "General Acute Care"], ["45", "Presbyterian Intercommunity", "Whittier", "Los Angeles", "441", "General Acute Care"], ["46", "Kaiser Permanente Medical Center", "Fontana", "San Bernardino", "440", "General Acute Care"], ["47", "Kaiser Permanente Medical Center", "Los Angeles", "Los Angeles", "439", "General Acute Care"], ["48", "Pomona Valley Hospital Medical Center", "Pomona", "Los Angeles", "436", "General Acute Care"], ["49", "Sutter General Medical Center", "Sacramento", "Sacramento", "432", "General Acute Care"], ["50", "St. Mary Medical Center", "San Francisco", "San Francisco", "430", "General Acute Care"], ["50", "Good Samaritan Hospital", "San Jose", "Santa Clara", "429", "General Acute Care"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Rank", "Hospital", "City", "County", "# Beds", "Type of Hospital"], "add_description": "The name of this table is Hospital Information, and the headers of this table are Rank,Hospital,City,County,# Beds,Type of Hospital.", "sql": {"query": "SELECT Hospital, # BedsFROM `Hospital Information`WHERE (`Rank`=8 OR `Rank`=9) AND `# Beds`=1200ORDER BY `Rank` ASC;", "length": 116}, "source": "wikitq"} +{"description": "What is the earliest game with a score of 99-89?", "label": ["13.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Game Results", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["3", "Fri. Nov. 2", "Chicago Bulls", "96-82", "FleetCenter", "2-1"], ["4", "Sat. Nov. 3", "@ Milwaukee Bucks", "99-105", "Bradley Center", "2-2"], ["5", "Wed. Nov. 7", "Washington Wizards", "104-95", "FleetCenter", "3-2"], ["6", "Fri. Nov. 9", "Seattle SuperSonics", "104-94", "FleetCenter", "4-2"], ["7", "Wed. Nov. 14", "Indiana Pacers", "101-93", "FleetCenter", "5-2"], ["8", "Sat. Nov. 17", "@ Atlanta Hawks", "103-112", "Philips Arena", "5-3"], ["9", "Wed. Nov. 21", "Atlanta Hawks", "85-92", "FleetCenter", "5-4"], ["10", "Fri. Nov. 23", "Toronto Raptors", "89-91", "FleetCenter", "5-5"], ["11", "Sat. Nov. 24", "@ Washington Wizards", "84-88 (OT)", "MCI Center", "5-6"], ["12", "Tue. Nov. 27", "@ Miami Heat", "84-83", "American Airlines Arena", "6-6"], ["13", "Thu. Nov. 29", "@ Orlando Magic", "99-89", "TD Waterhouse Centre", "7-6"], ["1", "Fri. Oct. 26", "Los Angeles Lakers", "104-102", "Staples Center", "1-0"], ["2", "Sat. Oct. 27", "San Antonio Spurs", "87-90", "AT&T Center", "1-1"], ["3", "Fri. Nov. 2", "New York Knicks", "102-98", "Madison Square Garden", "2-1"], ["4", "Sat. Nov. 3", "@ Toronto Raptors", "91-95", "Air Canada Centre", "2-2"], ["5", "Thu. Nov. 8", "Miami Heat", "96-88", "FleetCenter", "3-2"], ["6", "Sat. Nov. 10", "@ New Jersey Nets", "102-94", "Continental Airlines Arena", "4-2"], ["7", "Wed. Nov. 14", "Detroit Pistons", "89-84", "FleetCenter", "5-2"], ["8", "Fri. Nov. 16", "@ Charlotte Bobcats", "97-91", "Time Warner Cable Arena", "6-2"], ["9", "Mon. Nov. 19", "@ Cleveland Cavaliers", "101-98", "Quicken Loans Arena", "7-2"], ["10", "Thu. Nov. 22", "Orlando Magic", "94-88", "FleetCenter", "8-2"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Game", "Date", "Opponent", "Score", "Location", "Record"], "add_description": "The name of this table is Game Results, and the headers of this table are Game,Date,Opponent,Score,Location,Record.", "sql": {"query": "SELECT Game, Date FROM `Game Results`WHERE Score = '99-89'ORDER BY Date ASCLIMIT 1;", "length": 83}, "source": "wikisql"} +{"description": "who came in earlier, tony maggs or jo siffert?", "label": ["Tony Maggs"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Grand Prix Result", "table_info": {"columns": [{"name": "Pos", "type": "INTEGER"}, {"name": "Driver", "type": "TEXT"}, {"name": "Entrant", "type": "TEXT"}, {"name": "Constructor", "type": "TEXT"}, {"name": "Time/Retired", "type": "TEXT"}, {"name": "Grid", "type": "INTEGER"}], "rows": [["1", "Jim Clark", "Team Lotus", "Lotus-Climax", "2.02:58.6", "1"], ["2", "Richie Ginther", "Owen Racing Organisation", "BRM", "+ 22.6 s", "3"], ["3", "Graham Hill", "Owen Racing Organisation", "BRM", "+ 28.2 s", "2"], ["4", "Jack Brabham", "Brabham Racing Organisation", "Brabham-Climax", "+ 52.0 s", "11"], ["5", "Tony Maggs", "Cooper Car Company", "Cooper-Climax", "72 laps", "6"], ["6", "Bruce McLaren", "Cooper", "Cooper-Climax", "72 laps", "7"], ["7", "Mike Hailwood", "Reg Parnell (Racing)", "Lola-Climax", "70 laps", "9"], ["8", "Ian Burgess", "Scirocco-Powell (Racing Cars)", "Scirocco-BRM", "69 laps", "18"], ["9", "Peter Revson", "Reg Parnell (Racing)", "Lotus-BRM", "69 laps", "15"], ["10", "Carel Godin de Beaufort", "Ecurie Maarsbergen", "Porsche", "67 laps", "20"], ["11", "Jo Siffert", "Siffert Racing Team", "Lotus-BRM", "Engine (66 laps)", "12"], ["12", "Andr\u00e9 Pilette", "Andr\u00e9 Pilette", "Lotus-Climax", "63 laps", "21"], ["13", "Innes Ireland", "British Racing Partnership", "Lotus-BRM", "Oil pressure (56 laps)", "5"], ["14", "Bernard Collomb", "Bernard Collomb", "Lotus-Climax", "Oil pressure (46 laps)", "19"], ["Ret", "Ian Raby", "Ian Raby (Racing)", "Gilby-BRM", "Ignition", "13"], ["Ret", "Dan Gurney", "Brabham Racing Organisation", "Brabham-Climax", "Oil leak", "16"], ["Ret", "Mike Beckwith", "British Racing Partnership", "Lotus-BRM", "Accident", "17"], ["Ret", "Masten Gregory", "Tim Parnell", "Lotus-BRM", "Cam follower", "14"], ["Ret", "Trevor Taylor", "Team Lotus", "Lotus-Climax", "Crownwheel & pinion", "4"], ["Ret", "Jo Bonnier", "Rob Walker Racing Team", "Cooper-Climax", "Oil pressure", "8"], ["Ret", "Tony Settember", "Scirocco-Powell (Racing Cars)", "Scirocco-BRM", "Valve gear", "22"], ["Ret", "Bob Anderson", "DW Racing Enterprises", "Lola-Climax", "Gearbox", "10"], ["WD", "Peter Arundell", "Team Lotus", "Lotus-Climax", "Car not ready", "-"], ["15", "John Surtees", "Cooper Car Company", "Cooper-Climax", "+1 Laps", "23"], ["16", "Matra Sports", "Jackie Stewart", "Matra", "+2 Laps", "25"], ["17", "Jim Hall", "Chaparral Car Co.", "Chaparral", "Engine (69 laps)", "26"], ["18", "Jo Bonnier", "Rob Walker Racing Team", "Cooper-Climax", "Retired", "27"], ["19", "Graham Hill", "Team Lotus", "Lotus-Climax", "1.59:57.4", "28"], ["20", "Chris Amon", "Reg Parnell (Racing)", "Lola-Climax", "72 laps", "29"], ["21", "Innes Ireland", "British Racing Partnership", "Lotus-BRM", "Overheating (55 laps)", "30"], ["22", "Lorenzo Bandini", "Scuderia Ferrari SpA SEFAC", "Ferrari", "Retired (37 laps)", "31"], ["23", "Mike Hailwood", "Reg Parnell (Racing)", "Lola-Climax", "+1 Lap", "32"], ["24", "Mario Andretti", "Lotus Team Units", "Lotus-Cosworth", "73 Laps", "33"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Pos", "Driver", "Entrant", "Constructor", "Time/Retired", "Grid"], "add_description": "The name of this table is Grand Prix Result, and the headers of this table are Pos,Driver,Entrant,Constructor,Time/Retired,Grid.", "sql": {"query": "SELECT Driver, Pos FROM `Grand Prix Result` WHERE Driver IN ('Tony Maggs', 'Jo Siffert') ORDER BY Pos ASC LIMIT 1;", "length": 114}, "source": "wikitq"} +{"description": "which chinese athlete had the fastest time?", "label": ["Wang Zhen"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "race_results", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Athlete", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Time", "type": "TIME"}, {"name": "Notes", "type": "TEXT"}], "rows": [["", "Valeriy Borchin", "Russia", "1:19:56", ""], ["", "Vladimir Kanaykin", "Russia", "1:20:27", ""], ["", "Luis Fernando L\u00f3pez", "Colombia", "1:20:38", "SB"], ["4", "Wang Zhen", "China", "1:20:54", ""], ["5", "Stanislav Emelyanov", "Russia", "1:21:11", ""], ["6", "Kim Hyun-sub", "South Korea", "1:21:17", ""], ["7", "Ruslan Dmytrenko", "Ukraine", "1:21:31", "SB"], ["8", "Yusuke Suzuki", "Japan", "1:21:39", ""], ["9", "Alex Schwazer", "Italy", "1:21:50", "SB"], ["10", "Erick Barrondo", "Guatemala", "1:22:08", ""], ["11", "Chu Yafei", "China", "1:22:10", ""], ["12", "Sergey Morozov", "Russia", "1:22:37", ""], ["13", "Wang Hao", "China", "1:22:49", ""], ["14", "Matej T\u00f3th", "Slovakia", "1:22:55", ""], ["15", "Eder S\u00e1nchez", "Mexico", "1:23:05", ""], ["16", "Jo\u00e3o Vieira", "Portugal", "1:23:26", ""], ["17", "Miguel \u00c1ngel L\u00f3pez", "Spain", "1:23:41", ""], ["18", "Anton Kucmin", "Slovakia", "1:23:57", ""], ["19", "James Rend\u00f3n", "Colombia", "1:24:08", "SB"], ["20", "Horacio Nava", "Mexico", "1:24:15", ""], ["21", "Christopher Linke", "Germany", "1:24:17", ""], ["22", "Caio Bonfim", "Brazil", "1:24:29", ""], ["23", "Trevor Barron", "United States", "1:24:33", ""], ["24", "Rafa\u0142 Augustyn", "Poland", "1:24:47", ""], ["25", "Byun Youngjun", "South Korea", "1:24:48", ""], ["26", "Hassanine Sebei", "Tunisia", "1:25:17", ""], ["27", "Jared Tallent", "Australia", "1:25:25", ""], ["28", "Recep \u00c7elik", "Turkey", "1:25:39", ""], ["29", "Nazar Kovalenko", "Ukraine", "1:25:50", ""], ["30", "Gurmeet Singh", "India", "1:26:34", ""], ["31", "Babubhai Panucha", "India", "1:26:53", ""], ["32", "David Kimutai", "Kenya", "1:27:20", "SB"], ["33", "Yerko Araya", "Chile", "1:27:47", ""], ["34", "H\u00e9di Teraoui", "Tunisia", "1:29:48", ""], ["35", "Diego Flores", "Mexico", "1:30:00", ""], ["36", "Juan Manuel Cano", "Argentina", "1:30:00", ""], ["37", "Emerson Hernandez", "El Salvador", "1:30:48", "SB"], ["38", "Ronald Quispe", "Bolivia", "1:32:09", "PB"], ["", "Moacir Zimmermann", "Brazil", "DSQ", ""], ["", "Gustavo Restrepo", "Colombia", "DSQ", ""], ["", "Giorgio Rubino", "Italy", "DSQ", ""], ["", "Anatole Iba\u00f1ez", "Sweden", "DSQ", ""], ["", "Adam Rutter", "Australia", "DNF", ""], ["", "Mauricio Arteaga", "Ecuador", "DNF", ""], ["", "Paquillo Fern\u00e1ndez", "Spain", "DNF", ""], ["", "Park Chil-sung", "South Korea", "DNF", ""], ["39", "Jefferson P\u00e9rez", "Ecuador", "1:23:50", ""], ["40", "Yohann Diniz", "France", "1:24:08", "SB"], ["41", "Jonathan Rieckmann", "Germany", "1:24:21", ""], ["42", "Valentyn Hlushchenko", "Ukraine", "1:24:37", ""], ["43", "Vladimir Andreyev", "Belarus", "1:25:03", ""], ["44", "Dane Bird-Smith", "Australia", "1:25:19", ""], ["45", "Erik Tysse", "Norway", "1:25:35", ""], ["46", "Jesus Angel Garcia", "Spain", "1:25:52", ""], ["47", "Qieyang Shijie", "China", "1:26:09", ""], ["48", "Jared Tallent", "Australia", "1:26:27", ""]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Rank", "Athlete", "Nationality", "Time", "Notes"], "add_description": "The name of this table is race_results, and the headers of this table are Rank,Athlete,Nationality,Time,Notes.", "sql": {"query": "SELECT Athlete FROM race_results WHERE Nationality='China' ORDER BY Time ASC LIMIT 1;", "length": 85}, "source": "wikitq"} +{"description": "which player has the highest number of titles?", "label": ["Jansher Khan"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Squash Players Ranking", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "Player Name", "type": "TEXT"}, {"name": "No. of Titles", "type": "INTEGER"}, {"name": "Runner-up", "type": "INTEGER"}, {"name": "Final Appearances", "type": "INTEGER"}], "rows": [["1", "Jansher Khan", "8", "1", "9"], ["2", "Jahangir Khan", "6", "3", "9"], ["3", "Geoff Hunt", "4", "1", "5"], ["4", "Amr Shabana", "4", "0", "4"], ["5", "Nick Matthew", "3", "0", "3"], ["6", "Ramy Ashour", "2", "1", "3"], ["6", "David Palmer", "2", "1", "3"], ["8", "Peter Nicol", "1", "2", "3"], ["9", "Rodney Eyles", "1", "1", "2"], ["9", "Thierry Lincou", "1", "1", "2"], ["9", "Ross Norman", "1", "1", "2"], ["12", "Rodney Martin", "1", "0", "1"], ["12", "Jonathon Power", "1", "0", "1"], ["14", "Chris Dittmar", "0", "5", "5"], ["15", "Gr\u00e9gory Gaultier", "0", "4", "4"], ["15", "Qamar Zaman", "0", "4", "4"], ["17", "Ahmed Barada", "0", "1", "1"], ["17", "Lee Beachill", "0", "1", "1"], ["17", "Karim Darwish", "0", "1", "1"], ["17", "Mohamed El Shorbagy", "0", "1", "1"], ["17", "Del Harris", "0", "1", "1"], ["17", "Mohibullah Khan", "0", "1", "1"], ["17", "Peter Marshall", "0", "1", "1"], ["17", "John White", "0", "1", "1"], ["17", "Dean Williams", "0", "1", "1"], ["17", "James Willstrop", "0", "1", "1"], ["18", "Ali Farag", "0", "0", "0"], ["19", "Karim Abdel Gawad", "0", "0", "0"], ["20", "Simon R\u00f6sner", "0", "0", "0"], ["21", "Paul Coll", "0", "0", "0"], ["22", "Tarek Momen", "0", "0", "0"], ["23", "Diego Elias", "0", "0", "0"], ["24", "Miguel Angel Rodriguez", "0", "0", "0"], ["25", "Daryl Selby", "0", "0", "0"], ["26", "Gregoire Marche", "0", "0", "0"], ["27", "Cameron Pilley", "0", "0", "0"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Rank", "Player Name", "No. of Titles", "Runner-up", "Final Appearances"], "add_description": "The name of this table is Squash Players Ranking, and the headers of this table are Rank,Player Name,No. of Titles,Runner-up,Final Appearances.", "sql": {"query": "SELECT `Player Name` FROM `Squash Players Ranking` ORDER BY `No. of Titles` DESC LIMIT 1;", "length": 89}, "source": "wikitq"} +{"description": "which association entered last?", "label": ["Northern Mariana Islands"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Football Teams", "table_info": {"columns": [{"name": "Association", "type": "TEXT"}, {"name": "Joining year", "type": "INT"}, {"name": "Men's team", "type": "TEXT"}, {"name": "Women's team", "type": "TEXT"}, {"name": "League", "type": "TEXT"}], "rows": [["China PR", "2002", "China", "China", "Chinese Super League"], ["Guam", "2002", "Guam", "Guam", "Guam League"], ["Hong Kong", "2002", "Hong Kong", "Hong Kong", "Hong Kong First Division League"], ["Japan", "2002", "Japan", "Japan", "J. League"], ["Korea DPR", "2002", "Korea DPR", "Korea DPR", "DPR Korea League"], ["Korea Republic", "2002", "Korea Republic", "Korea Republic", "K-League"], ["Macau", "2002", "Macau", "Macau", "Campeonato da 1\u00aa Divis\u00e3o do Futebol"], ["Mongolia", "2002", "Mongolia", "Mongolia", "Mongolia Premier League"], ["Northern Mariana Islands", "2008 1", "Northern Mariana Islands", "Northern Mariana Islands", "Northern Mariana Championship"], ["Chinese Taipei", "2002", "Chinese Taipei", "Chinese Taipei", "Intercity Football League"], ["Argentina", "2001", "Boca Juniors", "River Plate", "Argentinian Primera Division"], ["Brazil", "2004", "Sao Paulo", "", "Brazilian Serie A"], ["England", "1999", "Manchester United", "", "Premier League"], ["France", "2000", "Paris Saint-Germain", "", "Ligue 1"], ["Germany", "2003", "Bayern Munich", "", "Bundesliga"], ["Italy", "2001", "Juventus", "", "Serie A"], ["Mexico", "2005", "America", "Guadalajara", "Liga MX"], ["Netherlands", "1999", "Ajax", "Feyenoord", "Eredivisie"], ["Spain", "2002", "Real Madrid", "Barcelona", "La Liga"], ["United States", "2007", "Los Angeles Galaxy", "", "Major League Soccer"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Association", "Joining year", "Men's team", "Women's team", "League"], "add_description": "The name of this table is Football Teams, and the headers of this table are Association,Joining year,Men's team,Women's team,League.", "sql": {"query": "SELECT Association FROM FootballTeams ORDER BY JoiningYear DESC LIMIT 1;", "length": 72}, "source": "wikitq"} +{"description": "which country received the most box office revenue from national films in 2013?", "label": ["China"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "national films", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "Country", "type": "TEXT"}, {"name": "Box Office", "type": "TEXT"}, {"name": "Year", "type": "INTEGER"}, {"name": "Box office\\nfrom national films", "type": "TEXT"}], "rows": [["1", "Canada/United States", "$10.8 billion", "2012", "\u2013"], ["2", "China", "$3.6 billion", "2013", "59% (2013)"], ["3", "Japan", "$1.88 billion", "2013", "61% (2013)"], ["4", "United Kingdom", "$1.7 billion", "2012", "36.1% (2011)"], ["5", "France", "$1.7 billion", "2012", "33.3% (2013)"], ["6", "South Korea", "$1.47 billion", "2013", "59.7% (2013)"], ["7", "India", "$1.4 billion", "2012", "\u2013"], ["8", "Germany", "$1.3 billion", "2012", "\u2013"], ["9", "Russia", "$1.2 billion", "2012", "\u2013"], ["10", "Australia", "$1.2 billion", "2012", "4.1% (2011)"], ["11", "Italy", "$0.84 billion", "2013", "30% (2013)"], ["12", "Brazil", "$0.72 billion", "2013", "17% (2013)"], ["-", "World", "$34.7 billion", "2012", "\u2013"], ["1", "United States", "$11.1 billion", "2015", "50% (2015)"], ["2", "China", "$6.5 billion", "2020", "60% (2020)"], ["3", "Japan", "$1.5 billion", "2019", "58% (2019)"], ["4", "South Korea", "$1.4 billion", "2020", "65% (2020)"], ["5", "United Kingdom", "$1.2 billion", "2014", "47% (2014)"], ["6", "France", "$1.1 billion", "2015", "36% (2015)"], ["7", "India", "$1.08 billion", "2019", "23% (2019)"], ["8", "Germany", "$0.95 billion", "2018", "39% (2018)"], ["9", "Russia", "$0.8 billion", "2017", "\u2013"], ["10", "Australia", "$0.75 billion", "2016", "25% (2016)"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Rank", "Country", "Box Office", "Year", "Box office\\nfrom national films"], "add_description": "The name of this table is national films, and the headers of this table are Rank,Country,Box Office,Year,Box office\\nfrom national films.", "sql": {"query": "SELECT Country FROM national films WHERE Year = '2013' ORDER BY Box Office DESC LIMIT 1;", "length": 88}, "source": "wikitq"} +{"description": "Name the least int yards when sacks is 11.5", "label": ["41.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Player Stats", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "G", "type": "TEXT"}, {"name": "Tackles", "type": "TEXT"}, {"name": "Solo", "type": "TEXT"}, {"name": "Assts", "type": "TEXT"}, {"name": "Sacks", "type": "TEXT"}, {"name": "Int", "type": "TEXT"}, {"name": "Int yards", "type": "TEXT"}, {"name": "Int avg.", "type": "TEXT"}, {"name": "Int TD", "type": "TEXT"}, {"name": "Fum. rec", "type": "TEXT"}, {"name": "Fum. rec TD", "type": "TEXT"}], "rows": [["Antonio Pierce", "11", "65", "50", "15", "1.0", "0", "0", "0", "0", "0", "0"], ["Justin Tuck", "12", "49", "41", "8", "11.5", "1", "41", "41.0", "1", "0", "0"], ["Aaron Ross", "12", "49", "43", "6", "0.0", "3", "58", "19.3", "1", "0", "0"], ["Michael Johnson", "12", "48", "28", "20", "0.0", "2", "18", "9.0", "0", "1", "0"], ["Kenny Phillips", "12", "48", "41", "7", "0.0", "1", "0", "0", "0", "0", "0"], ["Danny Clark", "12", "48", "27", "21", "0.0", "0", "0", "0", "0", "0", "0"], ["James Butler", "11", "47", "35", "12", "0.0", "2", "15", "7.5", "0", "1", "0"], ["Corey Webster", "12", "36", "35", "1", "1.0", "3", "65", "21.7", "0", "0", "0"], ["Barry Cofield", "11", "34", "27", "7", "3.0", "0", "0", "0", "0", "0", "0"], ["Mathias Kiwanuka", "12", "31", "22", "9", "7.0", "0", "0", "0", "0", "2", "0"], ["Chase Blackburn", "12", "27", "18", "9", "1.0", "0", "0", "0", "0", "1", "0"], ["Kevin Dockery", "9", "26", "23", "3", "0.0", "1", "44", "44.0", "0", "0", "0"], ["Fred Robbins", "11", "23", "21", "2", "5.5", "0", "0", "0.0", "0", "0", "0"], ["Bryan Kehl", "12", "22", "15", "7", "0.0", "1", "17", "17.0", "0", "0", "0"], ["Terrell Thomas", "8", "19", "17", "2", "0.0", "1", "13", "13.0", "0", "0", "0"], ["Renaldo Wynn", "12", "16", "13", "3", "1.0", "0", "0", "0.0", "0", "0", "0"], ["Dave Tollefson", "9", "15", "12", "3", "3.5", "0", "0", "0.0", "0", "0", "0"], ["Jay Alford", "11", "9", "4", "5", "1.5", "0", "0", "0.0", "0", "0", "0"], ["Sammy Knight", "8", "8", "8", "0", "0.0", "0", "0", "0.0", "0", "0", "0"], ["Gerris Wilkinson", "6", "7", "3", "1", "0.0", "0", "0", "0.0", "0", "0", "0"], ["Sam Madison", "6", "4", "3", "1", "0.0", "1", "21", "21.0", "0", "0", "0"], ["R.W. McQuarters", "6", "2", "1", "1", "0.0", "0", "0", "0.0", "0", "0", "0"], ["Jeremy Clark", "1", "2", "0", "2", "0.0", "0", "0", "0.0", "0", "0", "0"], ["Player1", "12", "60", "45", "15", "2.0", "1", "10", "10.0", "0", "0", "0"], ["Player2", "10", "40", "30", "10", "4.5", "0", "0", "0", "0", "1", "0"], ["Player3", "11", "55", "40", "15", "2.5", "2", "25", "12.5", "0", "0", "0"], ["Player4", "9", "30", "25", "5", "1.0", "1", "5", "5.0", "0", "0", "0"], ["Player5", "12", "50", "35", "15", "3.0", "0", "0", "0", "0", "0", "0"], ["Player6", "8", "35", "25", "10", "1.5", "1", "12", "12.0", "0", "0", "1"], ["Player7", "10", "48", "38", "10", "0.5", "3", "45", "15.0", "1", "0", "0"], ["Player8", "11", "52", "40", "12", "4.0", "0", "0", "0", "0", "0", "0"], ["Player9", "9", "28", "20", "8", "2.5", "0", "0", "0", "0", "0", "0"], ["Player10", "12", "64", "50", "14", "1.0", "1", "0", "0", "0", "0", "0"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Player", "G", "Tackles", "Solo", "Assts", "Sacks", "Int", "Int yards", "Int avg.", "Int TD", "Fum. rec", "Fum. rec TD"], "add_description": "The name of this table is Player Stats, and the headers of this table are Player,G,Tackles,Solo,Assts,Sacks,Int,Int yards,Int avg.,Int TD,Fum. rec,Fum. rec TD.", "sql": {"query": "SELECT Player, Int yards FROM Player Stats WHERE Sacks = 11.5 ORDER BY Int yards ASC LIMIT 1;", "length": 93}, "source": "wikisql"} +{"description": "who came first john f. williams or william a. mann?", "label": ["William A. Mann"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Military Leaders Table", "table_info": {"columns": [{"name": "Number", "type": "INT"}, {"name": "Name", "type": "TEXT"}, {"name": "Service", "type": "TEXT"}, {"name": "From", "type": "DATE"}, {"name": "To", "type": "DATE"}], "rows": [["1", "COL Erasmus M. Weaver, Jr.", "USA", "February 14, 1908", "March 14, 1911"], ["2", "BG Robert K. Evans", "USA", "March 15, 1911", "August 31, 1912"], ["3", "MG Albert L. Mills", "USA", "September 1, 1912", "September 18, 1916"], ["(Acting)", "COL George W. McIver", "USA", "September 18, 1916", "October 26, 1916"], ["4", "MG William A. Mann", "USA", "October 26, 1916", "November 26, 1917"], ["5", "MG Jesse McI. Carter", "USA", "November 26, 1917", "August 15, 1918"], ["(Acting)", "BG John W. Heavey", "USA", "August 15, 1918", "February 5, 1919"], ["5", "MG Jesse McI. Carter", "USA", "February 5, 1919", "June 28, 1921"], ["6", "MG George C. Rickards", "USA", "June 29, 1921", "June 28, 1925"], ["7", "MG Creed C. Hammond", "USA", "June 29, 1925", "June 28, 1929"], ["(Acting)", "COL Ernest R. Redmond", "USA", "June 29, 1929", "September 30, 1929"], ["8", "MG William G. Everson", "USA", "October 1, 1929", "November 30, 1931"], ["9", "MG George E. Leach", "USA", "December 1, 1931", "November 30, 1935"], ["(Acting)", "COL Herold J. Weiler", "USA", "December 1, 1935", "January 16, 1936"], ["(Acting)", "COL John F. Williams", "USA", "January 17, 1936", "January 30, 1936"], ["10", "MG Albert H. Blanding", "USA", "January 31, 1936", "January 30, 1940"], ["11", "MG John F. Williams", "USA", "January 31, 1940", "January 30, 1944"], ["(Acting)", "MG John F. Williams", "USA", "January 31, 1944", "January 31, 1946"], ["12", "MG Butler B. Miltonberger", "USA", "February 1, 1946", "September 29, 1947"], ["13", "MG Kenneth F. Cramer", "USA", "September 30, 1947", "September 4, 1950"], ["(Acting)", "MG Raymond H. Fleming", "USA", "September 5, 1950", "August 13, 1951"], ["14", "MG Raymond H. Fleming", "USA", "August 14, 1951", "February 15, 1953"], ["(Acting)", "Maj Gen Earl T. Ricks", "USAF", "February 16, 1953", "June 21, 1953"], ["15", "MG Edgar C. Erickson", "USA", "June 22, 1953", "May 31, 1959"], ["(Acting)", "Maj Gen Winston P. Wilson", "USAF", "June 1, 1959", "July 19, 1959"], ["16", "MG Donald W. McGowan", "USA", "July 20, 1959", "August 30, 1963"], ["17", "Maj Gen Winston P. Wilson", "USAF", "August 31, 1963", "August 31, 1971"], ["18", "MG Francis S. Greenlief", "USA", "September 1, 1971", "June 23, 1974"], ["19", "LTG La Vern E. Weber", "USA", "August 16, 1974", "August 15, 1982"], ["20", "LTG Emmett H. Walker, Jr.", "USA", "August 16, 1982", "August 15, 1986"], ["21", "LTG Herbert R. Temple, Jr.", "USA", "August 16, 1986", "January 31, 1990"], ["22", "Lt Gen John B. Conaway", "USAF", "February 1, 1990", "December 1, 1993"], ["(Acting)", "Maj Gen Philip G. Killey", "USAF", "December 2, 1993", "January 1, 1994"], ["(Acting)", "MG Raymond F. Rees", "USA", "January 2, 1994", "July 31, 1994"], ["(Acting)", "MG John R. D'Araujo, Jr.", "USA", "August 1, 1994", "September 30, 1994"], ["23", "LTG Edward D. Baca", "USA", "October 1, 1994", "July 31, 1998"], ["24", "Lt Gen Russell C. Davis", "USAF", "August 4, 1998", "August 3, 2002"], ["(Acting)", "MG Raymond F. Rees", "USA", "August 4, 2002", "April 10, 2003"], ["25", "LTG H Steven Blum", "USA", "April 11, 2003", "November 17, 2008"], ["26", "Gen Craig R. McKinley", "USAF", "November 17, 2008", "September 6, 2012"], ["27", "GEN Frank J. Grass", "USA", "September 7, 2012", "Present"], ["28", "MG John Smith", "USA", "January 1, 2020", "December 31, 2022"], ["29", "LTG Jane Doe", "USA", "January 1, 2023", "December 31, 2025"], ["(Acting)", "BG Robert Johnson", "USA", "January 1, 2026", "March 31, 2026"], ["30", "MG William Thompson", "USA", "April 1, 2026", "March 31, 2029"], ["31", "LTG Sarah Lee", "USA", "April 1, 2029", "March 31, 2033"], ["(Acting)", "COL Samuel Kim", "USA", "April 1, 2033", "June 30, 2033"], ["32", "MG Daniel Park", "USA", "July 1, 2033", "June 30, 2037"], ["33", "LTG Jessica Lee", "USA", "July 1, 2037", "June 30, 2041"], ["(Acting)", "COL Daniel Kim", "USA", "July 1, 2041", "September 30, 2041"], ["34", "MG Alex Lee", "USA", "October 1, 2041", "September 30, 2045"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Number", "Name", "Service", "From", "To"], "add_description": "The name of this table is Military Leaders Table, and the headers of this table are Number,Name,Service,From,To.", "sql": {"query": "SELECT Name FROM `Military Leaders Table` WHERE Name = 'BG Robert K. Evans' OR Name = 'MG Albert L. Mills' OR Name = 'COL George W. McIver' OR Name = 'MG William A. Mann' OR Name = 'MG Jesse McI. Carter' OR Name = 'BG John W. Heavey' OR Name = 'MG George C. Rickards' OR Name = 'MG Creed C. Hammond' OR Name = 'COL Ernest R. Redmond' OR Name = 'MG William G. Everson' OR Name = 'MG George E. Leach' OR Name = 'COL Herold J. Weiler' OR Name = 'COL John F. Williams' OR Name = 'MG Albert H. Blanding' OR Name = 'MG John F. Williams' OR Name = 'MG Butler B. Miltonberger' OR Name = 'MG Kenneth F. Cramer' OR Name = 'MG Raymond H. Fleming' OR Name = 'Maj Gen Earl T. Ricks' OR Name = 'MG Edgar C. Erickson' OR Name = 'Maj Gen Winston P. Wilson' OR Name = 'MG Donald W. McGowan' OR Name = 'LTG La Vern E. Weber' OR Name = 'LTG Emmett H. Walker, Jr.' OR Name = 'LTG Herbert R. Temple, Jr.' OR Name = 'Lt Gen John B. Conaway' OR Name = 'Maj Gen Philip G. Killey' OR Name = 'MG Raymond F. Rees' OR Name = \"MG John R. D'Araujo, Jr.\" OR Name = 'LTG Edward D. Baca' OR Name = 'Lt Gen Russell C. Davis' OR Name = 'LTG H Steven Blum' OR Name = 'Gen Craig R. McKinley' OR Name = 'GEN Frank J. Grass' OR Name = 'MG John Smith' OR Name = 'LTG Jane Doe' OR Name = 'BG Robert Johnson' OR Name = 'MG William Thompson' OR Name = 'LTG Sarah Lee' OR Name = 'COL Samuel Kim' OR Name = 'MG Daniel Park' OR Name = 'LTG Jessica Lee' OR Name = 'MG Alex Lee' ORDER BY `From` ASC LIMIT 2;", "length": 1459}, "source": "wikitq"} +{"description": "What band is the highest and has a System of gsm-450?", "label": ["450.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "cellular_frequency_bands_table", "table_info": {"columns": [{"name": "System", "type": "TEXT"}, {"name": "Band", "type": "TEXT"}, {"name": "Uplink (MHz)", "type": "TEXT"}, {"name": "Downlink (MHz)", "type": "TEXT"}, {"name": "Channel number", "type": "TEXT"}], "rows": [["T-GSM-380", "380", "380.2\u2013389.8", "390.2\u2013399.8", "dynamic"], ["T-GSM-410", "410", "410.2\u2013419.8", "420.2\u2013429.8", "dynamic"], ["GSM-450", "450", "450.6\u2013457.6", "460.6\u2013467.6", "259\u2013293"], ["GSM-480", "480", "479.0\u2013486.0", "489.0\u2013496.0", "306\u2013340"], ["GSM-710", "710", "698.2\u2013716.2", "728.2\u2013746.2", "dynamic"], ["GSM-750", "750", "747.2\u2013762.2", "777.2\u2013792.2", "438\u2013511"], ["T-GSM-810", "810", "806.2\u2013821.2", "851.2\u2013866.2", "dynamic"], ["GSM-850", "850", "824.2\u2013849.2", "869.2\u2013894.2", "128\u2013251"], ["P-GSM-900", "900", "890.0\u2013915.0", "935.0\u2013960.0", "1\u2013124"], ["E-GSM-900", "900", "880.0\u2013915.0", "925.0\u2013960.0", "975\u20131023, 0-124"], ["R-GSM-900", "900", "876.0\u2013915.0", "921.0\u2013960.0", "955\u20131023, 0-124"], ["T-GSM-900", "900", "870.4\u2013876.0", "915.4\u2013921.0", "dynamic^"], ["DCS-1800", "1800", "1,710.2\u20131,784.8", "1,805.2\u20131,879.8", "512\u2013885"], ["PCS-1900", "1900", "1,850.2\u20131,909.8", "1,930.2\u20131,989.8", "512\u2013810"], ["GSM-850", "850", "824.2\u2013849.2", "869.2\u2013894.2", "312\u2013385"], ["P-GSM-900", "900", "890.0\u2013915.0", "935.0\u2013960.0", "32\u2013155"], ["E-GSM-900", "900", "880.0\u2013915.0", "925.0\u2013960.0", "736\u20131023, 0-124"], ["R-GSM-900", "900", "876.0\u2013915.0", "921.0\u2013960.0", "700\u2013767, 0-124"], ["T-GSM-900", "900", "870.4\u2013876.0", "915.4\u2013921.0", "dynamic^"], ["DCS-1800", "1800", "1,710.2\u20131,784.8", "1,805.2\u20131,879.8", "746\u20131019"], ["PCS-1900", "1900", "1,850.2\u20131,909.8", "1,930.2\u20131,989.8", "886\u20131133"], ["T-GSM-410", "410", "410.2\u2013419.8", "420.2\u2013429.8", "dynamic"], ["GSM-480", "480", "479.0\u2013486.0", "489.0\u2013496.0", "712\u2013746"], ["GSM-710", "710", "698.2\u2013716.2", "728.2\u2013746.2", "858\u2013931"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["System", "Band", "Uplink (MHz)", "Downlink (MHz)", "Channel number"], "add_description": "The name of this table is cellular_frequency_bands_table, and the headers of this table are System,Band,Uplink (MHz),Downlink (MHz),Channel number.", "sql": {"query": "SELECT Band FROM cellular_frequency_bands_table WHERE System = 'GSM-450' ORDER BY Band DESC LIMIT 1;", "length": 100}, "source": "wikisql"} +{"description": "what model has the most quantity?", "label": ["416"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Vehicle_Data", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Manufacturer", "type": "TEXT"}, {"name": "Model", "type": "TEXT"}, {"name": "Length (feet)", "type": "TEXT"}, {"name": "Quantity", "type": "INTEGER"}, {"name": "Fleet Series", "type": "TEXT"}, {"name": "Fuel Propulsion", "type": "TEXT"}, {"name": "Powertrain", "type": "TEXT"}], "rows": [["1996", "New Flyer", "D60", "60 (articulated)", "30", "1901-1930*", "Diesel", "Detroit Diesel Series 50\\nAllison B400R"], ["1998", "NABI", "416", "40", "133", "3001-3067, 3101-3166*", "Diesel", "Cummins M11E\\nAllison B400R"], ["1999", "NABI", "40-LFW", "40", "44", "4001-4044", "Diesel", ""], ["2000", "NABI", "40-LFW", "40", "23", "7201-7223", "Diesel", "Cummins ISM\\nAllison B400R"], ["2000", "MCI", "D4500", "45", "30", "6001-6030", "Diesel", ""], ["2001", "MCI", "D4500", "45", "10", "6031-6040", "Diesel", ""], ["2003", "MCI", "D4500", "45", "39", "6041-6079", "Diesel", ""], ["2003", "NABI", "40-LFW", "40", "46", "4051-4090", "Diesel", "Cummins ISL\\nAllison B400R"], ["2003", "Van Hool", "A330", "40", "110", "1001-1110", "Diesel", "Cummins ISM\\nVoith D864.3E"], ["2003", "Van Hool", "AG300", "60", "57", "2001-2057", "Diesel", "Cummins ISM\\nVoith D864.3E"], ["2005", "Van Hool", "A300FC", "40", "3", "FC1-FC3", "Hydrogen", ""], ["2006", "Van Hool", "A300K", "30", "50", "5001-5050", "Diesel", "Cummins ISB\\nVoith D864.3E"], ["2007", "Van Hool", "AG300", "60", "10", "2101-2110", "Diesel", "Cummins ISL\\nVoith D864.3E"], ["2007", "Van Hool", "AG300", "60", "15", "2151-2165", "Diesel", "Cummins ISM\\nVoith D864.3E"], ["2008", "Van Hool", "A300L", "40", "27", "1201-1227", "Diesel", "Cummins ISL\\nVoith D864.5"], ["2008", "Van Hool", "A300K", "30", "1", "5099", "Diesel-electric hybrid", ""], ["2008", "Van Hool", "A300K", "30", "39", "5101-5139", "Diesel", "Cummins ISB\\nVoith D854.5"], ["2010", "Van Hool", "AG300", "60", "9", "2191-2199", "Diesel", "Cummins ISL\\nVoith D864.5"], ["2010", "Van Hool", "A300L FC", "40", "12", "FC4-FC16", "Hydrogen", ""], ["2013", "Gillig", "Low-floor Advantage", "40", "65", "1301-1365", "Diesel", "Cummins ISL 280 HP \\nAllison B400 6-speed"], ["2013", "New Flyer", "Xcelsior D60", "60", "23", "2201-2223", "Diesel", "Cummins ISL 330 HP\\nAllison B400 6-speed"], ["2013", "Gillig", "Low-floor Advantage", "40", "55", "6101-6155", "Diesel", "Cummins ISL 280 HP\\nAllison B400 6-speed"], ["2005", "MCI", "D4500", "45", "15", "6091-6105", "Diesel", ""], ["2006", "Gillig", "Low-floor Advantage", "30", "8", "8001-8008", "Hybrid", "Cummins ISB 6.7 L\\nAllison EP40 Hybrid/Parallel"], ["2006", "New Flyer", "XC60", "60", "20", "3001-3020", "Diesel", "Cummins ISM 10.6 L\\nAllison B500R six-speed"], ["2008", "NABI", "42-BRT", "42", "57", "9001-9057", "Diesel", "Cummins ISM 10.6 L\\nAllison B400R six-speed"], ["2009", "Van Hool", "A300L", "40", "5", "1301-1305", "Diesel-electric hybrid", "Cummins ISB 6.7 L\\nAllison EP40 Hybrid/Parallel"], ["2011", "New Flyer", "XC40", "40", "27", "4001-4027", "Diesel", "Cummins ISM 10.8 L\\nAllison B400R six-speed"], ["2014", "Gillig", "Low-floor Advantage", "30", "6", "9001-9006", "Compressed Natural Gas", "Cummins Westport ISL G\\nAllison B400R six-speed transmission"], ["2014", "New Flyer", "Xcelsior X60", "60", "13", "1301-1313", "Diesel", "Cummins ISL9 8.9 L\\nAllison B500R six-speed"], ["2015", "NABI", "42-BRT", "42", "43", "9101-9143", "Compressed Natural Gas", "Cummins Westport ISL G\\nAllison B400R six-speed transmission"], ["2016", "Gillig", "Trolley Replica", "35", "2", "9901-9902", "Diesel-electric hybrid", "Cummins ISB 6.7 L\\nAllison EP40 Hybrid/Parallel"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["Year", "Manufacturer", "Model", "Length (feet)", "Quantity", "Fleet Series", "Fuel Propulsion", "Powertrain"], "add_description": "The name of this table is Vehicle_Data, and the headers of this table are Year,Manufacturer,Model,Length (feet),Quantity,Fleet Series,Fuel Propulsion,Powertrain.", "sql": {"query": "SELECT Model FROM Vehicle_DataGROUP BY ModelORDER BY Quantity DESCLIMIT 1;", "length": 74}, "source": "wikitq"} +{"description": "which area under the satellite cities has the most in population?", "label": ["Taishan"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "City Population and Area", "table_info": {"columns": [{"name": "#", "type": "INT"}, {"name": "Name", "type": "TEXT"}, {"name": "Hanzi", "type": "TEXT"}, {"name": "Hanyu Pinyin", "type": "TEXT"}, {"name": "Population (2010 Census)", "type": "TEXT"}, {"name": "Area (km\u00b2)", "type": "DECIMAL"}, {"name": "Density (/km\u00b2)", "type": "DECIMAL"}], "rows": [["City Proper", "City Proper", "City Proper", "City Proper", "City Proper", "City Proper", "City Proper"], ["1", "Jianghai District", "\u6c5f\u6d77\u533a", "Ji\u0101ngh\u01cei Q\u016b", "254,365", "107", "2,377.24"], ["2", "Pengjiang District", "\u84ec\u6c5f\u533a", "P\u00e9ngji\u0101ng Q\u016b", "719,120", "325", "2,212.67"], ["3", "Xinhui District", "\u65b0\u4f1a\u533a", "X\u012bnhu\u00ec Q\u016b", "849,155", "1,260", "673.93"], ["Satellite cities", "Satellite cities", "Satellite cities", "Satellite cities", "Satellite cities", "Satellite cities", "Satellite cities"], ["4", "Enping", "\u6069\u5e73\u5e02", "\u0112np\u00edng Sh\u00ec", "492,814", "1,698", "290.23"], ["5", "Taishan", "\u53f0\u5c71\u5e02", "T\u00e1ish\u0101n Sh\u00ec", "941,087", "3,286", "286.39"], ["6", "Kaiping", "\u5f00\u5e73\u5e02", "K\u0101ip\u00edng Sh\u00ec", "697,395", "1,659", "420.37"], ["7", "Heshan", "\u9e64\u5c71\u5e02", "H\u00e8sh\u0101n Sh\u00ec", "494,935", "1,108", "446.69"], ["8", "Zhongshan", "\u4e2d\u5c71\u5e02", "Zh\u014dngsh\u0101n Sh\u00ec", "3,121,275", "1,786", "1,748.10"], ["9", "Shunde", "\u987a\u5fb7\u533a", "Sh\u00f9nd\u00e9 Q\u016b", "1,266,367", "806", "1,569.71"], ["10", "Nanhai", "\u5357\u6d77\u533a", "N\u00e1nh\u01cei Q\u016b", "2,588,844", "1,047", "2,472.57"], ["11", "Chancheng", "\u7985\u57ce\u533a", "Ch\u00e1nch\u00e9ng Q\u016b", "1,116,175", "305", "3,663.11"], ["12", "Sanshui", "\u4e09\u6c34\u533a", "S\u0101nshu\u01d0 Q\u016b", "622,645", "874", "712.14"], ["13", "Gaoming", "\u9ad8\u660e\u533a", "G\u0101om\u00edng Q\u016b", "400,321", "615", "650.70"], ["14", "Huangpu", "\u9ec4\u57d4\u533a", "Hu\u00e1ngp\u01d4 Q\u016b", "193,814", "85", "2,281.87"], ["15", "Luogang", "\u841d\u5c97\u533a", "Lu\u00f3 g\u01ceng Q\u016b", "1,395,843", "890", "1,567.51"], ["16", "Zengcheng", "\u589e\u57ce\u533a", "Z\u0113ngch\u00e9ng Q\u016b", "1,130,938", "3,704", "305.27"], ["17", "Conghua", "\u4ece\u5316\u533a", "C\u00f3nghu\u00e0 Q\u016b", "593,334", "1,979", "299.66"]]}}, "evaluation": "", "example": "", "type": ["ranking"], "heads": ["#", "Name", "Hanzi", "Hanyu Pinyin", "Population (2010 Census)", "Area (km\u00b2)", "Density (/km\u00b2)"], "add_description": "The name of this table is City Population and Area, and the headers of this table are #,Name,Hanzi,Hanyu Pinyin,Population (2010 Census),Area (km\u00b2),Density (/km\u00b2).", "sql": {"query": "SELECT Name, PopulationFROM \"City Population and Area\"WHERE \"#\" BETWEEN 4 and 17ORDER BY Population DESCLIMIT 1;", "length": 112}, "source": "wikitq"} +{"description": "What is the total pick # for the D position from a team from Chilliwack Bruins?", "label": ["167.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "hockey_players", "table_info": {"columns": [{"name": "Pick #", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Team from", "type": "TEXT"}, {"name": "League from", "type": "TEXT"}], "rows": [["151", "Mirko Hoefflin", "Germany", "C", "Jungadler Mannheim", "DNL (Germany)"], ["152", "Joe Rogalski", "United States", "D", "Sarnia Sting", "Ontario Hockey League"], ["153", "Corey Durocher", "Canada", "C", "Kingston Frontenacs", "Ontario Hockey League"], ["154", "Dalton Prout", "Canada", "D", "Barrie Colts", "Ontario Hockey League"], ["155", "Kendall McFaull", "Canada", "D", "Moose Jaw Warriors", "Western Hockey League"], ["156", "Brendan O'Donnell", "Canada", "C", "Winnipeg South Blues", "Manitoba Junior Hockey League"], ["157", "Jesper Fasth", "Sweden", "RW", "HV71", "J20 SuperElit (Sweden)"], ["158", "Maxim Kitsyn", "Russia", "LW", "Metallurg Novokuznetsk", "Kontinental Hockey League (Russia)"], ["159", "Johan Gustafsson", "Sweden", "G", "F\u00e4rjestad BK", "Elitserien (Sweden)"], ["160", "Tanner Lane", "United States", "C", "Detroit Lakes High School", "United States High School-MN"], ["161", "Andreas Dahlstrom", "Sweden", "C", "AIK", "HockeyAllsvenskan (Sweden)"], ["162", "Brandon Davidson", "Canada", "D", "Regina Pats", "Western Hockey League"], ["163", "Konrad Abeltshauser", "Germany", "D", "Halifax Mooseheads", "Quebec Major Junior Hockey League"], ["164", "Stephen MacAulay", "Canada", "LW", "Saint John Sea Dogs", "Quebec Major Junior Hockey League"], ["165", "Zane Gothberg", "United States", "G", "Lincoln High School", "United States High School-MN"], ["166", "Drew Czerwonka", "Canada", "LW", "Kootenay Ice", "Western Hockey League"], ["167", "Tyler Stahl", "Canada", "D", "Chilliwack Bruins", "Western Hockey League"], ["168", "Anthony Bitetto", "United States", "D", "Indiana Ice", "United States Hockey League"], ["169", "Sebastian Owuya", "Sweden", "D", "Timr\u00e5 IK", "J20 SuperElit (Sweden)"], ["170", "Reid McNeill", "Canada", "D", "London Knights", "Ontario Hockey League"], ["171", "Brooks Macek", "Canada", "C", "Tri-City Americans", "Western Hockey League"], ["172", "Alex Friesen", "Canada", "C", "Niagara IceDogs", "Ontario Hockey League"], ["173", "Cedrick Henley", "Canada", "LW", "Val-d'Or Foreurs", "Quebec Major Junior Hockey League"], ["174", "Maxime Clermont", "Canada", "G", "Gatineau Olympiques", "Quebec Major Junior Hockey League"], ["175", "Jonathan Iilahti", "Finland", "G", "Espoo Blues", "SM-liiga Jr. (Finland)"], ["176", "Samuel Carrier", "Canada", "RW", "Lewiston Maineiacs", "Quebec Major Junior Hockey League"], ["177", "Kevin Lind", "United States", "D", "Chicago Steel", "United States Hockey League"], ["178", "Mark Stone", "Canada", "RW", "Brandon Wheat Kings", "Western Hockey League"], ["179", "Nicholas Luukko", "United States", "D", "The Gunnery", "United States High School-CT"], ["180", "Nick Mattson", "United States", "D", "Indiana Ice", "United States Hockey League"], ["181", "Carter Camper", "United States", "C", "Texas Stars", "American Hockey League"], ["182", "Igor Ozhiganov", "Russia", "D", "CSKA Moscow", "Kontinental Hockey League (Russia)"], ["183", "Victor Olofsson", "Sweden", "LW", "Frolunda HC", "SHL (Sweden)"], ["184", "Philippe Myers", "Canada", "D", "Lehigh Valley Phantoms", "American Hockey League"], ["185", "Jesse Graham", "Canada", "D", "Bridgeport Sound Tigers", "American Hockey League"], ["186", "Simon Ryfors", "Sweden", "RW", "Vaxjo Lakers HC", "SHL (Sweden)"], ["187", "Ivan Chekhovich", "Russia", "LW", "Worcester Sharks", "ECHL"], ["188", "Bokondji Imama", "Canada", "LW", "Stockton Heat", "American Hockey League"], ["189", "Emil Galimov", "Russia", "RW", "Avtomobilist Yekaterinburg", "Kontinental Hockey League (Russia)"], ["190", "Alexander Alexeyev", "Russia", "D", "Hershey Bears", "American Hockey League"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Pick #", "Player", "Nationality", "Position", "Team from", "League from"], "add_description": "The name of this table is hockey_players, and the headers of this table are Pick #,Player,Nationality,Position,Team from,League from.", "sql": {"query": "SELECT SUM(`Pick #`) FROM `hockey_players` WHERE `Position`='D' AND `Team from`='Chilliwack Bruins';", "length": 100}, "source": "wikisql"} +{"description": "Name the total number of rr2 pts for won being 11", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "team_racing_results", "table_info": {"columns": [{"name": "Team name", "type": "TEXT"}, {"name": "Races", "type": "TEXT"}, {"name": "Won", "type": "TEXT"}, {"name": "RR1 Pts.", "type": "TEXT"}, {"name": "RR2 Pts.", "type": "TEXT"}, {"name": "RR3 Pts.", "type": "TEXT"}, {"name": "Total Pts.", "type": "TEXT"}, {"name": "Ranking", "type": "TEXT"}], "rows": [["Prada Challenge", "29", "26", "10", "36", "63", "109", "1"], ["Nippon Challenge", "30", "20", "6", "24", "72", "102", "2"], ["America True", "30", "21", "6", "32", "63", "101", "3"], ["AmericaOne", "30", "22", "8", "28", "63", "99", "4"], ["Team Dennis Conner", "30", "18", "5", "28", "54", "87", "5"], ["Le Defi BTT", "29", "12", "2", "12", "63", "77", "6"], ["Desafio Espanol", "30", "14", "5", "12", "54", "71", "7"], ["Young America", "30", "16", "8", "16", "36", "60", "8"], ["Aloha Racing", "30", "11", "4", "12", "36", "52", "9"], ["Young Australia", "30", "4", "1", "8", "9", "18", "10"], ["Oracle Racing", "30", "25", "10", "32", "66", "108", "1"], ["NZL Sailing Team", "30", "23", "9", "30", "54", "96", "2"], ["Team New Zealand", "30", "20", "7", "28", "60", "95", "3"], ["Luna Rossa Prada Pirelli", "29", "19", "5", "20", "63", "87", "4"], ["Team Japan", "30", "16", "5", "20", "42", "71", "5"], ["Artemis Racing", "30", "15", "6", "18", "54", "73", "6"], ["SailGP United States", "15", "15", "5", "14", "18", "52", "7"], ["Stars & Stripes Team USA", "30", "10", "3", "8", "36", "48", "8"], ["France SailGP Team", "15", "8", "1", "6", "12", "27", "9"], ["Ineos Team UK", "30", "5", "1", "4", "27", "32", "10"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Team name", "Races", "Won", "RR1 Pts.", "RR2 Pts.", "RR3 Pts.", "Total Pts.", "Ranking"], "add_description": "The name of this table is team_racing_results, and the headers of this table are Team name,Races,Won,RR1 Pts.,RR2 Pts.,RR3 Pts.,Total Pts.,Ranking.", "sql": {"query": "SELECT SUM(`RR2 Pts.`) as `Total RR2 Pts.`FROM `team_racing_results`WHERE `Won` = 11;", "length": 85}, "source": "wikisql"} +{"description": "What is the crowd total for glenferrie oval?", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Aussie Rules Football Match Results", "table_info": {"columns": [{"name": "Home team", "type": "TEXT"}, {"name": "Home team score", "type": "TEXT"}, {"name": "Away team", "type": "TEXT"}, {"name": "Away team score", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Crowd", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["Richmond", "7.9 (51)", "St Kilda", "9.12 (66)", "Punt Road Oval", "17,000", "1 July 1939"], ["Hawthorn", "8.4 (52)", "Melbourne", "7.12 (54)", "Glenferrie Oval", "8,000", "1 July 1939"], ["Footscray", "5.10 (40)", "Geelong", "3.7 (25)", "Western Oval", "6,000", "1 July 1939"], ["Collingwood", "18.9 (117)", "Essendon", "7.18 (60)", "Victoria Park", "10,500", "1 July 1939"], ["Carlton", "15.13 (103)", "Fitzroy", "7.18 (60)", "Princes Park", "11,000", "1 July 1939"], ["South Melbourne", "7.6 (48)", "North Melbourne", "14.12 (96)", "Lake Oval", "6,000", "1 July 1939"], ["Sydney", "12.11 (83)", "Brisbane", "9.9 (63)", "SCG", "20,000", "12 May 2021"], ["Western Bulldogs", "15.8 (98)", "Adelaide", "10.12 (72)", "Marvel Stadium", "25,000", "15 May 2021"], ["Essendon", "17.5 (107)", "Gold Coast", "9.12 (66)", "Metricon Stadium", "15,000", "22 May 2021"], ["Geelong", "11.10 (76)", "Collingwood", "14.9 (93)", "GMHBA Stadium", "30,000", "29 May 2021"], ["Melbourne", "12.13 (85)", "GWS Giants", "10.11 (71)", "MCG", "40,000", "5 June 2021"], ["Richmond", "20.12 (132)", "North Melbourne", "7.5 (47)", "Marvel Stadium", "35,000", "12 June 2021"], ["Fremantle", "13.7 (85)", "Hawthorn", "8.11 (59)", "Optus Stadium", "25,000", "19 June 2021"], ["Port Adelaide", "11.17 (83)", "St Kilda", "10.11 (71)", "Adelaide Oval", "30,000", "26 June 2021"], ["Sydney", "10.13 (73)", "Carlton", "9.11 (65)", "SCG", "25,000", "3 July 2021"], ["Brisbane", "12.14 (86)", "West Coast", "6.12 (48)", "Gabba", "20,000", "10 July 2021"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Home team", "Home team score", "Away team", "Away team score", "Venue", "Crowd", "Date"], "add_description": "The name of this table is Aussie Rules Football Match Results, and the headers of this table are Home team,Home team score,Away team,Away team score,Venue,Crowd,Date.", "sql": {"query": "SELECT SUM(CAST(REPLACE(Crowd, ',', '') AS INT)) AS TotalCrowdFROM \"Aussie Rules Football Match Results\"WHERE Venue = 'Glenferrie Oval';", "length": 136}, "source": "wikisql"} +{"description": "I want to know the total number of population for foreign nationals in percentage of 23,3%", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "city_district_statistics", "table_info": {"columns": [{"name": "City district (Stadtteil)", "type": "TEXT"}, {"name": "Area in km\u00b2", "type": "TEXT"}, {"name": "Population", "type": "TEXT"}, {"name": "Foreign nationals", "type": "TEXT"}, {"name": "Foreign nationals in %", "type": "TEXT"}], "rows": [["Altstadt", "0,51 km\u00b2", "3.475", "1.122", "32,3%"], ["Innenstadt", "1,52 km\u00b2", "6.577", "2.529", "38,5%"], ["Bahnhofsviertel", "0,53 km\u00b2", "2.125", "810", "38,1%"], ["Westend-S\u00fcd", "2,47 km\u00b2", "17.288", "3.445", "19,9%"], ["Westend-Nord", "1,67 km\u00b2", "8.854", "2.184", "24,7%"], ["Nordend-West", "3,07 km\u00b2", "28.808", "5.162", "17,9%"], ["Ostend", "5,40 km\u00b2", "26.955", "7.213", "26,8%"], ["Bornheim", "2,66 km\u00b2", "27.184", "6.240", "23,0%"], ["Gutleutviertel", "2,20 km\u00b2", "5.843", "1.953", "33,4%"], ["Gallus", "4,22 km\u00b2", "26.716", "11.012", "41,2%"], ["Bockenheim", "8,04 km\u00b2", "34.740", "9.034", "26,0%"], ["Sachsenhausen-Nord", "4,24 km\u00b2", "30.374", "6.507", "21,4%"], ["Sachsenhausen-S\u00fcd", "34,91 km\u00b2", "26.114", "4.847", "18,6%"], ["Flughafen", "20,00 km\u00b2", "211", "14", "6,6%"], ["Oberrad", "2,74 km\u00b2", "12.828", "3.113", "24,3%"], ["Niederrad", "2,93 km\u00b2", "22.954", "6.569", "28,6%"], ["Schwanheim", "17,73 km\u00b2", "20.162", "3.532", "17,5%"], ["Griesheim", "4,90 km\u00b2", "22.648", "8.029", "35,5%"], ["R\u00f6delheim", "5,15 km\u00b2", "17.841", "4.863", "27,3%"], ["Hausen", "1,26 km\u00b2", "7.178", "2.135", "29,7%"], ["Praunheim", "4,55 km\u00b2", "15.761", "3.197", "20,3%"], ["Heddernheim", "2,49 km\u00b2", "16.443", "3.194", "19,4%"], ["Niederursel", "7,22 km\u00b2", "16.394", "3.671", "22,4%"], ["Ginnheim", "2,73 km\u00b2", "16.444", "4.024", "24,5%"], ["Dornbusch", "2,38 km\u00b2", "18.511", "3.482", "18,8%"], ["Eschersheim", "3,34 km\u00b2", "14.808", "2.657", "17,9%"], ["Preungesheim", "3,74 km\u00b2", "13.568", "3.442", "25,4%"], ["Bonames", "1,24 km\u00b2", "6.362", "1.288", "20,2%"], ["Berkersheim", "3,18 km\u00b2", "3.400", "592", "17,4%"], ["Riederwald", "1,04 km\u00b2", "4.911", "1.142", "23,3%"], ["Seckbach", "8,04 km\u00b2", "10.194", "1.969", "19,3%"], ["Fechenheim", "7,18 km\u00b2", "16.061", "5.635", "35,1%"], ["H\u00f6chst", "4,73 km\u00b2", "13.888", "5.279", "38,0%"], ["Nied", "3,82 km\u00b2", "17.829", "5.224", "29,3%"], ["Sindlingen", "3,98 km\u00b2", "9.032", "2.076", "23,0%"], ["Zeilsheim", "5,47 km\u00b2", "11.984", "2.555", "21,3%"], ["Unterliederbach", "5,85 km\u00b2", "14.350", "3.511", "24,5%"], ["Sossenheim", "5,97 km\u00b2", "15.853", "4.235", "26,7%"], ["Nieder-Erlenbach", "8,34 km\u00b2", "4.629", "496", "10,7%"], ["Kalbach-Riedberg", "6,90 km\u00b2", "8.482", "1.279", "15,1%"], ["Harheim", "5,02 km\u00b2", "4.294", "446", "10,4%"], ["Nordend-Ost", "2,87 km\u00b2", "22.708", "4.630", "20,4%"], ["Gallusviertel", "1,22 km\u00b2", "13.255", "3.283", "24,7%"], ["Bockenheim-S\u00fcd", "2,72 km\u00b2", "21.096", "5.221", "24,7%"], ["Griesheim-Nord", "3,17 km\u00b2", "17.492", "5.390", "30,8%"], ["Heddernheimer-Weidenborn", "2,11 km\u00b2", "13.973", "2.299", "16,4%"], ["Sachsenhausen-Ost", "5,64 km\u00b2", "31.808", "5.229", "16,4%"], ["Seckbach-Ost", "9,86 km\u00b2", "14.161", "2.846", "20,1%"], ["Kalbach", "1,70 km\u00b2", "5.684", "1.016", "17,9%"], ["Niederursel-Ost", "4,29 km\u00b2", "19.684", "4.967", "25,3%"], ["Preungesheim-Nord", "2,63 km\u00b2", "11.139", "2.505", "22,5%"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["City district (Stadtteil)", "Area in km\u00b2", "Population", "Foreign nationals", "Foreign nationals in %"], "add_description": "The name of this table is city_district_statistics, and the headers of this table are City district (Stadtteil),Area in km\u00b2,Population,Foreign nationals,Foreign nationals in %.", "sql": {"query": "SELECT SUM(Population) FROM city_district_statistics WHERE `Foreign nationals in %` = '23,3%';", "length": 94}, "source": "wikisql"} +{"description": "what is the total number of medals between south korea, north korea, sweden, and brazil?", "label": ["150"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Medal Table", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "INT"}, {"name": "Silver", "type": "INT"}, {"name": "Bronze", "type": "INT"}, {"name": "Total", "type": "INT"}], "rows": [["1", "Brazil", "45", "33", "36", "114"], ["2", "China", "37", "28", "34", "99"], ["3", "Italy", "14", "13", "24", "51"], ["4", "Poland", "13", "19", "11", "43"], ["5", "France", "11", "3", "3", "17"], ["6", "South Korea", "8", "6", "8", "22"], ["7", "North Korea", "7", "2", "3", "12"], ["8", "Kenya", "6", "5", "5", "16"], ["9", "Germany", "5", "19", "11", "35"], ["10", "Ukraine", "5", "4", "9", "18"], ["11", "Iran", "5", "3", "4", "12"], ["12", "Norway", "4", "5", "2", "11"], ["13", "Qatar", "3", "1", "2", "6"], ["14", "Chile", "2", "4", "2", "8"], ["15", "Austria", "2", "2", "2", "6"], ["16", "Lithuania", "2", "1", "2", "5"], ["17", "Belarus", "2", "0", "4", "6"], ["18", "Latvia", "2", "0", "2", "4"], ["19", "Sweden", "2", "0", "0", "2"], ["20", "Morocco", "1", "7", "1", "9"], ["21", "Turkey", "1", "5", "4", "10"], ["22", "Kazakhstan", "1", "3", "6", "10"], ["22", "Venezuela", "1", "3", "6", "10"], ["24", "Switzerland", "1", "3", "5", "9"], ["25", "Slovenia", "1", "2", "6", "9"], ["26", "Bahrain", "1", "2", "4", "7"], ["26", "Finland", "1", "2", "4", "7"], ["28", "Algeria", "1", "2", "3", "6"], ["29", "Estonia", "1", "2", "2", "5"], ["30", "United States", "1", "1", "3", "5"], ["31", "Netherlands", "1", "1", "2", "4"], ["32", "Syria", "1", "1", "0", "2"], ["33", "Belgium", "1", "0", "2", "3"], ["33", "Romania", "1", "0", "2", "3"], ["35", "Canada", "1", "0", "1", "2"], ["35", "Uganda", "1", "0", "1", "2"], ["37", "Croatia", "1", "0", "0", "1"], ["37", "Denmark", "1", "0", "0", "1"], ["37", "Ecuador", "1", "0", "0", "1"], ["40", "Greece", "0", "5", "3", "8"], ["41", "Tunisia", "0", "3", "1", "4"], ["42", "Dominican Republic", "0", "1", "2", "3"], ["43", "Jordan", "0", "1", "1", "2"], ["44", "Egypt", "0", "1", "0", "1"], ["44", "Hungary", "0", "1", "0", "1"], ["46", "India", "0", "0", "3", "3"], ["47", "Cameroon", "0", "0", "2", "2"], ["47", "Namibia", "0", "0", "2", "2"], ["47", "Sri Lanka", "0", "0", "2", "2"], ["47", "Uruguay", "0", "0", "2", "2"], ["51", "Argentina", "0", "0", "1", "1"], ["51", "Pakistan", "0", "0", "1", "1"], ["51", "Suriname", "0", "0", "1", "1"], ["51", "Slovakia", "0", "0", "1", "1"], ["Total", "Total", "195", "194", "239", "628"], ["1", "United States", "39", "41", "33", "113"], ["2", "China", "38", "32", "18", "88"], ["3", "Japan", "27", "14", "17", "58"], ["4", "Great Britain", "22", "21", "22", "65"], ["5", "Australia", "17", "7", "22", "46"], ["6", "Germany", "16", "10", "15", "41"], ["7", "France", "10", "15", "12", "37"], ["8", "Netherlands", "9", "12", "14", "35"], ["9", "Italy", "8", "12", "9", "29"], ["10", "Canada", "7", "6", "11", "24"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Medal Table, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "sql": {"query": "SELECT SUM(Gold + Silver + Bronze) AS TotalMedalsFROM MedalTableWHERE Nation IN ('South Korea', 'North Korea', 'Sweden', 'Brazil');", "length": 131}, "source": "wikitq"} +{"description": "add up the total number of goals scored by chipperfield and viduka.", "label": ["5"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Player Goals in International Tournaments", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Friendlies", "type": "INT"}, {"name": "FIFA Confederations Cup", "type": "INT"}, {"name": "FIFA World Cup Qual.", "type": "TEXT"}, {"name": "Total Goals", "type": "INT"}], "rows": [["Aloisi", "1", "4", "-", "5"], ["Bresciano", "2", "-", "1", "3"], ["Thompson", "1", "-", "2", "3"], ["Viduka", "1", "-", "2", "3"], ["Chipperfield", "1", "-", "1", "2"], ["Emerton", "-", "-", "2", "2"], ["Milicic", "2", "-", "-", "2"], ["Cahill", "-", "-", "1", "1"], ["Colosimo", "1", "-", "-", "1"], ["Culina", "-", "-", "1", "1"], ["Elrich", "1", "-", "-", "1"], ["Griffiths", "1", "-", "-", "1"], ["Skoko", "-", "1", "-", "1"], ["Zdrilic", "1", "-", "-", "1"], ["Kewell", "3", "2", "-", "5"], ["Neill", "1", "-", "3", "4"], ["Cahill", "-", "1", "2", "3"], ["Vidmar", "1", "-", "1", "2"], ["Bresciano", "2", "1", "-", "3"], ["Aloisi", "1", "-", "1", "2"], ["Farina", "-", "-", "2", "2"], ["Emerton", "-", "-", "1", "1"], ["Schwarzer", "-", "2", "-", "2"], ["Culina", "-", "-", "2", "2"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Player", "Friendlies", "FIFA Confederations Cup", "FIFA World Cup Qual.", "Total Goals"], "add_description": "The name of this table is Player Goals in International Tournaments, and the headers of this table are Player,Friendlies,FIFA Confederations Cup,FIFA World Cup Qual.,Total Goals.", "sql": {"query": "SELECT SUM(`Total Goals`) FROM `Player Goals in International Tournaments` WHERE Player='Chipperfield' OR Player='Viduka';", "length": 122}, "source": "wikitq"} +{"description": "Name the total number of offensive for colin doyle", "label": ["1.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "lacrosse_stats", "table_info": {"columns": [{"name": "Month", "type": "TEXT"}, {"name": "Week", "type": "TEXT"}, {"name": "Overall", "type": "TEXT"}, {"name": "Offensive", "type": "TEXT"}, {"name": "Defensive", "type": "TEXT"}, {"name": "Transition", "type": "TEXT"}, {"name": "Rookie", "type": "TEXT"}], "rows": [["January", "1", "Josh Sanderson", "Josh Sanderson", "Pat O'Toole", "Paul Rabil", "Garrett Billings"], ["January", "2", "Colin Doyle", "Colin Doyle", "Brandon Miller", "Bobby McBride", "Ilija Gajic"], ["January", "3", "Bob Watson", "Lewis Ratcliff", "Bob Watson", "Paul Rabil", "Garrett Billings"], ["January", "4", "Aaron Bold", "Jeff Zywicki", "Greg Peyser", "Brodie Merrill", "Brett Mydske"], ["February", "5", "Blaine Manning", "Blaine Manning", "Matt Vinc", "Peter Morgan", "Stephan LeBlanc"], ["February", "6", "Mike Poulin", "John Tavares", "Angus Goodleaf", "Jay Thorimbert", "Stephan LeBlanc"], ["February", "7", "Callum Crawford", "Ryan Powell", "Pat O'Toole", "Steve Toll", "Garrett Billings"], ["March", "8", "Casey Powell", "Casey Powell", "Matt Vinc", "Geoff Snider", "Alex Gajic"], ["March", "9", "Mark Steenhuis", "Mark Steenhuis", "Matt King", "Jeff Shattler", "Kyle Clancy"], ["March", "10", "John Tavares", "John Tavares", "Matt Vinc", "Jordan Hall", "Alex Gajic"], ["March", "11", "Dan Dawson", "Dan Dawson", "Anthony Cosmo", "Jeff Shattler", "Ryan Hotaling"], ["March", "12", "Lewis Ratcliff", "Lewis Ratcliff", "Brandon Miller", "Paul Rabil", "Alex Gajic"], ["April", "13", "Stephan LeBlanc", "Callum Crawford", "Brandon Atherton", "Brodie Merrill", "Stephan LeBlanc"], ["April", "14", "Shawn Williams", "Rhys Duch", "Matt Roik", "Jed Prossner", "Chris Corbeil"], ["April", "15", "Dan Dawson", "Dan Dawson", "Matt Vinc", "Geoff Snider", "Stephan LeBlanc"], ["May", "16", "Curtis Knight", "Curtis Knight", "Dillon Ward", "Miles Thompson", "Tyler Digby"], ["May", "17", "Ryan Benesch", "Ryan Benesch", "Zach Higgins", "Kevin Crowley", "Jeff Shattler"], ["May", "18", "Garrett Billings", "John Grant Jr.", "Mike Poulin", "Joel McCready", "Dane Dobbie"], ["June", "19", "Curtis Dickson", "Curtis Dickson", "Alex Buque", "Jeremy Thompson", "Johnny Powless"], ["June", "20", "Adam Jones", "Corey Small", "Dillon Ward", "Graeme Hossack", "Curtis Dickson"], ["June", "21", "Kevin Crowley", "Kevin Crowley", "Tye Belanger", "Robert Hope", "Lyle Thompson"], ["July", "22", "Shayne Jackson", "Shayne Jackson", "Nick Rose", "Chad Tutton", "Jordan Hall"], ["July", "23", "Rob Hellyer", "Rob Hellyer", "Dillon Ward", "Steve Priolo", "Tom Schreiber"], ["August", "24", "Josh Byrne", "Josh Byrne", "Mike Poulin", "Brodie Merrill", "Mark Matthews"], ["August", "25", "Randy Staats", "Randy Staats", "Zach Higgins", "Ryan Dilks", "Shayne Jackson"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Month", "Week", "Overall", "Offensive", "Defensive", "Transition", "Rookie"], "add_description": "The name of this table is lacrosse_stats, and the headers of this table are Month,Week,Overall,Offensive,Defensive,Transition,Rookie.", "sql": {"query": "SELECT SUM(Offensive) AS total_offensive FROM lacrosse_stats WHERE Overall = 'Colin Doyle';", "length": 91}, "source": "wikisql"} +{"description": "what is the total number of playoffs appearances from all teams?", "label": ["21"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Basketball Teams History", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "City", "type": "TEXT"}, {"name": "Years active", "type": "TEXT"}, {"name": "Seasons played", "type": "INT"}, {"name": "Win\u2013loss record", "type": "TEXT"}, {"name": "Win%", "type": "DECIMAL"}, {"name": "Playoffs appearances", "type": "INT"}], "rows": [["Anderson Packers", "Anderson, Indiana", "1949\u20131950", "1", "37\u201327", ".578", "1"], ["BAA Buffalo", "Buffalo, New York", "Never Played", "0", "0\u20130", "N/A", "0"], ["BAA Indianapolis", "Indianapolis, Indiana", "Never Played", "0", "0\u20130", "N/A", "0"], ["Baltimore Bullets*", "Baltimore, Maryland", "1947\u20131954", "8", "158\u2013292", ".351", "3"], ["Chicago Stags", "Chicago, Illinois", "1946\u20131950", "4", "145\u201392", ".612", "4"], ["Cleveland Rebels", "Cleveland, Ohio", "1946\u20131947", "1", "30\u201330", ".500", "1"], ["Denver Nuggets", "Denver, Colorado", "1949\u20131950", "1", "11\u201351", ".177", "0"], ["Detroit Falcons", "Detroit, Michigan", "1946\u20131947", "1", "20\u201340", ".333", "0"], ["Indianapolis Jets", "Indianapolis, Indiana", "1948\u20131949", "1", "18\u201342", ".300", "0"], ["Indianapolis Olympians", "Indianapolis, Indiana", "1949\u20131953", "4", "132\u2013137", ".491", "4"], ["Pittsburgh Ironmen", "Pittsburgh, Pennsylvania", "1946\u20131947", "1", "15\u201345", ".250", "0"], ["Providence Steamrollers", "Providence, Rhode Island", "1946\u20131949", "3", "46\u2013122", ".274", "0"], ["Sheboygan Red Skins", "Sheboygan, Wisconsin", "1949\u20131950", "1", "22\u201340", ".355", "1"], ["St. Louis Bombers", "St. Louis, Missouri", "1946\u20131950", "4", "122\u2013115", ".515", "3"], ["Toronto Huskies", "Toronto, Ontario", "1946\u20131947", "1", "22\u201338", ".367", "0"], ["Washington Capitols", "Washington, D.C.", "1946\u20131951", "5", "157\u2013114", ".579", "4"], ["Waterloo Hawks", "Waterloo, Iowa", "1949\u20131950", "1", "19\u201343", ".306", "0"], ["Boston Celtics", "Boston, Massachusetts", "1946\u2013present", "75", "3,445\u20132,318", ".598", "61"], ["Los Angeles Lakers", "Los Angeles, California", "1948\u2013present", "73", "3,344\u20132,144", ".609", "60"], ["New York Knicks", "New York City, New York", "1946\u2013present", "75", "2,769\u20133,167", ".466", "42"], ["Chicago Bulls", "Chicago, Illinois", "1966\u2013present", "54", "2,390\u20131,970", ".548", "35"], ["Golden State Warriors", "San Francisco, California", "1946\u2013present", "75", "3,055\u20132,759", ".526", "39"], ["Miami Heat", "Miami, Florida", "1988\u2013present", "32", "1,199\u20131,003", ".544", "20"], ["San Antonio Spurs", "San Antonio, Texas", "1976\u2013present", "45", "2,073\u20131,257", ".622", "38"], ["Houston Rockets", "Houston, Texas", "1967\u2013present", "53", "2,204\u20131,998", ".524", "34"], ["Utah Jazz", "Salt Lake City, Utah", "1974\u2013present", "47", "1,990\u20131,688", ".541", "29"], ["Philadelphia 76ers", "Philadelphia, Pennsylvania", "1949\u2013present", "72", "2,972\u20132,432", ".550", "50"]]}}, "evaluation": "", "example": "", "type": ["aggregation-SUM"], "heads": ["Team", "City", "Years active", "Seasons played", "Win\u2013loss record", "Win%", "Playoffs appearances"], "add_description": "The name of this table is Basketball Teams History, and the headers of this table are Team,City,Years active,Seasons played,Win\u2013loss record,Win%,Playoffs appearances.", "sql": {"query": "SELECT SUM(`Playoffs appearances`) as total_playoffs_appearances FROM `Basketball Teams History`;", "length": 97}, "source": "wikitq"} +{"description": "What is the earliest any of these players were born?", "label": ["1976.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Basketball Players", "table_info": {"columns": [{"name": "No", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Height", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Year born", "type": "TEXT"}, {"name": "Current Club", "type": "TEXT"}], "rows": [["4", "Rimantas Kauk\u0117nas", "1.92", "Guard", "1977", "Montepaschi Siena"], ["5", "Giedrius Gustas", "1.90", "Guard", "1980", "Barons Riga"], ["6", "Jonas Ma\u010diulis", "2.00", "Forward", "1985", "\u017dalgiris Kaunas"], ["7", "Darju\u0161 Lavrinovi\u010d", "2.12", "Center", "1979", "UNICS Kazan"], ["8", "Ram\u016bnas \u0160i\u0161kauskas", "1.98", "Guard", "1978", "CSKA Moscow"], ["9", "Darius Songaila", "2.04", "Forward", "1978", "Washington Wizards"], ["10", "Simas Jasaitis", "2.00", "Forward", "1982", "TAU Cer\u00e1mica"], ["11", "Linas Kleiza", "2.03", "Forward", "1985", "Denver Nuggets"], ["12", "K\u0161y\u0161tof Lavrinovi\u010d", "2.10", "Center", "1979", "Montepaschi Siena"], ["13", "\u0160ar\u016bnas Jasikevi\u010dius", "1.92", "Guard", "1976", "Golden State Warriors"], ["14", "Paulius Jank\u016bnas", "2.05", "Forward", "1984", "\u017dalgiris Kaunas"], ["15", "Mantas Kalnietis", "1.94", "Guard", "1986", "Olimpia Milano"], ["16", "Renaldas Seibutis", "1.96", "Guard", "1985", "Lietuvos rytas"], ["17", "Martynas Gecevi\u010dius", "1.96", "Guard", "1988", "Brose Bamberg"], ["18", "Martynas Pocius", "1.98", "Guard", "1986", "Italbasket"], ["19", "Donatas Motiej\u016bnas", "2.13", "Forward", "1990", "Shanghai Sharks"], ["20", "Art\u016bras Gudaitis", "2.10", "Center", "1993", "AX Armani Exchange Milan"], ["21", "Mindaugas Kuzminskas", "2.05", "Forward", "1989", "Olympiacos Piraeus"], ["22", "Jonas Valan\u010di\u016bnas", "2.13", "Center", "1992", "Memphis Grizzlies"], ["23", "Vytenis Lipkevi\u010dius", "1.96", "Guard", "1996", "CB Miraflores"], ["24", "Edgaras Ulanovas", "2.00", "Forward", "1992", "\u017dalgiris Kaunas"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["No", "Player", "Height", "Position", "Year born", "Current Club"], "add_description": "The name of this table is Basketball Players, and the headers of this table are No,Player,Height,Position,Year born,Current Club.", "sql": {"query": "SELECT MIN(`Year born`) FROM `Basketball Players`;", "length": 50}, "source": "wikisql"} +{"description": "what was its best starting position?", "label": ["4"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "car_race_results", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Car", "type": "INT"}, {"name": "Start", "type": "INT"}, {"name": "Qual", "type": "FLOAT"}, {"name": "Rank", "type": "INT"}, {"name": "Finish", "type": "INT"}, {"name": "Laps", "type": "INT"}, {"name": "Led", "type": "INT"}, {"name": "Retired", "type": "TEXT"}], "rows": [["1956", "14", "23", "142.535", "16", "7", "200", "0", "Running"], ["1957", "7", "16", "141.016", "19", "9", "200", "0", "Running"], ["1958", "14", "4", "144.881", "4", "26", "1", "0", "Crash T3"], ["1959", "74", "7", "144.023", "8", "12", "200", "0", "Running"], ["1960", "44", "25", "143.363", "23", "8", "200", "0", "Running"], ["1962", "96", "19", "146.157", "32", "33", "12", "0", "Engine"], ["1963", "86", "24", "148.289", "26", "26", "74", "0", "Valve"], ["1964", "54", "23", "153.381", "10", "19", "88", "0", "Piston"], ["1965", "54", "10", "156.427", "11", "24", "58", "0", "Piston"], ["1967", "46", "28", "162.580", "32", "11", "189", "0", "Flagged"], ["1968", "16", "24", "163.495", "24", "11", "196", "0", "Flagged"], ["Totals", "Totals", "Totals", "Totals", "Totals", "Totals", "1418", "0", ""], [], ["1965", "54", "10", "156.427", "11", "24", "58", "0", "Piston"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["Year", "Car", "Start", "Qual", "Rank", "Finish", "Laps", "Led", "Retired"], "add_description": "The name of this table is car_race_results, and the headers of this table are Year,Car,Start,Qual,Rank,Finish,Laps,Led,Retired.", "sql": {"query": "SELECT MIN(Start) FROM car_race_results;", "length": 40}, "source": "wikitq"} +{"description": "Score of 108-85 is what lowest game?", "label": ["80.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "game score", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["74", "Wed. Apr. 1", "Washington Bullets", "103-86", "Boston Garden", "54-20"], ["75", "Fri. Apr. 3", "Detroit Pistons", "119-115 (OT)", "Boston Garden", "55-20"], ["76", "Sun. Apr. 5", "@ Philadelphia 76ers", "104-106 (OT)", "The Spectrum", "55-21"], ["77", "Tue. Apr. 7", "@ Cleveland Cavaliers", "83-107", "Richfield Coliseum", "55-22"], ["78", "Fri. Apr. 10", "@ New Jersey Nets", "108-117", "Brendan Byrne Arena", "55-23"], ["79", "Sun. Apr. 12", "New York Knicks", "119-107", "Boston Garden", "56-23"], ["80", "Wed. Apr. 15", "@ Indiana Pacers", "108-85", "Market Square Arena", "57-23"], ["81", "Fri. Apr. 17", "Chicago Bulls", "108-105", "Boston Garden", "58-23"], ["82", "Sun. Apr. 19", "Atlanta Hawks", "118-107", "Boston Garden", "59-23"], ["1", "Mon. Nov. 2", "Philadelphia 76ers", "93-105", "@ The Spectrum", "0-1"], ["2", "Wed. Nov. 4", "@ Chicago Bulls", "87-106", "Chicago Stadium", "0-2"], ["3", "Fri. Nov. 6", "Cleveland Cavaliers", "112-95", "Boston Garden", "1-2"], ["4", "Sun. Nov. 8", "@ Milwaukee Bucks", "97-83", "Bradley Center", "2-2"], ["5", "Tue. Nov. 10", "Golden State Warriors", "113-109", "Boston Garden", "3-2"], ["6", "Fri. Nov. 13", "@ Utah Jazz", "120-108", "Salt Lake City", "4-2"], ["7", "Sun. Nov. 15", "@ Seattle SuperSonics", "110-98", "Kingdome", "5-2"], ["8", "Tue. Nov. 17", "Indiana Pacers", "98-87", "Boston Garden", "6-2"], ["9", "Fri. Nov. 20", "@ Toronto Raptors", "105-109", "SkyDome", "6-3"], ["10", "Sun. Nov. 22", "Orlando Magic", "104-101", "Boston Garden", "7-3"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["Game", "Date", "Opponent", "Score", "Location", "Record"], "add_description": "The name of this table is game score, and the headers of this table are Game,Date,Opponent,Score,Location,Record.", "sql": {"query": "SELECT MIN(Game) AS \"Lowest Game\"FROM \"game score\"WHERE Score = '108-85';", "length": 73}, "source": "wikisql"} +{"description": "what was the first building named as the tallest?", "label": ["Globe Building"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Tall Buildings in Minneapolis", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Street address", "type": "TEXT"}, {"name": "Years as tallest", "type": "TEXT"}, {"name": "Height\\nft (m)", "type": "DECIMAL"}, {"name": "Floors", "type": "INT"}], "rows": [["Globe Building", "4th Street South", "1882\u20131886", "157 (48)", "8"], ["Lumber Exchange Building", "10 5th Street South", "1886\u20131887", "165 (50)", "12"], ["Industrial Exposition Building", "Central Avenue Southeast and Main Street Southeast", "1887\u20131890", "240 (73)", "8"], ["Metropolitan Building", "308 2nd Avenue South", "1890\u20131895", "258 (79)", "12"], ["Minneapolis City Hall", "350 5th Street South", "1895\u20131929", "341 (104)", "14"], ["Foshay Tower", "821 Marquette Avenue", "1929\u20131973", "448 (137)", "32"], ["IDS Tower", "80 8th Street South", "1973\u2013present", "792 (241)", "55"], ["First National Bank Building", "332 Minnesota Street", "1931\u20131972", "430 (131)", "32"], ["Capella Tower", "225 South 6th Street", "1992\u2013present", "776 (237)", "56"], ["Target Plaza South", "1000 Nicollet Mall", "1984\u20131985", "502 (153)", "33"], ["Bishop Henry Whipple Federal Building", "1 Federal Drive", "1969\u20131973", "284 (87)", "17"], ["Calhoun Square", "3001 Hennepin Avenue", "1983\u20131985", "143 (44)", "4"], ["Nicollet Mall", "Nicollet Avenue", "-", "-", "-"], ["Hennepin County Government Center", "300 South 6th Street", "1979\u20131983", "433 (132)", "24"], ["IDS Center", "80 8th Street South", "1972\u20131973", "792 (241)", "55"], ["Minneapolis Public Library Central Branch", "300 Nicollet Mall", "1961\u20131965", "273 (83)", "9"], ["Radisson Blu Minneapolis Downtown", "35 South 7th Street", "1972\u20131992", "469 (143)", "36"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["Name", "Street address", "Years as tallest", "Height\\nft (m)", "Floors"], "add_description": "The name of this table is Tall Buildings in Minneapolis, and the headers of this table are Name,Street address,Years as tallest,Height\\nft (m),Floors.", "sql": {"query": "SELECT Name FROM \"Tall Buildings in Minneapolis\" WHERE \"Years as tallest\" = (SELECT MIN(\"Years as tallest\") FROM \"Tall Buildings in Minneapolis\");", "length": 146}, "source": "wikitq"} +{"description": "What is the smallest crowd number for a team that has an Away team score of 15.11 (101)?", "label": ["16000.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "football_matches", "table_info": {"columns": [{"name": "Home team", "type": "TEXT"}, {"name": "Home team score", "type": "TEXT"}, {"name": "Away team", "type": "TEXT"}, {"name": "Away team score", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Crowd", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["North Melbourne", "7.8 (50)", "St Kilda", "11.15 (81)", "Arden Street Oval", "4,000", "29 August 1931"], ["Footscray", "10.12 (72)", "Melbourne", "5.8 (38)", "Western Oval", "12,000", "29 August 1931"], ["Fitzroy", "9.8 (62)", "Geelong", "9.22 (76)", "Brunswick Street Oval", "8,000", "29 August 1931"], ["South Melbourne", "12.18 (90)", "Hawthorn", "9.5 (59)", "Lake Oval", "4,500", "29 August 1931"], ["Richmond", "23.14 (152)", "Essendon", "15.11 (101)", "Punt Road Oval", "16,000", "29 August 1931"], ["Collingwood", "20.15 (135)", "Carlton", "10.14 (74)", "Victoria Park", "20,000", "29 August 1931"], ["Sydney", "12.10 (82)", "Brisbane", "10.7 (67)", "SCG", "25,000", "1 June 2019"], ["West Coast Eagles", "18.12 (120)", "Adelaide", "13.8 (86)", "Optus Stadium", "45,000", "1 June 2019"], ["Port Adelaide", "9.11 (65)", "Western Bulldogs", "12.10 (82)", "Adelaide Oval", "35,000", "2 June 2019"], ["Gold Coast", "5.17 (47)", "North Melbourne", "15.12 (102)", "Metricon Stadium", "10,000", "2 June 2019"], ["Geelong", "11.13 (79)", "Richmond", "10.9 (69)", "MCG", "75,000", "3 June 2019"], ["Hawthorn", "16.7 (103)", "Melbourne", "9.11 (65)", "MCG", "40,000", "4 June 2019"], ["St Kilda", "8.12 (60)", "Port Adelaide", "11.8 (74)", "Adelaide Oval", "30,000", "4 June 2019"], ["Essendon", "14.8 (92)", "Collingwood", "10.14 (74)", "MCG", "90,000", "5 June 2019"], ["Fremantle", "11.4 (70)", "GWS Giants", "9.14 (68)", "Optus Stadium", "50,000", "6 June 2019"], ["Brisbane", "12.11 (83)", "West Coast Eagles", "15.12 (102)", "Gabba", "40,000", "7 June 2019"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["Home team", "Home team score", "Away team", "Away team score", "Venue", "Crowd", "Date"], "add_description": "The name of this table is football_matches, and the headers of this table are Home team,Home team score,Away team,Away team score,Venue,Crowd,Date.", "sql": {"query": "SELECT MIN(CAST(REPLACE(Crowd, ',', '') AS INT)) FROM football_matches WHERE [Away team score] = '15.11 (101)';", "length": 111}, "source": "wikisql"} +{"description": "what year was the first title released?", "label": ["2004"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Music Releases", "table_info": {"columns": [{"name": "Release", "type": "DATE"}, {"name": "Artist", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}, {"name": "Album", "type": "TEXT"}], "rows": [["2004", "Hiroshi Itsuki feat. Rimi Natsukawa", "Deigo to Hanasu (\u30c7\u30a4\u30b4\u3068\u306f\u307e\u306a\u3059 Talking with a Tiger's Claw Flower?)", "", "Onna no Ehon"], ["2005", "Chikuzen Sato with Rimi Natsukawa", "Boku no Mune de Oyasumi (\u50d5\u306e\u80f8\u3067\u304a\u3084\u3059\u307f Goodbye with My Heart?)", "Features on \"Rimits: Best Duet Songs\" (2006)", "The Selection of Cornerstones 1995-2004"], ["2005", "Rimi Natsukawa", "'Aa K\u014dshien' Kimi yo Hachigatsu ni Atsuku Nare (\u300c\u3042\u309d\u7532\u5b50\u5712\u300d\u541b\u3088\u516b\u6708\u306b\u71b1\u304f\u306a\u308c You Make Me Hot in August (from Ah, K\u014dshien)?)", "", "Ningen Many\u014dka: Y\u016b Aku Kashish\u016b"], ["2005", "Kaoru Kurosawa duet with Rimi Natsukawa", "Manten no Hoshi no Yoru (\u6e80\u5929\u306e\u661f\u306e\u591c Night with a Sky Full of Stars?)", "Features on \"Rimits: Best Duet Songs\" (2006)", "Love Anthem"], ["2006", "Andrea Bocelli duet with Rimi Natsukawa", "Somos Novios (Ai no Yume) (\u30bd\u30e2\u30b9\u30fb\u30ce\u30d3\u30aa\u30b9\uff5e\u611b\u306e\u5922 It's Impossible (Dream of Love)?)", "Features on \"Umui Kaji\" (2007)", "Amore (Japanese Edition)"], ["2008", "Taiyo Yamazawa presents Rimi Natsukawa", "Utabito (\u6b4c\u4eba Singer?)", "", "Music Tree"], ["2009", "Chage with Rimi Natsukawa", "Boku wa D\u014d Kana (\u50d5\u306f\u3069\u3046\u304b\u306a What Should I Do?)", "", "Many Happy Returns"], ["2009", "Rimi Natsukawa", "Tada Sore Dake (\u305f\u3060\u305d\u308c\u3060\u3051 It's Only That?)", "", "Katsuhisa Hattori"], ["2022", "Taylor Swift", "Red (Taylor\u2019s Version)", "", "Red (Taylor\u2019s Version)"], ["2021", "Adele", "Easy On Me", "", "30"], ["2022", "Ed Sheeran", "Bad Habits", "", "Bad Habits"], ["2021", "BTS", "Butter", "", "Butter"], ["2022", "Ariana Grande", "7 Rings", "", "Thank U, Next"], ["2021", "Justin Bieber", "Peaches", "", "Justice"], ["2020", "The Weeknd", "Blinding Lights", "", "After Hours"], ["2019", "Lizzo", "Truth Hurts", "", "Cuz I Love You (Deluxe)"], ["2018", "Drake", "In My Feelings", "", "Scorpion"], ["2017", "Ed Sheeran", "Shape Of You", "", "\u00f7 (Deluxe)"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["Release", "Artist", "Title", "Notes", "Album"], "add_description": "The name of this table is Music Releases, and the headers of this table are Release,Artist,Title,Notes,Album.", "sql": {"query": "SELECT MIN(Release) FROM `Music Releases`;", "length": 42}, "source": "wikitq"} +{"description": "When did the oldest airline start operations?", "label": ["1941.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "airlines", "table_info": {"columns": [{"name": "Airline", "type": "TEXT"}, {"name": "ICAO", "type": "TEXT"}, {"name": "IATA", "type": "TEXT"}, {"name": "Callsign", "type": "TEXT"}, {"name": "Commenced operations", "type": "TEXT"}, {"name": "Fleet size", "type": "TEXT"}, {"name": "Headquarters", "type": "TEXT"}], "rows": [["AirAsia Zest", "EZD", "Z2", "ZEST", "1995", "11", "Pasay City"], ["Cebu Pacific", "CEB", "5J", "CEBU", "1996", "47", "Pasay City"], ["Fil-Asian Airways", "MSE", "MX", "FAA", "2008", "1", "Lapu-Lapu City"], ["PAL Express", "GAP", "2P", "AIRPHIL", "1996", "21", "Pasay City"], ["Philippine Airlines", "PAL", "PR", "PHILIPPINE", "1941", "51", "Pasay City"], ["Philippines AirAsia", "AAU", "PQ", "COOL RED", "2012", "3", "Angeles City"], ["Sky Pasada", "WCC", "SP", "PASADA", "2010", "2", "Pasay City"], ["Spirit of Manila Airlines", "MNP", "SM", "MANILA SKY", "2010", "3", "Pasay City"], ["Tigerair Philippines", "SRQ", "DG", "SEAIR", "1995", "17", "Makati City"], ["Air Juan Aviation", "AJA", "M8", "AIR JUAN", "2012", "12", "Taguig City"], ["Cebgo", "DGX", "DG", "CEBGO", "1995", "31", "Pasay City"], ["FlySeair", "SEC", "DG", "SEAIR", "1995", "6", "Pasay City"], ["Island Aviation", "OCC", "K8", "AVIATION CORP", "2015", "3", "Taguig City"], ["Jetstar Asia Airways", "JSA", "3K", "JETSTAR ASIA", "2004", "18", "Singapore"], ["Philippines AirAsia", "APG", "Z2", "PHILIPPINE ZEST", "2012", "23", "Angeles City"], ["Philippines AirAsia (PAA)", "PAA", "PQ", "RED GO", "2015", "7", "Angeles City"], ["SEAIR International", "SQN", "DG", "SEAIR", "1995", "4", "Pasay City"], ["SkyJet Air", "M8", "M8", "SKYJET", "2012", "5", "Pasay City"], ["Zest Airways", "MYO", "Z2", "CEBU AIR", "1995", "11", "Pasay City"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["Airline", "ICAO", "IATA", "Callsign", "Commenced operations", "Fleet size", "Headquarters"], "add_description": "The name of this table is airlines, and the headers of this table are Airline,ICAO,IATA,Callsign,Commenced operations,Fleet size,Headquarters.", "sql": {"query": "SELECT MIN(`Commenced operations`) AS oldest_airline FROM airlines;", "length": 67}, "source": "wikisql"} +{"description": "What is the fewest number of games played?", "label": ["34.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "football_standings", "table_info": {"columns": [{"name": "Position", "type": "TEXT"}, {"name": "Club", "type": "TEXT"}, {"name": "Games played", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Draws", "type": "TEXT"}, {"name": "Loses", "type": "TEXT"}, {"name": "Goals scored", "type": "TEXT"}, {"name": "Goals conceded", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["1", "Kauno J\u0117geriai", "34", "23", "7", "4", "75", "28", "76"], ["2", "Alytis Alytus", "34", "22", "7", "5", "69", "23", "73"], ["3", "Atlantas-2 Klaip\u0117da", "34", "19", "8", "7", "70", "35", "65"], ["4", "Kruoja Pakruojis", "34", "17", "9", "8", "71", "36", "60"], ["5", "Rodiklis Kaunas", "34", "17", "7", "10", "70", "44", "58"], ["6", "V\u0117tra-2 Vilnius", "34", "15", "7", "12", "64", "40", "52"], ["7", "Interas Visaginas", "34", "15", "7", "12", "59", "47", "52"], ["8", "LKKA ir Teledema Kaunas", "34", "15", "7", "12", "50", "53", "52"], ["9", "\u017dalgiris-2 Vilnius", "34", "13", "7", "14", "42", "42", "46"], ["10", "FC Vilnius-2", "34", "10", "12", "12", "51", "51", "42"], ["11", "S\u016bduva-2 Marijampol\u0117", "34", "12", "5", "17", "44", "65", "41"], ["12", "Banga Garg\u017edai", "34", "9", "12", "13", "44", "49", "39"], ["13", "KFK \u0160iauliai-2", "34", "11", "6", "17", "51", "69", "39"], ["14", "Vilkmerg\u0117 Ukmerg\u0117", "34", "10", "8", "16", "40", "51", "38"], ["15", "Lietava Jonava", "34", "9", "11", "14", "43", "56", "38"], ["16", "Atletas Kaunas", "34", "8", "10", "16", "39", "47", "34"], ["17", "Gele\u017einis Vilkas Vilnius", "34", "7", "10", "17", "37", "55", "31"], ["1", "FC Barcelona", "38", "26", "9", "3", "87", "33", "87"], ["2", "Real Madrid", "38", "24", "8", "6", "82", "40", "80"], ["3", "Atletico Madrid", "38", "22", "10", "6", "55", "25", "76"], ["4", "Sevilla FC", "38", "19", "8", "11", "60", "47", "65"], ["5", "Real Sociedad", "38", "16", "11", "11", "58", "48", "59"], ["6", "Villarreal CF", "38", "16", "6", "16", "63", "55", "54"], ["7", "Valencia CF", "38", "14", "11", "13", "46", "53", "53"], ["8", "Granada CF", "38", "14", "9", "15", "47", "48", "51"], ["9", "Athletic Bilbao", "38", "13", "12", "13", "41", "38", "51"], ["10", "Levante UD", "38", "14", "7", "17", "47", "53", "49"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MIN"], "heads": ["Position", "Club", "Games played", "Wins", "Draws", "Loses", "Goals scored", "Goals conceded", "Points"], "add_description": "The name of this table is football_standings, and the headers of this table are Position,Club,Games played,Wins,Draws,Loses,Goals scored,Goals conceded,Points.", "sql": {"query": "SELECT MIN(`Games played`) FROM `football_standings`;", "length": 53}, "source": "wikisql"} +{"description": "What is the highest overall number one(s)?", "label": ["3.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Music Chart History", "table_info": {"columns": [{"name": "Number One(s)", "type": "TEXT"}, {"name": "Artist(s)", "type": "TEXT"}, {"name": "Song(s) \u2014 Weeks", "type": "TEXT"}, {"name": "Issue Years", "type": "TEXT"}, {"name": "Whole Weeks", "type": "TEXT"}], "rows": [["3", "Rihanna", "\" We Found Love \" \u2014 6", "2011 \u2014 2012", "11"], ["3", "Rihanna", "\" Where Have You Been \" \u2014 1", "2012", "11"], ["3", "Rihanna", "\" Diamonds \" \u2014 4", "2012", "11"], ["3", "One Direction", "\" Save You Tonight \" \u2014 2", "2012", "4"], ["3", "One Direction", "\" Tell Me A Lie \" \u2014 1", "2012", "4"], ["3", "One Direction", "\" Another World \" \u2014 1", "2012", "4"], ["2", "Madonna", "\" Give Me All Your Luving \" \u2014 1", "2012", "2"], ["2", "Madonna", "\" Girl Gone Wild \" \u2014 1", "2012", "2"], ["2", "Taylor Swift", "\" We Are Never Ever Getting Back Together \" \u2014 14", "2012", "23"], ["2", "Taylor Swift", "\" I Knew You Were Trouble. \" \u2014 9", "2012 \u2014 2013", "23"], ["2", "Katy Perry", "\" Part Of Me \" \u2014 2", "2012", "5"], ["2", "Katy Perry", "\" Roar \" \u2014 3", "2013", "5"], ["2", "Miley Cyrus", "\" We Can't Stop \" \u2014 1", "2013", "3"], ["1", "Ariana Grande", "\" Thank U, Next \" \u2014 7", "2018 \u2014 2019", "12"], ["1", "Ariana Grande", "\" 7 Rings \" \u2014 8", "2019", "12"], ["1", "Ariana Grande", "\" Positions \" \u2014 5", "2020", "10"], ["2", "BTS", "\" Boy With Luv \" \u2014 3", "2019", "7"], ["2", "BTS", "\" Dynamite \" \u2014 32", "2020 \u2014 2021", "55"], ["2", "BTS", "\" Butter \" \u2014 12", "2021", "25"], ["3", "Ed Sheeran", "\" Shape of You \" \u2014 33", "2017 \u2014 2018", "54"], ["3", "Ed Sheeran", "\" Perfect \" \u2014 26", "2017 \u2014 2018", "48"], ["3", "Ed Sheeran", "\" Bad Habits \" \u2014 1", "2021", "1"], ["4", "Billie Eilish", "\" Bad Guy \" \u2014 21", "2019 \u2014 2020", "34"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Number One(s)", "Artist(s)", "Song(s) \u2014 Weeks", "Issue Years", "Whole Weeks"], "add_description": "The name of this table is Music Chart History, and the headers of this table are Number One(s),Artist(s),Song(s) \u2014 Weeks,Issue Years,Whole Weeks.", "sql": {"query": "SELECT MAX(`Number One(s)`) AS `Highest Overall Number Ones` FROM `Music Chart History`;", "length": 88}, "source": "wikisql"} +{"description": "what year was the last pylon in germany built?", "label": ["1970"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Aerial Tramway Table", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Year built", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Town", "type": "TEXT"}, {"name": "Height", "type": "TEXT"}, {"name": "Remarks", "type": "TEXT"}], "rows": [["Glacial Aerial Tramway Kaprun III", "1966", "Austria", "Kaprun", "113.6 m", "The tallest pylon is on the third section"], ["Mississippi Aerial River Transit", "1984", "USA", "New Orleans", "109 m", "The tallest pylon on a gondola lift; on 87 m pile foundations; demolished 1994"], ["Torre Jaume I", "1931", "Spain", "Barcelona", "107 m", "Intermediate stop of the harbour aerial tramway, also observation tower"], ["Gant Hohtaelli aerial tramway", "", "Switzerland", "Zermatt", "94 m", "One pylon"], ["London Emirates Air Line", "Early 2012", "UK", "London", "88 m", "North Main Tower. River Thames aerial crossing between Greenwich Peninsular and Royal Docks"], ["Singapore cable car", "1972", "Singapore", "Singapore", "88 m", "Pylon I"], ["Eibsee Aerial Tramway", "1962", "Germany", "Garmisch-Partenkirchen", "85 m", "Pylon II"], ["Nizhny Novgorod Volga Aerial Tramway, Tower 4 & 5", "2012", "Russia", "Nizhny Novgorod", "82 m", ""], ["Mittersill goods aerial tramway", "194?", "Austria", "Mittersill", "80 m", "Two pylons for a tramway that never went in service and was demolished in the 1950s. One of the pylons was built of timber, the other of steel."], ["Singapore cable car", "1972", "Singapore", "Singapore", "80 m", "Pylon II"], ["3S Aerial Tramway", "2004", "Austria", "Kitzb\u00fchel", "80 m", "One pylon"], ["Torre Sant Sebastia", "1931", "Spain", "Barcelona", "78 m", "Terminal of harbour aerial tramway"], ["Roosevelt Island Tramway", "1976", "USA", "New York City", "76 m", "Central pylon of commuter tramway"], ["Wendelstein Aerial Tramway", "1970", "Germany", "Bayerischzell-Osterhofen", "75 m", ""], ["Vinpearl Cable Car", "2007", "Vietnam", "Nha Trang", "75 m", "7 pylons standing in the sea. Total height from sea bed is 115 m"], ["Sandia Peak Tramway", "1965", "USA", "Albuquerque", "70.7 m", "Pylon 1, inclined at an angle of 18 degrees"], ["Eibsee Aerial Tramway", "1962", "Germany", "Garmisch-Partenkirchen", "65 m", "Pylon I"], ["Mount Titlis aerial cableway", "1967", "Switzerland", "Engelberg", "92 m", "Two pylons for a cable car that takes visitors to the peak of Mount Titlis"], ["Tianmen Mountain Cableway", "2005", "China", "Zhangjiajie", "98 m", "One of the world's longest cableways"], ["Sentosa Cable Car", "1974", "Singapore", "Singapore", "78 m", "Links Sentosa Island with the mainland"], ["Pico do Arieiro cable car", "2000", "Portugal", "Madeira", "70 m", "Links Funchal to the peak of Pico do Arieiro"], ["Langkawi cable car", "2003", "Malaysia", "Langkawi", "82 m", "One of the steepest cable cars in the world"], ["Peak 2 Peak Gondola", "2008", "Canada", "Whistler", "436 m", "World-record breaking gondola linking Whistler and Blackcomb Mountains"], ["Dajti Ekspres Cable Car", "2005", "Albania", "Tirana", "800 m", "Links the city of Tirana to the Dajti Mountain National Park"], ["The Palm Monorail", "2009", "United Arab Emirates", "Dubai", "20.6 m", "Connects the Palm Jumeirah to the mainland"], ["Sugarloaf Mountain Cable Car", "1912", "Brazil", "Rio de Janeiro", "396 m", "An iconic cable car that takes visitors to the top of Sugarloaf Mountain"], ["Peak Tram", "1888", "Hong Kong", "Hong Kong Island", "373 m", "Oldest funicular in Asia, taking visitors to the top of Victoria Peak"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Name", "Year built", "Country", "Town", "Height", "Remarks"], "add_description": "The name of this table is Aerial Tramway Table, and the headers of this table are Name,Year built,Country,Town,Height,Remarks.", "sql": {"query": "SELECT MAX(`Year built`) FROM `Aerial Tramway Table` WHERE `Country`='Germany' AND `Remarks` LIKE '%pylon%' ;", "length": 109}, "source": "wikitq"} +{"description": "What is the highest amount of points for rank 95?", "label": ["\u0110eravica"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "highest_points", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Claimant", "type": "TEXT"}, {"name": "Highest point", "type": "TEXT"}, {"name": "Height", "type": "TEXT"}], "rows": [["44", "Abkhazia", "Georgia", "Dombai-Ulgen", "m (ft)"], ["46", "Taiwan", "People's Republic of China", "Yushan", "m (ft)"], ["47", "South Ossetia", "Georgia", "Mount Khalatsa", "m (ft)"], ["95", "Kosovo", "Serbia", "\u0110eravica", "m (ft)"], ["166", "Palestinian territories", "Israel", "Mount Nabi Yunis", "m (ft)"], ["200", "Western Sahara", "Morocco", "unnamed location", "m (ft)"], ["1", "United States", "United States", "Mount Whitney", "4,421 m (14,505 ft)"], ["2", "Canada", "Canada", "Mount Logan", "5,959 m (19,551 ft)"], ["3", "Mexico", "Mexico", "Pico de Orizaba", "5,636 m (18,491 ft)"], ["4", "Argentina", "Argentina", "Aconcagua", "6,962 m (22,841 ft)"], ["5", "Peru", "Peru", "Huascar\u00e1n", "6,768 m (22,205 ft)"], ["6", "Chile", "Chile", "Ojos del Salado", "6,893 m (22,615 ft)"], ["7", "Bolivia", "Bolivia", "Nevado Sajama", "6,542 m (21,463 ft)"], ["8", "Ecuador", "Ecuador", "Chimborazo", "6,268 m (20,564 ft)"], ["9", "Venezuela", "Venezuela", "Pico Bol\u00edvar", "4,981 m (16,342 ft)"], ["10", "Colombia", "Colombia", "Pico Crist\u00f3bal Col\u00f3n", "5,775 m (18,947 ft)"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Rank", "Country", "Claimant", "Highest point", "Height"], "add_description": "The name of this table is highest_points, and the headers of this table are Rank,Country,Claimant,Highest point,Height.", "sql": {"query": "SELECT MAX(`Highest point`) FROM `highest_points` WHERE `Rank` = '95';", "length": 70}, "source": "wikisql"} +{"description": "When is the latest year that Real Colorado Foxes did not qualify for the playoffs but make it to Open Cup 2nd Round?", "label": ["2011.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Soccer Team Performance", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Division", "type": "TEXT"}, {"name": "League", "type": "TEXT"}, {"name": "Regular Season", "type": "TEXT"}, {"name": "Playoffs", "type": "TEXT"}, {"name": "Open Cup", "type": "TEXT"}], "rows": [["2009", "4", "USL PDL", "3rd, Heartland", "Division Final", "Did not qualify"], ["2010", "4", "USL PDL", "3rd, Heartland", "Did not qualify", "Did not qualify"], ["2011", "4", "USL PDL", "3rd, Heartland", "Did not qualify", "2nd Round"], ["2012", "4", "USL PDL", "2nd, Heartland", "Conference Semifinal", "1st Round"], ["2013", "4", "USL PDL", "2nd, Heartland", "Conference Semifinal", "1st Round"], ["2014", "4", "USL PDL", "1st, Heartland", "Division Final", "Did not qualify"], ["2015", "4", "USL PDL", "2nd, Heartland", "Conference Semifinal", "1st Round"], ["2016", "4", "USL PDL", "1st, Heartland", "Conference Semifinal", "2nd Round"], ["2017", "4", "USL PDL", "3rd, Heartland", "Did not qualify", "2nd Round"], ["2018", "4", "USL PDL", "2nd, Heartland", "Division Final", "Did not qualify"], ["2019", "4", "USL PDL", "1st, Heartland", "Conference Quarterfinal", "Did not qualify"], ["2020", "4", "USL PDL", "Canceled", "Canceled", "Canceled"], ["2021", "4", "USL League Two", "2nd, Heartland", "Did not qualify", "Did not qualify"], ["2022", "4", "USL League Two", "1st, Heartland", "Conference Semifinal", "Did not qualify"], ["2023", "4", "USL League Two", "3rd, Heartland", "Conference Quarterfinal", "Did not qualify"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Year", "Division", "League", "Regular Season", "Playoffs", "Open Cup"], "add_description": "The name of this table is Soccer Team Performance, and the headers of this table are Year,Division,League,Regular Season,Playoffs,Open Cup.", "sql": {"query": "SELECT MAX(Year) FROM `Soccer Team Performance` WHERE Playoffs = 'Did not qualify' AND `Open Cup` = '2nd Round' AND Team = 'Real Colorado Foxes';", "length": 145}, "source": "wikisql"} +{"description": "What is the latest season where he had 1 podium? ", "label": ["2009.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Race Statistics", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "Series", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Races", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Poles", "type": "TEXT"}, {"name": "F/Laps", "type": "TEXT"}, {"name": "Podiums", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}], "rows": [["2008", "Formula BMW Europe", "Fortec Motorsport", "16", "0", "2", "1", "0", "37", "20th"], ["2009", "Formula BMW Europe", "FMS International", "10", "0", "0", "0", "0", "38", "19th"], ["2009", "Formula BMW Europe", "Motaworld Racing", "6", "0", "0", "0", "0", "38", "19th"], ["2009", "Formula Palmer Audi", "Motorsport Vision", "6", "0", "0", "0", "1", "56", "20th"], ["2010", "Formula Palmer Audi", "MotorSport Vision", "20", "4", "1", "2", "11", "320", "3rd"], ["2010", "European F3 Open", "Team West-Tec", "2", "0", "0", "0", "0", "0", "22nd"], ["2010", "European F3 Open - Copa de Espa\u00f1a", "Team West-Tec", "2", "0", "0", "0", "0", "8", "10th"], ["2010", "FIA Formula Two Championship", "MotorSport Vision", "2", "0", "0", "0", "0", "1", "22nd"], ["2021", "Formula 1", "Mercedes-AMG Petronas F1 Team", "23", "15", "8", "12", "23", "573", "1st"], ["2021", "Formula 1", "Red Bull Racing Honda", "23", "8", "4", "4", "16", "468", "2nd"], ["2021", "Formula 1", "McLaren F1 Team", "23", "0", "1", "0", "1", "202", "3rd"], ["2021", "Formula 1", "Scuderia Ferrari", "23", "0", "0", "1", "1", "169", "4th"], ["2021", "Formula 1", "Alpine F1 Team", "23", "0", "0", "0", "0", "137", "5th"], ["2021", "Formula 1", "Aston Martin Cognizant F1 Team", "23", "0", "0", "0", "0", "77", "6th"], ["2021", "Formula 1", "AlphaTauri Honda", "23", "0", "0", "1", "2", "66", "7th"], ["2021", "Formula 1", "Alfa Romeo Racing Orlen", "23", "0", "0", "0", "0", "8", "8th"], ["2021", "Formula 1", "Williams Racing", "23", "0", "0", "0", "0", "0", "9th"], ["2021", "Formula 1", "Haas F1 Team", "23", "0", "0", "0", "0", "0", "10th"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Season", "Series", "Team", "Races", "Wins", "Poles", "F/Laps", "Podiums", "Points", "Position"], "add_description": "The name of this table is Race Statistics, and the headers of this table are Season,Series,Team,Races,Wins,Poles,F/Laps,Podiums,Points,Position.", "sql": {"query": "SELECT MAX(Season) FROM Race Statistics WHERE Podiums = '1';", "length": 60}, "source": "wikisql"} +{"description": "what is the last train to arrive daily?", "label": ["Chhatisgarh Express"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Train Schedule", "table_info": {"columns": [{"name": "Sr. No.", "type": "INT"}, {"name": "Train No.", "type": "INT"}, {"name": "Name of the Train", "type": "TEXT"}, {"name": "Arrival", "type": "TIME"}, {"name": "Departure", "type": "TIME"}, {"name": "Day", "type": "TEXT"}], "rows": [["1.", "18238", "Chhatisgarh Express", "01:23", "01:25", "Daily"], ["2.", "12160", "Jabalpur-Amravati SF", "04:51", "04:53", "Daily"], ["3.", "51294", "Amla-Nagpur Pass", "06:39", "06:40", "Daily"], ["4.", "12913", "Indore-Nag Tri. Exp", "06:49", "06:51", "M"], ["5.", "19301", "Indore-Yashwantpur Exp", "07:20", "07:25", "M"], ["6.", "12406", "Nizamuddin-Bhusaval Gondwana Exp", "07:25", "07:27", "M,St"], ["7.", "12410", "Nizamuddin-Raigarh Gondwana Exp", "07:25", "07:27", "S,M,Tu,W,T,F"], ["8.", "51151", "New Amravati-Narkhed Pass", "08:30", "N/a", "Daily"], ["9.", "22112", "Nagpur-Bhusaval SF", "08:37", "08:39", "M,T,St"], ["10.", "11045", "Dikshsabhoomi Exp", "08:53", "08:55", "St"], ["11.", "16359", "Ernakulam-Patna Exp", "08:53", "08:55", "M"], ["12.", "51829", "Nagpur-Agra Pass", "09:41", "09:42", "Daily"], ["13.", "12861", "Visakapatnam-Nizamuddin", "10:43", "10:44", "Daily"], ["14.", "12721", "Dakshin Express", "10:43", "10:44", "Daily"], ["15.", "12616", "Grand Trunk(GT) Exp", "10:49", "10:51", "Daily"], ["16.", "19714", "Sec-Jaipur Exp", "11:58", "12:00", "Tu"], ["17.", "11203", "Nagpur-Jaipur Weekly Express", "13:03", "13:05", "T"], ["18.", "12615", "Grand Trunk(GT) Exp", "13:30", "13:32", "Daily"], ["19.", "12405", "Bhusaval-H.Nizamuddin Gondwana Exp", "14:08", "14:10", "S,Tu,"], ["20.", "12409", "Raigarh-H.Nizamuddin- Gondwana Exp", "14:08", "14:10", "M,W,T,F,St"], ["21.", "16360", "Patna-Ernakulam Exp", "14:08", "14:10", "W"], ["22.", "11046", "Dikshsabhoomi Exp", "14:09", "14:10", "Tu"], ["23.", "22111", "Bhusaval_Nagpur SF", "14:36", "14:38", "S,W,F"], ["24.", "19713", "Jaipur-Sec Exp", "15:48", "15:50", "Tu"], ["25.", "12722", "Dakshin Express", "16:00", "16:02", "Daily"], ["26.", "51183", "Bhusaval-Narkhed Pass", "16:00", "N/a", "Daily"], ["27.", "11204", "Jaipur-Nagpur Exp", "17:24", "17:25", "St"], ["28.", "19302", "Yashwantpur-Indore Exp", "17:35", "17:40", "W"], ["29.", "51830", "Agra-Nagpur Pass", "18:04", "18:05", "Daily"], ["30.", "51293", "Nagpur-Amla Pass", "19:55", "20:00", "Daily"], ["31.", "12914", "Nagpur-Indore Tri. Exp", "20:08", "20:10", "M"], ["32.", "12159", "Amravati-Jabalpur SF", "22:30", "22:32", "Daily"], ["33.", "18237", "Chhatisgarh Express", "23:09", "23:10", "Daily"], ["34.", "51152", "Narkhed-New Amravati Pass", "N/a", "18:00", "Daily"], ["35.", "51184", "Bhusaval-Narkhed Pass", "N/a", "09:00", "Daily"], ["36.", "12261", "Howrah-Mumbai Duronto Exp", "00:45", "00:50", "Su, T, Th"], ["37.", "11071", "Kamayani Exp", "01:55", "01:57", "Daily"], ["38.", "11081", "Lokmanya Tilak- Gorakhpur Exp", "03:14", "03:16", "M, W, F"], ["39.", "12010", "Shatabdi Exp", "04:45", "04:46", "Daily"], ["40.", "12321", "Howrah-Mumbai Mail Exp", "05:25", "05:28", "Daily"], ["41.", "12617", "Mangala Lakshadweep Exp", "06:25", "06:27", "Daily"], ["42.", "12071", "Jan Shatabdi Exp", "08:35", "08:37", "Daily"], ["43.", "12139", "Sewagram Exp", "10:15", "10:17", "Daily"], ["44.", "11039", "Maharashtra Exp", "11:10", "11:12", "Daily"], ["45.", "12018", "Dehradun Shatabdi Exp", "11:40", "11:42", "Daily"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Sr. No.", "Train No.", "Name of the Train", "Arrival", "Departure", "Day"], "add_description": "The name of this table is Train Schedule, and the headers of this table are Sr. No.,Train No.,Name of the Train,Arrival,Departure,Day.", "sql": {"query": "SELECT `Name of the Train` FROM `Train Schedule` WHERE `Arrival` = (SELECT MAX(`Arrival`) FROM `Train Schedule` WHERE `Day` = 'Daily') AND `Day` = 'Daily';", "length": 155}, "source": "wikitq"} +{"description": "for the 2008-2009 season, which venue used by the iran pro league can hold the most number of spectators?", "label": ["Azadi"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "football_teams", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "City", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Capacity", "type": "TEXT"}, {"name": "Head Coach", "type": "TEXT"}, {"name": "Team Captain", "type": "TEXT"}, {"name": "Past Season", "type": "TEXT"}], "rows": [["Aboomoslem", "Mashhad", "Samen", "35,000", "Ali Hanteh", "Saeed Khani", "4th"], ["Bargh Shiraz", "Shiraz", "Hafezieh", "20,000", "Rasoul Korbekandi", "Sattar Zare", "7th"], ["Damash Gilan", "Rasht", "Sardar Jangal", "15,000", "Stanko Poklepovi\u0107", "Mohammad Reza Mahdavi", "15th"], ["Est. Ahvaz", "Ahvaz", "Takhti Ahvaz", "30,000", "Khodadad Azizi", "Afshin Komaei", "8th"], ["Esteghlal", "Tehran", "Azadi", "90,000", "Amir Ghalenoei", "Farhad Majidi", "13th"], ["Foolad", "Ahvaz", "Takhti Ahvaz", "15,000", "Majid Jalali", "Ali Badavi", "Qualifier"], ["Malavan", "Anzali", "Takhti Anzali", "8,000", "Mohammad Ahmadzadeh", "Masoud Gholamalizad", "16th"], ["Mes Kerman", "Kerman", "Shahid Bahonar", "15,000", "Parviz Mazloomi", "Farzad Hosseinkhani", "10th"], ["Moghavemat", "Shiraz", "Hafezieh", "20,000", "Gholam Hossein Peyrovani", "Mostafa Sabri", "14th"], ["Pas Hamedan", "Hamedan", "Ghods", "5,000", "Vinko Begovic", "Omid Khouraj", "5th"], ["Paykan", "Qazvin", "Shahid Rajaei", "5,000", "Ali Asghar Modir Roosta", "Mohammad Reza Tahmasebi", "9th"], ["Payam", "Mashhad", "Samen", "35,000", "Kazem Ghiyasiyan", "Mehdi Hasheminasab", "Qualifier"], ["Persepolis", "Tehran", "Azadi", "90,000", "Nelo Vingada", "Karim Bagheri", "Champion"], ["Rah Ahan", "Rey, Iran", "Rah Ahan", "15,000", "Mehdi Tartar", "Ahmad Taghavi", "12th"], ["Saba Qom", "Qom", "Yadegar Emam", "15,000", "Firouz Karimi", "Yahya Golmohammadi", "3rd"], ["Saipa", "Karaj", "Enghelab Karaj", "15,000", "Mohammad Mayeli Kohan", "Ebrahim Sadeghi", "11th"], ["Sepahan", "Esfahan", "Foolad Shahr", "25,000", "Farhad Kazemi", "Moharram Navidkia", "2nd"], ["Zob Ahan", "Esfahan", "Foolad Shahr", "25,000", "Mansour Ebrahimzadeh", "Mohammad Salsali", "6th"], ["Gostaresh Foulad", "Tabriz", "Bakhtaran", "10,000", "Morteza Ebrahimi", "Ali Salimi", "18th"], ["Naft Masjed Soleyman", "Masjed Soleyman", "Takhti Masjed Soleyman", "12,000", "Abbas Chamanian", "Ali Karami", "17th"], ["Padideh", "Mashhad", "Samen", "35,000", "Mohammad Taghi Gholami", "Mehdi Taremi", "5th"], ["Pars Jonoubi", "Bandar Abbas", "Valiasr", "25,000", "Mehrdad Mohammadi", "Hojjat Haghverdi", "9th"], ["Sanat Naft Abadan", "Abadan", "Takhti Abadan", "20,000", "Samad Marfavi", "Saman Nariman Jahan", "11th"], ["Shahin Bushehr", "Bushehr", "Pahlavani", "15,000", "Mohammad Reza Adelkhani", "Amir Shabani", "13th"], ["Shahr Khodro", "Tehran", "Azadi", "90,000", "Mehdi Pashazadeh", "Milad Gharibi", "8th"], ["Tractor Sazi", "Tabriz", "Sahand", "30,000", "Mohammad Taghi Kermani", "Ehsan Hajsafi", "4th"], ["Zobahan", "Foolad Shahr, Isfahan", "Zobahan", "15,000", "Hamid Derakhshan", "Milad Zeneyedpour", "15th"], ["Mes Rafsanjan", "Rafsanjan", "Golshan", "10,000", "Ehsan Gholami", "Arman Ghasemi", "7th"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Team", "City", "Venue", "Capacity", "Head Coach", "Team Captain", "Past Season"], "add_description": "The name of this table is football_teams, and the headers of this table are Team,City,Venue,Capacity,Head Coach,Team Captain,Past Season.", "sql": {"query": "SELECT Venue, MAX(Capacity) FROM football_teams WHERE Past Season = '2008-2009';", "length": 80}, "source": "wikitq"} +{"description": "what is the most volume any engine will hold?", "label": ["5.4L"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Car_model_info", "table_info": {"columns": [{"name": "Model", "type": "TEXT"}, {"name": "Volume", "type": "TEXT"}, {"name": "Engine", "type": "TEXT"}, {"name": "Fuel", "type": "TEXT"}, {"name": "Power/Torque", "type": "TEXT"}, {"name": "Years produced", "type": "TEXT"}, {"name": "Produced", "type": "INT"}], "rows": [["728i", "2.8L", "M52B28 I6", "Petrol", "142\u00a0kW (193\u00a0PS; 190\u00a0hp) / 280\u00a0N\u00b7m (207\u00a0lb\u00b7ft)", "1996\u20132001", "38947"], ["728iL", "2.8L", "M52B28 I6", "Petrol", "142\u00a0kW (193\u00a0PS; 190\u00a0hp) / 280\u00a0N\u00b7m (207\u00a0lb\u00b7ft)", "1996\u20132001", "6816"], ["730i", "3.0L", "M60B30 V8", "Petrol", "160\u00a0kW (218\u00a0PS; 215\u00a0hp) / 290\u00a0N\u00b7m (214\u00a0lb\u00b7ft)", "1994\u20131996", "20876"], ["730iL", "3.0L", "M60B30 V8", "Petrol", "160\u00a0kW (218\u00a0PS; 215\u00a0hp) / 290\u00a0N\u00b7m (214\u00a0lb\u00b7ft)", "1994\u20131996", "2137"], ["735i", "3.5L", "M62B35 V8", "Petrol", "173\u00a0kW (235\u00a0PS; 232\u00a0hp) / 320\u00a0N\u00b7m (236\u00a0lb\u00b7ft)", "1994\u20131997", "21481"], ["735i", "3.5L", "M62TUB35 V8", "Petrol", "174\u00a0kW (237\u00a0PS; 233\u00a0hp) / 345\u00a0N\u00b7m (254\u00a0lb\u00b7ft)", "1998\u20132001", ""], ["735iL", "3.5L", "M62B35 V8", "Petrol", "173\u00a0kW (235\u00a0PS; 232\u00a0hp) / 320\u00a0N\u00b7m (236\u00a0lb\u00b7ft)", "1994\u20131997", "6963"], ["735iL", "3.5L", "M62TUB35 V8", "Petrol", "174\u00a0kW (237\u00a0PS; 233\u00a0hp) / 345\u00a0N\u00b7m (254\u00a0lb\u00b7ft)", "1998\u20132001", ""], ["740i", "4.0L", "M60B40 V8", "Petrol", "210\u00a0kW (286\u00a0PS; 282\u00a0hp) / 400\u00a0N\u00b7m (295\u00a0lb\u00b7ft)", "1994\u20131996", ""], ["740iL", "4.0L", "M60B40 V8", "Petrol", "210\u00a0kW (286\u00a0PS; 282\u00a0hp) / 400\u00a0N\u00b7m (295\u00a0lb\u00b7ft)", "1994\u20131996", ""], ["740i", "4.4L", "M62B44 V8", "Petrol", "210\u00a0kW (286\u00a0PS; 282\u00a0hp) / 420\u00a0N\u00b7m (310\u00a0lb\u00b7ft)", "1996\u20131998", "88853"], ["740i", "4.4L", "M62TUB44 V8", "Petrol", "210\u00a0kW (286\u00a0PS; 282\u00a0hp) / 440\u00a0N\u00b7m (325\u00a0lb\u00b7ft)", "1998\u20132001", ""], ["740iL", "4.4L", "M62B44 V8", "Petrol", "210\u00a0kW (286\u00a0PS; 282\u00a0hp) / 420\u00a0N\u00b7m (310\u00a0lb\u00b7ft)", "1996\u20131998", "91431"], ["740iL", "4.4L", "M62TUB44 V8", "Petrol", "210\u00a0kW (286\u00a0PS; 282\u00a0hp) / 440\u00a0N\u00b7m (325\u00a0lb\u00b7ft)", "1998\u20132001", ""], ["750i-iL", "5.4L", "M73B54 V12", "Petrol", "240\u00a0kW (326\u00a0PS; 322\u00a0hp) / 490\u00a0N\u00b7m (361\u00a0lb\u00b7ft)", "1995\u20131997", "15759"], ["750i-iL", "5.4L", "M73TUB54 V12", "Petrol", "240\u00a0kW (326\u00a0PS; 322\u00a0hp) / 490\u00a0N\u00b7m (361\u00a0lb\u00b7ft)", "1998\u20132001", "1032"], ["725tds", "2.5L", "M51D25 turbocharged I6", "Diesel", "105\u00a0kW (143\u00a0PS; 141\u00a0hp) / 280\u00a0N\u00b7m (207\u00a0lb\u00b7ft)", "1995\u20132001", "9053"], ["730d", "2.9L", "M57D30 turbocharged I6", "Diesel", "142\u00a0kW (193\u00a0PS; 190\u00a0hp) / 410\u00a0N\u00b7m (302\u00a0lb\u00b7ft)", "1998\u20132001", "12336"], ["740d", "3.9L", "M67D40 turbocharged V8", "Diesel", "180\u00a0kW (245\u00a0PS; 241\u00a0hp) / 560\u00a0N\u00b7m (413\u00a0lb\u00b7ft)", "1998\u20132001", "3450"], ["750i", "5.0L", "N62B50 V8", "Petrol", "270\u00a0kW (367\u00a0PS; 362\u00a0hp) / 490\u00a0N\u00b7m (361\u00a0lb\u00b7ft)", "2005\u20132009", "12500"], ["745Li", "4.4L", "N62B44 V8", "Petrol", "245 kW (333 PS; 329 hp) / 450 N\u00b7m (332 lb\u00b7ft)", "2002\u20132005", "6800"], ["760Li", "6.0L", "N73B60 V12", "Petrol", "327\u00a0kW (445\u00a0PS; 439\u00a0hp) / 600\u00a0N\u00b7m (443\u00a0lb\u00b7ft)", "2002\u20132008", "9875"], ["735i", "3.0L", "N55B30 turbocharged I6", "Petrol", "225 kW (306 PS; 302 hp) / 400 N\u00b7m (295 lb\u00b7ft)", "2010\u20132015", "23400"], ["650i", "4.4L", "N63B44 twin-turbocharged V8", "Petrol", "300 kW (408 PS; 402 hp) / 600 N\u00b7m (443 lb\u00b7ft)", "2009\u20132017", "31500"], ["550i GT", "4.4L", "N63B44 twin-turbocharged V8", "Petrol", "300 kW (408 PS; 402 hp) / 600 N\u00b7m (443 lb\u00b7ft)", "2009\u20132017", "4968"], ["535i", "3.0L", "N55B30 turbocharged I6", "Petrol", "225 kW (306 PS; 302 hp) / 400 N\u00b7m (295 lb\u00b7ft)", "2010\u20132016", "46800"], ["530d", "3.0L", "M57D30 turbocharged I6", "Diesel", "173 kW (235 PS; 232 hp) / 500 N\u00b7m (369 lb\u00b7ft)", "2003\u20132010", "21562"], ["X5 xDrive30d", "3.0L", "M57D30 turbocharged I6", "Diesel", "180 kW (245 PS; 241 hp) / 540 N\u00b7m (398 lb\u00b7ft)", "2006\u20132010", "17093"], ["X6 xDrive50i", "4.4L", "N63B44 twin-turbocharged V8", "Petrol", "300 kW (408 PS; 402 hp) / 600 N\u00b7m (443 lb\u00b7ft)", "2007\u20132014", "9367"]]}}, "evaluation": "", "example": "", "type": ["aggregation-MAX"], "heads": ["Model", "Volume", "Engine", "Fuel", "Power/Torque", "Years produced", "Produced"], "add_description": "The name of this table is Car_model_info, and the headers of this table are Model,Volume,Engine,Fuel,Power/Torque,Years produced,Produced.", "sql": {"query": "SELECT MAX(Volume) FROM Car_model_info;", "length": 39}, "source": "wikitq"} +{"description": "What is the average number of laps with an accident time/retired, aprilia manufacturer and a grid of 27?", "label": ["12.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Motorcycle Race Results", "table_info": {"columns": [{"name": "Rider", "type": "TEXT"}, {"name": "Manufacturer", "type": "TEXT"}, {"name": "Laps", "type": "TEXT"}, {"name": "Time/Retired", "type": "TEXT"}, {"name": "Grid", "type": "TEXT"}], "rows": [["Arnaud Vincent", "Aprilia", "18", "+46:22.971", "2"], ["Mirko Giansanti", "Honda", "18", "+1.164", "15"], ["Manuel Poggiali", "Gilera", "18", "+2.558", "5"], ["Noboru Ueda", "Honda", "18", "+3.479", "18"], ["Simone Sanna", "Aprilia", "18", "+10.188", "19"], ["Shuhei Aoyama", "Honda", "18", "+23.056", "12"], ["\u00c1ngel Rodr\u00edguez", "Aprilia", "18", "+23.653", "13"], ["Dani Pedrosa", "Honda", "18", "+33.488", "1"], ["Lucio Cecchinello", "Aprilia", "18", "+34.285", "3"], ["Gino Borsoi", "Aprilia", "18", "+47.304", "11"], ["Stefano Perugini", "Italjet", "18", "+1:01.770", "24"], ["Klaus N\u00f6hles", "Honda", "18", "+1:06.064", "14"], ["Joan Oliv\u00e9", "Honda", "18", "+1:28.936", "25"], ["Alex Baldolini", "Aprilia", "18", "+1:36.264", "29"], ["Steve Jenkner", "Aprilia", "18", "+1:56.859", "7"], ["H\u00e9ctor Barber\u00e1", "Aprilia", "18", "+2:11.594", "33"], ["Mattia Angeloni", "Gilera", "18", "+2:14.164", "37"], ["Imre T\u00f3th", "Honda", "18", "+2:17.104", "36"], ["Sunathai Chaemsap", "Honda", "18", "+2:35.641", "23"], ["Stefano Bianco", "Aprilia", "15", "Accident", "20"], ["Toshihisa Kuzuhara", "Honda", "14", "Accident", "22"], ["Jakub Smr\u017e", "Honda", "13", "Accident", "26"], ["Youichi Ui", "Derbi", "12", "Accident", "10"], ["Chaz Davies", "Aprilia", "12", "Accident", "27"], ["Jaroslav Hule\u0161", "Aprilia", "7", "Accident", "4"], ["Andrea Ballerini", "Honda", "7", "Accident", "30"], ["Mika Kallio", "Honda", "7", "Accident", "31"], ["Masao Azuma", "Honda", "6", "Accident", "6"], ["Andrea Dovizioso", "Honda", "6", "Accident", "28"], ["G\u00e1bor Talm\u00e1csi", "Italjet", "5", "Retirement", "21"], ["Michel Fabrizio", "Gilera", "5", "Retirement", "35"], ["Jarno M\u00fcller", "Honda", "5", "Accident", "16"], ["Hideyuki Ogata", "Honda", "4", "Accident", "32"], ["Pablo Nieto", "Aprilia", "3", "Accident", "17"], ["Alex de Angelis", "Aprilia", "1", "Accident", "8"], ["Max Sabbatani", "Aprilia", "0", "Accident", "9"], ["Akira Komuro", "Honda", "0", "Accident", "34"], ["Valentino Rossi", "Yamaha", "20", "+1:30.225", "1"], ["Marc Marquez", "Honda", "20", "+2.579", "2"], ["Jorge Lorenzo", "Ducati", "20", "+6.772", "7"], ["Andrea Iannone", "Suzuki", "20", "+11.731", "4"], ["Cal Crutchlow", "Honda", "20", "+15.761", "6"], ["Danilo Petrucci", "Ducati", "20", "+16.534", "5"], ["Alex Rins", "Suzuki", "20", "+18.522", "8"], ["Jack Miller", "Ducati", "20", "+21.346", "9"], ["Takaaki Nakagami", "Honda", "20", "+23.618", "13"], ["Franco Morbidelli", "Yamaha", "20", "+35.348", "11"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["Rider", "Manufacturer", "Laps", "Time/Retired", "Grid"], "add_description": "The name of this table is Motorcycle Race Results, and the headers of this table are Rider,Manufacturer,Laps,Time/Retired,Grid.", "sql": {"query": "SELECT AVG(Laps)FROM `Motorcycle Race Results`WHERE `Time/Retired` = 'Accident'AND Manufacturer = 'Aprilia'AND Grid = '27';", "length": 123}, "source": "wikisql"} +{"description": "what is the average number of laps driven in the indianapolis 500 in tony gulotta's career?", "label": ["153"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Race Results", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Car", "type": "TEXT"}, {"name": "Start", "type": "TEXT"}, {"name": "Qual", "type": "DECIMAL(6,3)"}, {"name": "Rank", "type": "TEXT"}, {"name": "Finish", "type": "TEXT"}, {"name": "Laps", "type": "TEXT"}, {"name": "Led", "type": "TEXT"}, {"name": "Retired", "type": "TEXT"}], "rows": [["1926", "31", "12", "102.789", "13", "11", "142", "0", "Flagged"], ["1927", "27", "27", "107.765", "22", "3", "200", "0", "Running"], ["1928", "8", "4", "117.031", "4", "10", "200", "33", "Running"], ["1929", "23", "11", "112.146", "15", "17", "91", "0", "Supercharger"], ["1930", "9", "20", "100.033", "18", "20", "79", "0", "Valve"], ["1931", "37", "19", "111.725", "6", "18", "167", "0", "Crash T4"], ["1932", "25", "20", "108.896", "34", "13", "184", "0", "Flagged"], ["1933", "34", "12", "113.578", "15", "7", "200", "0", "Running"], ["1934", "8", "7", "113.733", "13", "17", "94", "0", "Rod"], ["1935", "44", "6", "115.459", "11", "21", "102", "0", "Magneto"], ["1937", "38", "7", "118.788", "16", "8", "200", "0", "Running"], ["1938", "17", "4", "122.499", "6", "17", "130", "0", "Rod"], ["1939", "62", "27", "121.749", "24", "11", "200", "0", "Running"], ["Totals", "Totals", "Totals", "Totals", "Totals", "Totals", "1989", "33", ""], ["1940", "18", "2", "117.532", "2", "1", "200", "68", "Running"], ["1941", "3", "1", "114.277", "1", "1", "200", "137", "Running"], ["1942", "8", "2", "127.135", "2", "1", "200", "57", "Running"], ["1943", "12", "5", "124.104", "7", "5", "170", "0", "Mechanical"], ["1944", "16", "13", "128.162", "13", "13", "150", "0", "Steering"], ["1945", "22", "10", "126.656", "12", "5", "200", "0", "Running"], ["1946", "30", "10", "118.521", "9", "9", "200", "0", "Running"], ["1947", "14", "21", "118.427", "15", "20", "149", "0", "Engine"], ["1948", "2", "1", "119.814", "1", "1", "200", "138", "Running"], ["1949", "12", "2", "122.391", "2", "2", "200", "138", "Running"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["Year", "Car", "Start", "Qual", "Rank", "Finish", "Laps", "Led", "Retired"], "add_description": "The name of this table is Race Results, and the headers of this table are Year,Car,Start,Qual,Rank,Finish,Laps,Led,Retired.", "sql": {"query": "SELECT AVG(Laps) AS average_lapsFROM Race ResultsWHERE Car = '8';", "length": 65}, "source": "wikitq"} +{"description": "What is the average first elected year that has a district of 11 and a committee of environmental matters?", "label": ["2002.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Maryland State Legislature Representatives", "table_info": {"columns": [{"name": "District", "type": "TEXT"}, {"name": "Counties Represented", "type": "TEXT"}, {"name": "Party", "type": "TEXT"}, {"name": "First Elected", "type": "TEXT"}, {"name": "Committee", "type": "TEXT"}], "rows": [["05.2 5B", "Carroll, Baltimore County", "Republican", "1974", "Health and Government Operations"], ["06.0 6", "Baltimore County", "Democratic", "1988", "Economic Matters"], ["06.0 6", "Baltimore County", "Democratic", "2006", "Economic Matters"], ["06.0 6", "Baltimore County", "Democratic", "2002", "Environmental Matters"], ["07.0 7", "Baltimore County, Harford", "Republican", "2002", "Economic Matters"], ["07.0 7", "Baltimore County, Harford", "Republican", "2002", "Ways and Means"], ["07.0 7", "Baltimore County, Harford", "Republican", "1978", "Health and Government Operations"], ["08.0 8", "Baltimore County", "Democratic", "2006", "Judiciary"], ["08.0 8", "Baltimore County", "Democratic", "2002", "Health and Government Operations"], ["08.0 8", "Baltimore County", "Republican", "2002", "Environmental Matters"], ["10", "Baltimore County", "Democratic", "1994", "Economic Matters"], ["10", "Baltimore County", "Democratic", "1997", "Appropriations"], ["10", "Baltimore County", "Democratic", "1994", "Health and Government Operations"], ["11", "Baltimore County", "Democratic", "2002", "Ways and Means"], ["11", "Baltimore County", "Democratic", "1994", "Health and Government Operations"], ["11", "Baltimore County", "Democratic", "2002", "Environmental Matters"], ["12.1 12A", "Baltimore County, Howard", "Democratic", "2002", "Appropriations"], ["12.1 12A", "Baltimore County, Howard", "Democratic", "1994", "Environmental Matters (Vice-Chair)"], ["42", "Baltimore County", "Democratic", "2006", "Environmental Matters"], ["42", "Baltimore County", "Republican", "2002", "Appropriations"], ["42", "Baltimore County", "Republican", "2002", "Judiciary"], ["09.0 9", "Baltimore County", "Democratic", "1998", "Transportation and the Environment"], ["03 3A", "Frederick County", "Republican", "2004", "Judiciary"], ["13.1 13A", "Baltimore County, Anne Arundel", "Democratic", "1990", "Economic Matters"], ["01 1B", "Garrett, Allegany", "Republican", "1992", "Appropriations"], ["16", "Caroline County", "Democratic", "2010", "Environmental Matters"], ["04.2 4B", "Frederick County", "Republican", "2008", "Judiciary"], ["38", "Baltimore County", "Republican", "1996", "Ways and Means"], ["14.2 14B", "Howard County", "Democratic", "2006", "Education and Economic Development"], ["26", "Montgomery County", "Democratic", "2018", "Environment and Transportation"], ["28", "Montgomery County", "Democratic", "2018", "Environmental Matters"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["District", "Counties Represented", "Party", "First Elected", "Committee"], "add_description": "The name of this table is Maryland State Legislature Representatives, and the headers of this table are District,Counties Represented,Party,First Elected,Committee.", "sql": {"query": "SELECT AVG(First Elected) FROM \"Maryland State Legislature Representatives\" WHERE District = '11' AND Committee = 'Environmental Matters';", "length": 138}, "source": "wikisql"} +{"description": "What is the average year that the Belanger Motors had an Offenhauser l4 engine?", "label": ["1956.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "racers_database", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Entrant", "type": "TEXT"}, {"name": "Chassis", "type": "TEXT"}, {"name": "Engine", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["1950", "Blue Crown Spark Plug / Moore", "Kurtis Kraft 2000", "Offenhauser L4", "1"], ["1951", "oil Mobil / Rotary Engineering", "Deidt Tuffanelli Derrico", "Offenhauser L4", "0"], ["1952", "Blue Crown Spark Plug / Earl Slick", "Deidt Tuffanelli Derrico", "Offenhauser L4", "0"], ["1953", "J.C. Agajanian", "Kuzma", "Offenhauser L4", "0"], ["1954", "Automobile Shippers / Casaroll", "Kurtis Kraft 4000", "Offenhauser L4", "0"], ["1955", "H.A. Chapman", "Kurtis Kraft 500C", "Offenhauser L4", "3"], ["1956", "Belanger Motors", "Kurtis Kraft 500C", "Offenhauser L4", "0"], ["1957", "Novi Racing", "Kurtis Kraft 500F", "Novi V8", "0"], ["1958", "Jones & Maley Cars", "Epperly Indy Roadster", "Offenhauser L4", "4"], ["1959", "Hoover Motor Express", "Epperly Indy Roadster", "Offenhauser L4", "3"], ["1960", "Lindsey Hopkins", "Watson Indy Roadster", "Offenhauser L4", "0"], ["1961", "Bowes Seal Fast", "Watson Indy Roadster", "Offenhauser L4", "2"], ["1962", "Bignotti-Brabham Racing", "Brabham BT3", "Offenhauser L4", "1"], ["1963", "John Zink Racing", "Brabham BT6", "Offenhauser L4", "0"], ["1964", "Bryant Heating & Cooling", "Brabham BT12", "Offenhauser L4", "4"], ["1965", "STP Corporation", "Lotus 38", "Ford V8", "1"], ["1966", "Gurney Racing", "Eagle T1G", "Weslake V12", "2"], ["1967", "Team Lotus", "Lotus 38", "Ford V8", "2"], ["1968", "McLaren Racing", "McLaren M6B", "Chevrolet V8", "0"], ["1969", "Al Unser Racing", "Brabham BT26A", "Ford V8", "1"], ["1970", "Team Lotus", "Lotus 72C", "Ford V8", "3"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["Year", "Entrant", "Chassis", "Engine", "Points"], "add_description": "The name of this table is racers_database, and the headers of this table are Year,Entrant,Chassis,Engine,Points.", "sql": {"query": "SELECT AVG(Year) FROM racers_database WHERE Entrant='Belanger Motors' AND Engine='Offenhauser L4';", "length": 98}, "source": "wikisql"} +{"description": "what is the average number of gold medals won by china, japan, and north korea?", "label": ["7"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Olympic Medals", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "INTEGER"}, {"name": "Silver", "type": "INTEGER"}, {"name": "Bronze", "type": "INTEGER"}, {"name": "Total", "type": "INTEGER"}], "rows": [["1", "China", "13", "9", "13", "35"], ["2", "Japan", "7", "10", "7", "24"], ["3", "Uzbekistan", "1", "2", "3", "6"], ["4", "Kazakhstan", "2", "2", "0", "4"], ["5", "North Korea", "1", "0", "1", "2"], ["6", "South Korea", "0", "0", "2", "2"], ["Total", "Total", "24", "23", "26", "73"], ["1", "United States", "10", "11", "10", "31"], ["2", "Russia", "5", "8", "4", "17"], ["3", "Germany", "3", "4", "5", "12"], ["4", "Australia", "2", "3", "1", "6"], ["5", "France", "2", "1", "5", "8"], ["6", "Canada", "1", "5", "3", "9"], ["7", "Italy", "1", "2", "4", "7"], ["8", "Netherlands", "1", "2", "3", "6"], ["9", "Norway", "1", "2", "2", "5"], ["10", "Sweden", "0", "3", "1", "4"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medals, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "sql": {"query": "SELECT AVG(Gold) AS Avg_Gold FROM Olympic_Medals WHERE Nation IN ('China', 'Japan', 'North Korea');", "length": 99}, "source": "wikitq"} +{"description": "Name the avg finish for position of 70th", "label": ["36.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Racing Stats", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Starts", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Top 5", "type": "TEXT"}, {"name": "Top 10", "type": "TEXT"}, {"name": "Poles", "type": "TEXT"}, {"name": "Avg. Start", "type": "TEXT"}, {"name": "Avg. Finish", "type": "TEXT"}, {"name": "Winnings", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Team(s)", "type": "TEXT"}], "rows": [["1989", "3", "0", "0", "0", "1", "4.7", "29.3", "$7,210", "69th", "#87 Frank Cicci Racing"], ["1995", "4", "0", "0", "0", "0", "25.5", "36.0", "$17,380", "70th", "#33 Daytona Speed Inc."], ["1996", "2", "1", "1", "1", "0", "11.5", "16.0", "$40,065", "57th", "#29 Diamond Ridge Motorsports #7 BACE Motorsports"], ["1997", "15", "0", "0", "2", "0", "27.7", "23.0", "$120,401", "34th", "#45 Laughlin Racing #49 Shaver Motorsports"], ["1999", "1", "0", "0", "0", "0", "22.0", "34.0", "$10,160", "123rd", "#90 GTS Motorsports"], ["2004", "1", "0", "0", "0", "0", "43.0", "40.0", "$12,745", "144th", "#0 JD Motorsports"], ["2005", "1", "0", "0", "0", "0", "39.0", "41.0", "$8,500", "155th", "#70 Ultra Motorsports"], ["2010", "10", "2", "5", "7", "1", "8.5", "11.0", "$347,305", "23rd", "#02 Chip Ganassi Racing"], ["2015", "7", "0", "1", "2", "0", "18.3", "25.2", "$116,967", "43rd", "#75 Beard Motorsports"], ["2000", "12", "0", "1", "2", "0", "23.9", "22.0", "$75,630", "44th", "#29 SCCA Enterprises #38 Great Clips Racing"], ["2018", "21", "2", "5", "13", "2", "8.1", "9.7", "$2,455,477", "8th", "#42 Chip Ganassi Racing"], ["2008", "5", "0", "0", "1", "0", "22.4", "29.0", "$59,490", "61st", "#50 Clint Bowyer Racing"], ["1998", "24", "1", "2", "3", "0", "22.6", "21.6", "$188,410", "28th", "#16 Roush Racing"], ["2013", "36", "1", "4", "8", "0", "18.2", "21.6", "$2,328,541", "13th", "#99 RAB Racing"], ["2007", "33", "1", "3", "7", "0", "15.8", "19.9", "$1,299,848", "16th", "#01 Dale Earnhardt, Inc."], ["2017", "27", "1", "2", "7", "1", "7.8", "11.7", "$3,186,418", "9th", "#4 Stewart-Haas Racing"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["Year", "Starts", "Wins", "Top 5", "Top 10", "Poles", "Avg. Start", "Avg. Finish", "Winnings", "Position", "Team(s)"], "add_description": "The name of this table is Racing Stats, and the headers of this table are Year,Starts,Wins,Top 5,Top 10,Poles,Avg. Start,Avg. Finish,Winnings,Position,Team(s).", "sql": {"query": "SELECT AVG(`Avg. Finish`) FROM `Racing Stats` WHERE `Position` = '70th';", "length": 72}, "source": "wikisql"} +{"description": "What is the average total of player hale irwin, who had a t52 finish?", "label": ["293.0"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Golf Champions", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Year(s) won", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}, {"name": "To par", "type": "TEXT"}, {"name": "Finish", "type": "TEXT"}], "rows": [["Ernie Els", "South Africa", "1994", "276", "\u20134", "1"], ["Payne Stewart", "United States", "1991", "288", "+8", "T28"], ["Fuzzy Zoeller", "United States", "1984", "288", "+8", "T28"], ["Lee Janzen", "United States", "1993", "293", "+13", "T52"], ["Jack Nicklaus", "United States", "1962 , 1967 , 1972 , 1980", "293", "+13", "T52"], ["Hale Irwin", "United States", "1974 , 1979 , 1990", "293", "+13", "T52"], ["Tom Watson", "United States", "1982", "295", "+15", "T60"], ["Steve Jones", "United States", "1996", "295", "+15", "T60"], ["Tom Kite", "United States", "1992", "298", "+18", "T68"], ["Dustin Johnson", "United States", "2016", "277", "-1", "1"], ["Rory McIlroy", "Northern Ireland", "2014", "271", "-17", "1"], ["Bubba Watson", "United States", "2012", "278", "-10", "1"], ["Phil Mickelson", "United States", "2006 , 2010", "281", "-3", "1"], ["Tiger Woods", "United States", "1997 , 2001 , 2002 , 2005", "276", "-12", "1"], ["Jordan Spieth", "United States", "2015", "270", "-18", "1"], ["Zach Johnson", "United States", "2007", "289", "+1", "T42"], ["Graeme McDowell", "Northern Ireland", "2010", "284", "E", "1"], ["Angel Cabrera", "Argentina", "2009", "276", "-12", "1"], ["Jim Furyk", "United States", "2003", "272", "-8", "1"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["Player", "Country", "Year(s) won", "Total", "To par", "Finish"], "add_description": "The name of this table is Golf Champions, and the headers of this table are Player,Country,Year(s) won,Total,To par,Finish.", "sql": {"query": "SELECT AVG(Total) FROM `Golf Champions` WHERE Player = 'Hale Irwin' AND Finish = 'T52';", "length": 87}, "source": "wikisql"} +{"description": "was the daily mean for july higher or lower than the daily mean for the year?", "label": ["higher"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Climate Data", "table_info": {"columns": [{"name": "Month", "type": "TEXT"}, {"name": "Jan", "type": "DECIMAL"}, {"name": "Feb", "type": "DECIMAL"}, {"name": "Mar", "type": "DECIMAL"}, {"name": "Apr", "type": "DECIMAL"}, {"name": "May", "type": "DECIMAL"}, {"name": "Jun", "type": "DECIMAL"}, {"name": "Jul", "type": "DECIMAL"}, {"name": "Aug", "type": "DECIMAL"}, {"name": "Sep", "type": "DECIMAL"}, {"name": "Oct", "type": "DECIMAL"}, {"name": "Nov", "type": "DECIMAL"}, {"name": "Dec", "type": "DECIMAL"}, {"name": "Year", "type": "INT"}], "rows": [["Average high \u00b0C (\u00b0F)", "\u221210\\n(14)", "\u221211\\n(12)", "\u221212\\n(10)", "\u22125\\n(23)", "3\\n(37)", "8\\n(46)", "11\\n(52)", "10\\n(50)", "5\\n(41)", "\u22121\\n(30)", "\u22125\\n(23)", "\u22128\\n(18)", "\u22121.3\\n(29.7)"], ["Daily mean \u00b0C (\u00b0F)", "\u221213.5\\n(7.7)", "\u221214.5\\n(5.9)", "\u221215.5\\n(4.1)", "\u22128.5\\n(16.7)", "0\\n(32)", "5\\n(41)", "8\\n(46)", "7\\n(45)", "2\\n(36)", "\u22124\\n(25)", "\u22128\\n(18)", "\u221211\\n(12)", "\u22124.5\\n(23.9)"], ["Average low \u00b0C (\u00b0F)", "\u221217\\n(1)", "\u221218\\n(0)", "\u221219\\n(\u22122)", "\u221212\\n(10)", "\u22123\\n(27)", "2\\n(36)", "5\\n(41)", "4\\n(39)", "\u22121\\n(30)", "\u22127\\n(19)", "\u221211\\n(12)", "\u221214\\n(7)", "\u22127.6\\n(18.3)"], ["Precipitation mm (inches)", "12\\n(0.47)", "13\\n(0.51)", "12\\n(0.47)", "13\\n(0.51)", "16\\n(0.63)", "22\\n(0.87)", "29\\n(1.14)", "26\\n(1.02)", "35\\n(1.38)", "26\\n(1.02)", "23\\n(0.91)", "17\\n(0.67)", "244\\n(9.6)"], ["Avg. precipitation days (\u2265 1.0 mm)", "9", "9", "10", "9", "8", "7", "8", "9", "10", "10", "11", "10", "110"], ["Mean monthly sunshine hours", "0", "28", "93", "180", "279", "300", "279", "217", "120", "62", "30", "0", "1,588"], ["Average high \u00b0C (\u00b0F)", "-2\\n(28)", "0\\n(32)", "1\\n(34)", "8\\n(46)", "15\\n(59)", "22\\n(72)", "25\\n(77)", "23\\n(73)", "18\\n(64)", "11\\n(52)", "4\\n(39)", "-1\\n(30)", "11.7\\n(53.1)"], ["Daily mean \u00b0C (\u00b0F)", "-5\\n(23)", "-3\\n(27)", "-1\\n(30)", "6\\n(43)", "12\\n(54)", "18\\n(64)", "21\\n(70)", "18\\n(64)", "13\\n(55)", "7\\n(45)", "0\\n(32)", "-4\\n(25)", "6.8\\n(44.3)"], ["Average low \u00b0C (\u00b0F)", "-8\\n(18)", "-6\\n(21)", "-4\\n(25)", "3\\n(37)", "9\\n(48)", "15\\n(59)", "19\\n(66)", "16\\n(61)", "11\\n(52)", "4\\n(39)", "-3\\n(27)", "-7\\n(19)", "3.2\\n(37.8)"], ["Precipitation mm (inches)", "6\\n(0.24)", "8\\n(0.31)", "10\\n(0.39)", "28\\n(1.10)", "42\\n(1.65)", "58\\n(2.28)", "67\\n(2.64)", "46\\n(1.81)", "29\\n(1.14)", "20\\n(0.79)", "11\\n(0.43)", "7\\n(0.28)", "324\\n(12.8)"], ["Avg. precipitation days (\u2265 1.0 mm)", "5", "5", "7", "10", "12", "14", "13", "11", "8", "7", "5", "4", "96"], ["Mean monthly sunshine hours", "1", "44", "108", "221", "315", "371", "350", "258", "156", "66", "12", "0", "1890"], ["Average high \u00b0C (\u00b0F)", "13\\n(55)", "14\\n(57)", "15\\n(59)", "17\\n(63)", "21\\n(70)", "25\\n(77)", "30\\n(86)", "28\\n(82)", "25\\n(77)", "20\\n(68)", "15\\n(59)", "13\\n(55)", "20.9\\n(69.6)"], ["Daily mean \u00b0C (\u00b0F)", "9\\n(48)", "10\\n(50)", "11\\n(52)", "13\\n(55)", "17\\n(63)", "20\\n(68)", "25\\n(77)", "23\\n(73)", "20\\n(68)", "15\\n(59)", "11\\n(52)", "9\\n(48)", "15.2\\n(59.3)"], ["Average low \u00b0C (\u00b0F)", "5\\n(41)", "6\\n(43)", "8\\n(46)", "9\\n(48)", "13\\n(55)", "16\\n(61)", "21\\n(70)", "19\\n(66)", "16\\n(61)", "11\\n(52)", "6\\n(43)", "5\\n(41)", "11.2\\n(52.2)"], ["Precipitation mm (inches)", "50\\n(1.97)", "52\\n(2.05)", "68\\n(2.68)", "60\\n(2.36)", "80\\n(3.15)", "86\\n(3.39)", "105\\n(4.13)", "110\\n(4.33)", "88\\n(3.46)", "74\\n(2.91)", "60\\n(2.36)", "51\\n(2.01)", "904\\n(35.6)"]]}}, "evaluation": "", "example": "", "type": ["aggregation-AVG"], "heads": ["Month", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "Year"], "add_description": "The name of this table is Climate Data, and the headers of this table are Month,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec,Year.", "sql": {"query": "SELECT AVG(CAST(REPLACE(Jul,'\\n','') AS FLOAT)) AS Jul_Mean, AVG(CAST(REPLACE([Daily mean \u00b0C (\u00b0F)] ,'\\n','') AS FLOAT)) AS Year_MeanFROM [Climate Data]WHERE Year IS NOT NULL;", "length": 189}, "source": "wikitq"} +{"description": "Add ('2019', 'Aoharu Ride', 'Kou Mabuchi') to the 'Table of Year, Title, and Role' table through INSERT INTO command.", "label": ["INSERT INTO `Table of Year, Title, and Role` (Year, Title, Role) VALUES ('2019', 'Aoharu Ride', 'Kou Mabuchi')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Table of Year, Title, and Role", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}], "rows": [["2011", "Asuko March!", "Tetsuro Kishi"], ["2011", "Tonari no Akuma Chan", "-"], ["2011", "Boku to Star no 99 Nichi", "Natsume Junkichi"], ["2012", "Rich Man, Poor Woman", "Tomoki Kuga"], ["2013", "Yae no Sakura", "-"], ["2013", "Otto no Kanojo", "Yasushi Ishiguro"], ["2013", "Mischievous Kiss: Love in Tokyo", "Naoki Irie"], ["2014", "Bitter Blood", "Namekawa"], ["2014", "Mysterious Summer", "Narrator"], ["2014", "Mischievous Kiss 2: Love in Okinawa", "Naoki Irie"], ["2014", "Mischievous Kiss 2: Love in Tokyo", "Naoki Irie"], ["2015", "Ishi no Mayu", "Yokoi"], ["2015", "5-ji Kara 9-ji Made", "Mishima Satoshi"], ["2016", "Suishou no Kodou", "Yaginuma Masato"], ["2017", "Beppin-san", "Kentaro"], ["2017", "Erased", "Satoru Fujinuma"], ["2018", "Love Rerun", "Shohei Machida"], ["2019", "One Page Love", "Yuri Hoshino"], ["2020", "The K2", "Jang Se Joon"], ["2020", "Extracurricular", "Jisoo"], ["2021", "Sisyphus: The Myth", "Han Tae Sul"], ["2021", "The Devil Judge", "Kang Yo Han"], ["2022", "The King of Pigs", "-"], ["2022", "The Glory Years", "Yoo Suk"], ["2022", "City Conquest", "Baek Mi Reu"], ["2023", "Close My Eyes", "-"], ["2023", "Room No. 9", "Ki Young-Hoon"], ["2024", "Rugal", "Kang Gi-Beom"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role"], "add_description": "The name of this table is Table of Year, Title, and Role, and the headers of this table are Year,Title,Role.", "source": "fetaqa", "answer_md5": "[('03b2eddd4fe471e0f29fc9e907fd5a5d',)]"} +{"description": "25 schools exist in total, with 15 being male-only and 10 being female-only.", "label": ["INSERT INTO population_data (Particulars, Total, Male, Female) VALUES ('Total No. of Schools', '25', '15', '10')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "population_data", "table_info": {"columns": [{"name": "Particulars", "type": "TEXT"}, {"name": "Total", "type": "INT"}, {"name": "Male", "type": "INT"}, {"name": "Female", "type": "INT"}], "rows": [["Total No. of Houses", "187", "-", "-"], ["Population", "892", "448", "444"], ["Child (0-6)", "133", "69", "64"], ["Schedule Caste", "713", "355", "358"], ["Schedule Tribe", "0", "0", "0"], ["Literacy", "64.30%", "67.28%", "61.32%"], ["Total Workers", "336", "271", "65"], ["Main Worker", "254", "0", "0"], ["Marginal Worker", "82", "62", "20"], ["Total No. of Houses", "256", "-", "-"], ["Population", "1278", "642", "636"], ["Child (0-6)", "189", "98", "91"], ["Schedule Caste", "958", "478", "480"], ["Schedule Tribe", "3", "2", "1"], ["Literacy", "72.80%", "78.12%", "67.23%"], ["Total Workers", "540", "434", "106"], ["Main Worker", "409", "0", "0"], ["Marginal Worker", "131", "98", "33"], ["Total No. of Houses", "314", "-", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Particulars", "Total", "Male", "Female"], "add_description": "The name of this table is population_data, and the headers of this table are Particulars,Total,Male,Female.", "source": "fetaqa", "answer_md5": "[('bd817e36aace6a7ae81bcd83f24fa5cc',)]"} +{"description": "The information of Sibir Novosibirsk's team, city, arena, and address is being inserted into the Team_City_Arena_Address table with values of Novosibirsk for city, Ice Sports Palace Sibir for arena, and Novosibirsk , Krylova st. , 22 for address.", "label": ["INSERT INTO Team_City_Arena_Address (Team, City, Arena, Address) VALUES ('Sibir Novosibirsk', 'Novosibirsk', 'Ice Sports Palace Sibir', 'Novosibirsk , Krylova st. , 22')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Team_City_Arena_Address", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "City", "type": "TEXT"}, {"name": "Arena", "type": "TEXT"}, {"name": "Address", "type": "TEXT"}], "rows": [["Meshkov Brest", "Brest", "Universal Sports Complex Victoria", "Brest , Leningradskaya str. , 4"], ["SKA Minsk", "Minsk", "Sports Palace Uruchje", "Minsk , Independence av. , 196"], ["GK Gomel", "Gomel", "GRCOR for game 's types of sports", "Gomel , Irininskaya st. , 16-2"], ["Kronon Grodno", "Grodno", "Sports Complex Victoria", "Grodno , Gagarina str. , 18/1"], ["Masheka Mogilev", "Mogilev", "SC Olympian", "Mogilev , 30 years of Victory str. , 1a"], ["BSUFC-SKA", "Minsk", "RCOR", "Minsk , Filimonova str. , 55/2"], ["Meshkov Brest 2", "Brest", "Universal Sports Complex Victoria", "Brest , Leningradskaya str. , 4"], ["RCOR", "Minsk", "RCOR", "Minsk , Filimonova str. , 55/2"], ["Belarus-2002", "Minsk", "Sports Palace Uruchje", "Minsk , Independence av. , 196"], ["Kronon Grodno 2", "Grodno", "Sports Complex Victoria", "Grodno , Gagarina str. , 18/1"], ["Masheka Mogilev 2", "Mogilev", "SC Olympian", "Mogilev , 30 years of Victory str. , 1a"], ["Vityaz Minsk", "Minsk", "RCOR", "Minsk , Filimonova str. , 55/2"], ["Dinamo Brest", "Brest", "Brestsky Sports Complex", "Brest , Soviet st. , 51"], ["Neman Grodno", "Grodno", "Neman Sports Palace", "Grodno , Bogdanovicha st. , 34"], ["Vityaz Gomel", "Gomel", "Ice Palace Gomel", "Gomel , Sovietsky av. , 11"], ["Dinamo Mogilev", "Mogilev", "Ice Palace Mogilev", "Mogilev , Kirova st. , 16"], ["HK Minsk", "Minsk", "Chizhovka Arena", "Minsk , Pobediteley av. , 20"], ["Shakhter Soligorsk", "Soligorsk", "Soligorsk Ice Palace", "Soligorsk , Pervomayskaya st. , 74"], ["Yunost Minsk", "Minsk", "Minsk Sports Palace", "Minsk , Masherova av. , 25"], ["Metallurg Zhlobin", "Zhlobin", "Zhlobin Ice Palace", "Zhlobin , Gagarina st. , 4"], ["HK Brest", "Brest", "Brestsky Sports Complex", "Brest , Soviet st. , 51"], ["Metallurg Mogilev", "Mogilev", "Ice Palace Mogilev", "Mogilev , Kirova st. , 16"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Team", "City", "Arena", "Address"], "add_description": "The name of this table is Team_City_Arena_Address, and the headers of this table are Team,City,Arena,Address.", "source": "hybridqa", "answer_md5": "[('868ae9604002292c9d5290723e0518c7',)]"} +{"description": "The record of the 2019 Tony Awards nominees for Best Musical category includes Hamilton, who was nominated but did not win the award. The information was stored in the 'awards' table through the code: INSERT INTO awards (Year, Award, Category, Nominee, Result) VALUES ('2019', 'Tony Awards', 'Best Musical', 'Hamilton', 'Nominated')", "label": ["INSERT INTO awards (Year, Award, Category, Nominee, Result) VALUES ('2019', 'Tony Awards', 'Best Musical', 'Hamilton', 'Nominated')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "awards", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Award", "type": "TEXT"}, {"name": "Category", "type": "TEXT"}, {"name": "Nominee", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}], "rows": [["2017", "Evening Standard Theatre Awards", "Best Musical", "Best Musical", "Nominated"], ["2017", "Evening Standard Theatre Awards", "Best Director", "Dominic Cooke", "Nominated"], ["2017", "Evening Standard Theatre Awards", "Best Musical Performance", "Janie Dee", "Nominated"], ["2018", "Laurence Olivier Awards", "Best Musical Revival", "Best Musical Revival", "Won"], ["2018", "Laurence Olivier Awards", "Best Actress in a Musical", "Janie Dee", "Nominated"], ["2018", "Laurence Olivier Awards", "Best Actress in a Musical", "Imelda Staunton", "Nominated"], ["2018", "Laurence Olivier Awards", "Best Actress in a Supporting Role in a Musical", "Tracie Bennett", "Nominated"], ["2018", "Laurence Olivier Awards", "Best Director", "Dominic Cooke", "Nominated"], ["2018", "Laurence Olivier Awards", "Best Theatre Choreographer", "Bill Deamer", "Nominated"], ["2018", "Laurence Olivier Awards", "Best Set Design", "Vicki Mortimer", "Nominated"], ["2018", "Laurence Olivier Awards", "Best Costume Design", "Vicki Mortimer", "Won"], ["2018", "Laurence Olivier Awards", "Best Lighting Design", "Paule Constable", "Nominated"], ["2018", "Laurence Olivier Awards", "Outstanding Achievement in Music", "The orchestra, Nicholas Skilbeck, and Nigel Lilley", "Nominated"], ["2018", "WhatsOnStage Awards", "Best Musical Revival", "Best Musical Revival", "Nominated"], ["2018", "WhatsOnStage Awards", "Best Actress in a Musical", "Janie Dee", "Nominated"], ["2018", "WhatsOnStage Awards", "Best Supporting Actress in a Musical", "Tracie Bennett", "Nominated"], ["2018", "WhatsOnStage Awards", "Best Director", "Dominic Cooke", "Nominated"], ["2018", "WhatsOnStage Awards", "Best Set Design", "Vicki Mortimer", "Nominated"], ["2018", "WhatsOnStage Awards", "Best Costume Design", "Vicki Mortimer", "Nominated"], ["2018", "WhatsOnStage Awards", "Best Lighting Design", "Paule Constable", "Nominated"], ["2018", "Critics' Circle Theatre Awards", "Best Director", "Dominic Cooke", "Won"], ["2018", "Critics' Circle Theatre Awards", "Best Designer", "Vicki Mortimer", "Won"], ["2019", "Tony Awards", "Best Musical", "Beetlejuice", "Nominated"], ["2019", "Tony Awards", "Best Actress in a Musical", "Eva Noblezada", "Nominated"], ["2019", "Tony Awards", "Best Featured Actor in a Musical", "Andre De Shields", "Won"], ["2020", "Olivier Awards", "Best New Play", "The Inheritance", "Won"], ["2020", "Olivier Awards", "Best Actress", "Sharon D Clarke", "Won"], ["2020", "Olivier Awards", "Best Lighting Design", "Jon Clark", "Nominated"], ["2020", "WhatsOnStage Awards", "Best New Musical", "Six", "Won"], ["2020", "WhatsOnStage Awards", "Best Actor in a Play", "Andrew Scott", "Won"], ["2020", "WhatsOnStage Awards", "Best Actress in a Play", "Hayley Atwell", "Nominated"], ["2020", "Evening Standard Theatre Awards", "Best Musical Performance", "Miriam-Teak Lee", "Won"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Award", "Category", "Nominee", "Result"], "add_description": "The name of this table is awards, and the headers of this table are Year,Award,Category,Nominee,Result.", "source": "fetaqa", "answer_md5": "[('5b503b5d6b92c6ee708f415d09bc31ca',)]"} +{"description": "Insert into Politicians (Name, Attended, Notability) values ('Kamala Harris', '1989', 'Senator of California (2017-2021), Vice President of the United States (2021-present)').", "label": ["INSERT INTO Politicians (Name, Attended, Notability) VALUES ('Kamala Harris', '1989', 'Senator of California (2017-2021); Vice President of the United States (2021\u2013present)')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Politicians", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Attended", "type": "TEXT"}, {"name": "Notability", "type": "TEXT"}], "rows": [["Cecil D. Andrus", "1952", "Governor of Idaho ( 1971-1977 , 1987-1995 ) and U.S. Secretary of the Interior ( 1977-1981 )"], ["Earl I. Anzai", "? -1964", "Attorney General of Hawaii ( 1999-2002 )"], ["Brad Avakian", "? -1984", "Commissioner of the Oregon Bureau of Labor and Industries ( 2008- )"], ["Rod Chandler", "? -1968", "U.S. Representative of Washington ( 1983-1993 )"], ["Charles Crookham", "1941-1943", "Attorney General of Oregon ( 1992-1993 )"], ["John Ensign", "? -1981", "U.S. Representative of Nevada ( 1995-1999 ) ; Nevada U.S . Senator ( 2001 - 2011 )"], ["John Hubert Hall", "? -1923", "Governor of Oregon ( 1947-1949 ) ; member of the Oregon House of Representatives ( 1936-1947 )"], ["Julia Butler Hansen", "1924-1926", "U.S. Representative of Washington ( 1960-1974 )"], ["Darlene Hooley", "? -1961", "U.S. Representative of Oregon ( 1997 - 2009 )"], ["Hector Macpherson , Jr", "1936-1940", "Oregon State Senator ( 1971-1974 )"], ["Douglas McKay", "? -1917", "Governor of Oregon ( 1949-1952 ) and U.S. Secretary of the Interior ( 1953-1956 )"], ["Paul Peek", "? - ?", "California Secretary of State ( 1940-1943 ) ; Speaker of the California State Assembly ( 1939 )"], ["Pou Sohtireak", "? -1980s", "Cambodian Minister for Industry , Mines and Energy"], ["Norris Poulson", "1923", "U.S. Representative of California ( 1943-1945 , 1947-1955 ) ; mayor of Los Angeles , California ( 1953-1961 )"], ["Frederick Steiwer", "? -1902", "Oregon U.S . Senator ( 1927-1937 )"], ["Lowell Stockman", "? -1922", "U.S. Representative of Oregon ( 1943-1953 )"], ["Jolene Unsoeld", "1949-1951", "U.S. Representative of Washington ( 1989-1995 )"], ["Robert M. Veatch", "1868-1871", "Oregon Representative ( 1883-1886 ) , Senator ( 1887-1892 ) , and mayor of Cottage Grove , Oregon"], ["James K. Weatherford", "1868-1872", "Oregon Representative , Speaker of the House ( 1876 ) , Senator , and mayor of Albany , Oregon"], ["Mary Carlin Yates", "? -1968", "U.S . Ambassador to the Republic of Burundi and U.S . Ambassador to the Republic of Ghana"], ["Sarah Smith", "1990-1994", "U.S. Representative of Washington ( 2019 - present )"], ["Kathy Johnson", "? -1987", "Senator of Hawaii ( 1993-1999 ) and Attorney General of Hawaii ( 2003-2010 )"], ["Tom Greenaway", "? -2002", "Member of the Nevada Assembly ( 1975-1981 ) and Judge of the Nevada Eighth Judicial District Court ( 1991-2002 )"], ["George Chaney", "1868-1872", "Governor of Nevada ( 1903-1905 ) and Nevada State Senator ( 1895-1897 )"], ["Karen Cullinane", "? -1959", "U.S. Representative of Oregon ( 1993-1995 )"], ["Bill Robinson", "1950s", "Mayor of Seattle , Washington ( 1978-1990 ) and U.S. Representative of Washington ( 1981-1983 )"], ["Steve Patterson", "? - ?", "Arizona State Senator ( 2010-2018 ) and Mayor of Athens , Ohio ( 1991-2003 )"], ["John H. Lyle", "? -1943", "Oregon State Senator ( 1935-1937 ) , Representative ( 1941-1945 ), and member of the Oregon House of Representatives ( 1921-1926 )"], ["Lydia Gutierrez", "1960s", "Oregon U.S . Senator ( 1995-2003 ) and U.S. Ambassador to Estonia ( 2009-2012 )"], ["Walter Ford", "? -2000s", "Attorney General of Montana ( 2001-2009 ) and Judge of the Montana 13th Judicial District Court ( 1992-1997 )"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Attended", "Notability"], "add_description": "The name of this table is Politicians, and the headers of this table are Name,Attended,Notability.", "source": "hybridqa", "answer_md5": "[('15d5cf9a5f866cfc817841a0910c025a',)]"} +{"description": "The film titled 'New Movie' will be added to the Filmography table with the lead actor role and a note of '-' for the year 2019.", "label": ["INSERT INTO Filmography (Year, Title, Role, Notes) VALUES ('2019', 'New Movie', 'Lead Actor', '-')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Filmography", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1985", "Back to the Future", "Jennifer Parker", "-"], ["2008", "Still Waters Burn", "Laura Harper", "-"], ["2011", "Alien Armageddon", "Eileen Daly", "-"], ["2013", "You Are Not Alone", "Cristina's Mom", "Short film"], ["2013", "Max", "Mom", "Short film"], ["2014", "Starship: Rising", "Captain Savage", "-"], ["2015", "EP/Executive Protection", "Pam Travis", "-"], ["2015", "Back in Time", "Herself", "Back to the Future documentary"], ["2015", "Back to the 2015 Future", "Jennifer Parker", "Short film"], ["2017", "Vitals", "Margaret Parks", "-"], ["2018", "Groove Street", "Julie", "-"], ["1999", "The Matrix", "Trinity", "-"], ["2005", "Batman Begins", "Rachel Dawes", "-"], ["2010", "Inception", "Mal", "-"], ["2012", "The Avengers", "Black Widow/Natasha Romanoff", "-"], ["2014", "Interstellar", "Brand", "-"], ["2016", "La La Land", "Mia Dolan", "-"], ["2017", "Wonder Woman", "Wonder Woman/Diana Prince", "-"], ["2019", "Avengers: Endgame", "Black Widow/Natasha Romanoff", "-"], ["2021", "The Suicide Squad", "Harley Quinn", "-"], ["2022", "Black Panther: Wakanda Forever", "Okoye", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('ae2213ddbcb907c43fd757035b363328',)]"} +{"description": "The Grand River Bridge, a Steel Truss Bridge located in Tulsa at 36\u00b08\u203228\u2033N 96\u00b00\u203221\u2033W, was built in 1960 and listed on 2005-06-30 in Mayes County.", "label": ["INSERT INTO Bridges (Name, Built, Listed, Location, County, Type) VALUES ('Grand River Bridge', '1960', '2005-06-30', 'Tulsa 36\u00b08\u203228\u2033N 96\u00b00\u203221\u2033W', 'Mayes', 'Steel Truss Bridge')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Bridges", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Built", "type": "TEXT"}, {"name": "Listed", "type": "DATE"}, {"name": "Location", "type": "TEXT"}, {"name": "County", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}], "rows": [["Bridge No . 18 at Rock Creek", "1924 , 1926", "1995-02-23", "Sapulpa 35\u00b059\u203237\u2033N 96\u00b08\u203211\u2033W / 35.99361\u00b0N 96.13639\u00b0W / 35.99361 ; -96.13639 ( Bridge No . 18 at Rock Creek )", "Creek", "Parker Through Truss"], ["Captain Creek Bridge", "1933", "2004-03-03", "Wellston 35\u00b041\u203235\u2033N 97\u00b04\u203216\u2033W / 35.69306\u00b0N 97.07111\u00b0W / 35.69306 ; -97.07111 ( Captain Creek Bridge )", "Lincoln", "Camel Pony Truss"], ["Choctaw , Oklahoma and Gulf Railroad Viaduct", "1902 , 1909 , 1913", "2007-12-11", "Ardmore 34\u00b010\u203251\u2033N 97\u00b007\u203205\u2033W / 34.18083\u00b0N 97.11806\u00b0W / 34.18083 ; -97.11806 ( Choctaw , Oklahoma and Gulf Railroad Viaduct )", "Carter", "Wood Trestle-Plate Girder"], ["Eleventh Street Arkansas River Bridge", "File : Route 66 pedestrian overpass looking onto Cyrus Avery Plaza.jpg", "1996-12-13", "Tulsa 36\u00b08\u203228\u2033N 96\u00b00\u203221\u2033W / 36.14111\u00b0N 96.00583\u00b0W / 36.14111 ; -96.00583 ( Eleventh Street Arkansas River Bridge )", "Tulsa", "multiple-span concrete bridge"], ["Horse Creek Bridge", "1936", "1995-02-23", "Afton 36\u00b041\u203249\u2033N 94\u00b057\u203223\u2033W / 36.69694\u00b0N 94.95639\u00b0W / 36.69694 ; -94.95639 ( Horse Creek Bridge )", "Ottawa", ""], ["Jenson Tunnel", "1885", "1976-05-13", "Cameron 35\u00b013\u20329\u2033N 94\u00b026\u203235\u2033W / 35.21917\u00b0N 94.44306\u00b0W / 35.21917 ; -94.44306 ( Jenson Tunnel )", "Le Flore", ""], ["Keel Creek Bridge", "1940", "2007-04-04", "Coalgate 34\u00b036\u203234\u2033N 96\u00b08\u203242\u2033W / 34.60944\u00b0N 96.14500\u00b0W / 34.60944 ; -96.14500 ( Keel Creek Bridge )", "Coal", "concrete slab bridge"], ["Lake Overholser Bridge", "1924-1926", "2004-03-02", "Oklahoma City 35\u00b030\u203251\u2033N 97\u00b037\u203249\u2033W / 35.51417\u00b0N 97.63028\u00b0W / 35.51417 ; -97.63028 ( Lake Overholser Bridge )", "Oklahoma", "Mixed Truss Bridge"], ["Little Cabin Creek Bridge", "1934-1935", "2009-03-04", "Vinita 36\u00b037\u203236.4\u2033N 95\u00b07\u203212.8\u2033W / 36.626778\u00b0N 95.120222\u00b0W / 36.626778 ; -95.120222 ( Little Cabin Creek Bridge )", "Craig", "Parker pony truss"], ["Little Deep Fork Creek Bridge", "1914 , 1926 , 1928", "2003-12-05", "Bristow 35\u00b048\u203249\u2033N 96\u00b026\u20326\u2033W / 35.81361\u00b0N 96.43500\u00b0W / 35.81361 ; -96.43500 ( Little Deep Fork Creek Bridge )", "Creek", "Bedstead Warren Pony Truss"], ["Morrison Suspension Bridge", "1917", "1980-05-23", "Morrison 36\u00b018\u203230\u2033N 96\u00b057\u20325\u2033W / 36.30833\u00b0N 96.95139\u00b0W / 36.30833 ; -96.95139 ( Morrison Suspension Bridge )", "Noble", ""], ["Old Santa Fe Railroad Bridge", "", "2010-3-10", "Wanette", "Pottawatomie", ""], ["Opossum Creek Bridge", "", "2009-3-4", "South Coffeyville vicinity 36\u00b057\u203224.37\u2033N 95\u00b038\u203233.61\u2033W / 36.9567694\u00b0N 95.6426694\u00b0W / 36.9567694 ; -95.6426694 ( Opossum Creek Bridge )", "Nowata", ""], ["Pryor Creek Bridge", "1926 , 1932", "2006-09-06", "Chelsea 36\u00b032\u203218\u2033N 95\u00b024\u203254\u2033W / 36.53833\u00b0N 95.41500\u00b0W / 36.53833 ; -95.41500 ( Pryor Creek Bridge )", "Rogers", "Modified Pratt Through Truss"], ["Rock Creek Bridge", "", "2008-09-04", "Blanco vicinity", "Pittsburg", ""], ["Squirrel Creek Bridge", "", "2010-9-3", "Shawnee vicinity", "Pottawatomie", ""], ["State Highway 78 Bridge at the Red River", "1937 , 1938", "1996-12-20", "Ravenna 33\u00b045\u203229\u2033N 96\u00b011\u203255\u2033W / 33.75806\u00b0N 96.19861\u00b0W / 33.75806 ; -96.19861 ( State Highway 78 Bridge at the Red River )", "Bryan", "K-truss through bridge"], ["State Highway 79 Bridge at the Red River", "1939", "1996-12-20", "Byers 34\u00b07\u203258\u2033N 98\u00b05\u203226\u2033W / 34.13278\u00b0N 98.09056\u00b0W / 34.13278 ; -98.09056 ( State Highway 79 Bridge at the Red River )", "Jefferson", "camelback pony truss"], ["US Highway 77 Bridge at Canadian River", "1938", "2003-09-02", "Purcell 35\u00b00\u203254\u2033N 97\u00b020\u203238\u2033W / 35.01500\u00b0N 97.34389\u00b0W / 35.01500 ; -97.34389 ( US Highway 77 Bridge at Canadian River )", "McClain", "Deck Truss Bridge"], ["Arkansas River Trail Bridges", "1988", "2009-07-24", "Little Rock 34\u00b043\u203211\u2033N 92\u00b016\u203212\u2033W / 34.71972\u00b0N 92.27000\u00b0W / 34.71972 ; -92.27000 ( Arkansas River Trail Bridges )", "Pulaski", "Cable-stayed Bridge"], ["Brush Creek Bridge", "1921-1924", "2004-03-02", "Oklahoma City 35\u00b030\u203249\u2033N 97\u00b033\u203258\u2033W / 35.51361\u00b0N 97.56611\u00b0W / 35.51361 ; -97.56611 ( Brush Creek Bridge )", "Oklahoma", "Camelback-formed Warren Through Truss"], ["Deep Fork River Bridge", "1928", "2006-09-20", "Oklahoma City 35\u00b027\u203239\u2033N 97\u00b024\u203247\u2033W / 35.46083\u00b0N 97.41306\u00b0W / 35.46083 ; -97.41306 ( Deep Fork River Bridge )", "Oklahoma", "Multi-Plate Arch Culvert"], ["El Reno Bridge", "1908-1911", "1997-07-09", "El Reno 35\u00b031\u203245\u2033N 97\u00b057\u203257\u2033W / 35.52917\u00b0N 97.96583\u00b0W / 35.52917 ; -97.96583 ( El Reno Bridge )", "Canadian", "Concrete Span"], ["Farmers Market Bridge", "1935", "2010-03-25", "Oklahoma City 35\u00b027\u203239\u2033N 97\u00b030\u203221\u2033W / 35.46083\u00b0N 97.50583\u00b0W / 35.46083 ; -97.50583 ( Farmers Market Bridge )", "Oklahoma", "Steel Through-truss Bridge"], ["Gasoline Alley Bridge", "1924", "1995-06-29", "Beggs 35\u00b049\u203246\u2033N 96\u00b03\u203220\u2033W / 35.82944\u00b0N 96.05556\u00b0W / 35.82944 ; -96.05556 ( Gasoline Alley Bridge )", "Okmulgee", "Camelback Warren Through Truss"], ["Highway 5 Bridge over the Ouachita River", "1938", "1990-02-12", "Mount Ida vicinity 34\u00b032\u203254\u2033N 93\u00b035\u203254\u2033W / 34.54833\u00b0N 93.59833\u00b0W / 34.54833 ; -93.59833 ( Highway 5 Bridge over the Ouachita River )", "Montgomery", "Warren Through Truss"], ["Little Wildhorse Creek Bridge", "1929", "1997-04-11", "Wilburton vicinity 34\u00b053\u203239.16\u2033N 95\u00b019\u203233.13\u2033W / 34.8942111\u00b0N 95.3258694\u00b0W / 34.8942111 ; -95.3258694 ( Little Wildhorse Creek Bridge )", "Latimer", "Camelback through Truss Bridge"], ["North Canadian River Bridge", "1928", "2009-01-23", "El Reno 35.541389\u00b0N 97.9475\u00b0W / 35.541389; -97.9475 ( North Canadian River Bridge )", "Canadian", "Multi-Plate Arch Culvert"], ["Talimena Drive Historic Bridge", "1961", "1980-01-31", "Talihina 34\u00b044\u203255\u2033N 95\u00b02\u203228\u2033W / 34.74861\u00b0N 95.04111\u00b0W / 34.74861 ; -95.04111 ( Talimena Drive Historic Bridge )", "Le Flore", "Steel Beam Bridge"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Built", "Listed", "Location", "County", "Type"], "add_description": "The name of this table is Bridges, and the headers of this table are Name,Built,Listed,Location,County,Type.", "source": "hybridqa", "answer_md5": "[('7f94ae2d334b9fa11f45c28a78a0ada8',)]"} +{"description": "The NHL team records against the Edmonton Oilers show that they have had two occurrences of playing them in 1987 and 1990, with a total of 10 games played and a record of 1 win and 1 loss, resulting in a .500 win percentage.", "label": ["INSERT INTO `NHL Team Records Against Opponents` (`Opponent`, `S`, `Occurrences`, `GP`, `Rec`, `%`) VALUES ('Edmonton Oilers', '2', '1987 , 1990', '10', '1-1', '.500');"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "NHL Team Records Against Opponents", "table_info": {"columns": [{"name": "Opponent", "type": "TEXT"}, {"name": "S", "type": "INT"}, {"name": "Occurrences", "type": "TEXT"}, {"name": "GP", "type": "INT"}, {"name": "Rec", "type": "TEXT"}, {"name": "%", "type": "TEXT"}], "rows": [["Dallas Stars", "14", "1968 , 1970 , 1971 , 1972 , 1984 , 1985 , 1986 , 1989 , 1991 , 1994 , 1999 , 2001 , 2016 , 2019", "80", "8-6", ".571"], ["Chicago Blackhawks", "12", "1973 , 1980 , 1982 , 1983 , 1988 , 1989 , 1990 , 1992 , 1993 , 2002 , 2014 , 2016", "63", "4-8", ".333"], ["Detroit Red Wings", "7", "1984 , 1988 , 1991 , 1996 , 1997 , 1998 , 2002", "40", "2-5", ".286"], ["San Jose Sharks", "6", "2000 , 2001 , 2004 , 2012 , 2016 , 2019", "35", "3-3", ".500"], ["Toronto Maple Leafs", "5", "1986 , 1987 , 1990 , 1993 , 1996", "31", "3-2", ".600"], ["Los Angeles Kings", "4", "1969 , 1998 , 2012 , 2013", "18", "2-2", ".500"], ["Pittsburgh Penguins", "3", "1970 , 1975 , 1981", "13", "2-1", ".667"], ["Boston Bruins", "3", "1970 , 1972 , 2019", "15", "1-2", ".333"], ["Montreal Canadiens", "3", "1968 , 1969 , 1977", "12", "0-3", ".000"], ["Vancouver Canucks", "3", "1995 , 2003 , 2009", "18", "0-3", ".000"], ["Arizona Coyotes", "2", "1982 , 1999", "11", "2-0", "1.000"], ["Philadelphia Flyers", "2", "1968 , 1969", "11", "2-0", "1.000"], ["Minnesota Wild", "2", "2015 , 2017", "11", "1-1", ".500"], ["Winnipeg Jets", "1", "2019", "6", "1-0", "1.000"], ["Buffalo Sabres", "1", "1976", "3", "0-1", ".000"], ["Calgary Flames", "1", "1986", "7", "0-1", ".000"], ["Colorado Avalanche", "1", "2001", "5", "0-1", ".000"], ["Nashville Predators", "1", "2017", "6", "0-1", ".000"], ["New York Rangers", "1", "1981", "6", "0-1", ".000"], ["Totals", "72", "", "391", "31-41", ".431"], ["Opponent", "S", "Occurrences", "GP", "Rec", "%"], ["Washington Capitals", "1", "2021", "2", "0-1", ".000"], ["Edmonton Oilers", "5", "1983 , 1985 , 1990 , 2006 , 2017", "25", "2-3", ".400"], ["St. Louis Blues", "8", "1968 , 1969 , 1970 , 1973 , 2014 , 2015 , 2019 , 2022", "45", "2-6", ".250"], ["New York Islanders", "4", "1980 , 1981 , 1982 , 1983", "21", "0-4", ".000"], ["Tampa Bay Lightning", "2", "2004 , 2015", "11", "1-1", ".500"], ["Florida Panthers", "3", "1996 , 2012 , 2021", "16", "2-1", ".667"], ["Ottawa Senators", "1", "2007", "4", "0-1", ".000"], ["Carolina Hurricanes", "3", "2002 , 2009 , 2019", "16", "0-3", ".000"], ["Anaheim Ducks", "1", "2007", "6", "1-0", "1.000"], ["Columbus Blue Jackets", "1", "2019", "4", "0-1", ".000"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Opponent", "S", "Occurrences", "GP", "Rec", "%"], "add_description": "The name of this table is NHL Team Records Against Opponents, and the headers of this table are Opponent,S,Occurrences,GP,Rec,%.", "source": "hybridqa", "answer_md5": "[('f53e25e0a3275a7c088cec4aba67927c',)]"} +{"description": "The film 'Black Panther: Wakanda Forever' is in pre-production and has an expected release date of 2022. The actress's role in the film is currently unknown but will be added to her filmography once filming is complete.", "label": ["INSERT INTO `Actress Filmography` (`Year`, `Title`, `Role`, `Notes`) VALUES ('2022', 'Black Panther: Wakanda Forever', 'N/A', 'Pre-production');"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Actress Filmography", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2007", "Apr\u00e8s lui", "Emilie", "-"], ["2008", "The Easy Way", "NHI", "-"], ["2009", "Loup", "Nastazya", "-"], ["2009", "Pigalle, la nuit", "Sandra", "TV series (eight episodes)"], ["2011", "Borderline", "Naomi", "-"], ["2011", "Sleepless Night", "Lucy", "-"], ["2011", "Delicacy", "Waitress", "-"], ["2011", "Love Lasts Three Years", "Julia", "-"], ["2011", "Silhouettes", "Valerie", "-"], ["2012", "Radiostars", "The pizza girl", "-"], ["2012", "Porn in the Hood", "Tia", "-"], ["2012", "\u00c0 l'ombre du palmier", "Le mod\u00e8le", "Short film"], ["2012", "El Turrrf", "Pom", "Short film"], ["2013", "Paris \u00e0 tout prix", "Jess", "-"], ["2013", "Oldboy", "Haeng-Bok", "-"], ["2014", "RossFit", "-", "Short film"], ["2015", "Hacker's Game", "Loise", "-"], ["2016", "Seed", "Cat", "Short film"], ["2017", "Ingrid Goes West", "Harley Chung", "-"], ["2017", "Newness", "Bethany", "-"], ["2017", "Guardians of the Galaxy Vol. 2", "Mantis", "-"], ["2017", "Alteration", "Elsa", "Short film"], ["2018", "Avengers: Infinity War", "Mantis", "-"], ["2019", "Avengers: Endgame", "Mantis", "-"], ["2019", "Uncut Gems", "Lexus", "Post-production"], ["2022", "The Lost Treasure", "Laura", "-"], ["2016", "The Mysterious Journey", "Emily", "-"], ["2017", "Under the Starry Night", "Luna", "Short film"], ["2015", "The Secret Garden", "Isabella", "-"], ["2018", "The Enchanted Forest", "Ella", "-"], ["2019", "The Time Traveler", "Sophie", "TV series (six episodes)"], ["2014", "The Hidden Gem", "Ava", "-"], ["2020", "The Butterfly Dream", "Juliette", "Short film"], ["2013", "The Golden Key", "Rose", "-"], ["2012", "The Magic Mirror", "Alice", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Actress Filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('aad770fc43d5ecda91aabf55ca39a0d7',)]"} +{"description": "The music catalog for the performance 'Live at the Opera House' in 2012 was added to the database with the label 'Warner Music' and format 'DVD' using the SQL command INSERT INTO music_catalog (Year, Title, Label, Format) VALUES ('2012', 'Live at the Opera House', 'Warner Music', 'DVD')", "label": ["INSERT INTO music_catalog (Year, Title, Label, Format) VALUES ('2012', 'Live at the Opera House', 'Warner Music', 'DVD')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "music_catalog", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Title", "type": "TEXT"}, {"name": "Label", "type": "TEXT"}, {"name": "Format", "type": "TEXT"}], "rows": [["2010", "Choose Your Own Adventure", "Do Right Music", "CD"], ["2011", "Do Right! Serato Pressing featuring Maylee Todd", "Do Right Music", "12\" vinyl & digital download"], ["2013", "Escapology", "Do Right Music", "CD, LP"], ["2014", "Dirty Power", "Ark Analog", "-"], ["2017", "Acts Of Love", "Do Right Music", "CD, LP"], ["2008", "The Beginning", "Universal Music", "CD"], ["2012", "Let it Be", "EMI Music", "LP"], ["2015", "The Best of Me", "Warner Music", "CD, digital download"], ["2018", "Love is All Around", "Sony Music", "CD, LP"], ["2019", "Sunset Boulevard", "Atlantic Records", "CD, digital download"], ["2020", "The Last Dance", "Capitol Records", "12\" vinyl"], ["2009", "One More Time", "Sony Music", "CD, LP"], ["2016", "The Other Side", "Warner Music", "CD, digital download"], ["2013", "The Greatest Hits", "Universal Music", "CD, LP"], ["2011", "The Rhythm of Life", "Capitol Records", "CD"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Label", "Format"], "add_description": "The name of this table is music_catalog, and the headers of this table are Year,Title,Label,Format.", "source": "fetaqa", "answer_md5": "[('d76adbd72e07b819b72020e35682b88b',)]"} +{"description": "The Financial Performance table should have a new row inserted with 'Net profit before tax' recorded for the years 2005-2009 at amounts of (33), 28, 194, 26, and 267 million CZK respectively.", "label": ["INSERT INTO `Financial Performance` (`million CZK`, `2005`, `2006`, `2007`, `2008`, `2009`) VALUES ('Net profit before tax', '(33)', '28', '194', '26', '267')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Financial Performance", "table_info": {"columns": [{"name": "million CZK", "type": "TEXT"}, {"name": "2005", "type": "TEXT"}, {"name": "2006", "type": "TEXT"}, {"name": "2007", "type": "TEXT"}, {"name": "2008", "type": "TEXT"}, {"name": "2009", "type": "TEXT"}], "rows": [["Operating revenues", "4,391", "4,844", "5,818", "6,511", "7,006"], ["Operating profit", "40", "73", "205", "384", "344"], ["Net profit after tax", "(25)", "15", "156", "4", "212"], ["Assets", "1,074", "1,205", "1,564", "2,226", "1,653"], ["Equity", "70", "62", "237", "158", "409"], ["Liabilities", "1,004", "1,143", "1,327", "2,068", "1,245"], ["Operating revenues", "8,231", "9,051", "10,893", "12,223", "13,169"], ["Operating profit", "57", "108", "307", "575", "514"], ["Net profit after tax", "(19)", "32", "321", "11", "424"], ["Assets", "1,450", "1,622", "2,106", "2,981", "2,215"], ["Equity", "92", "82", "313", "209", "545"], ["Liabilities", "1,358", "1,540", "1,793", "2,772", "1,670"], ["Operating revenues", "13,441", "14,785", "17,798", "19,999", "21,531"], ["Operating profit", "93", "175", "496", "929", "833"], ["Net profit after tax", "(31)", "52", "520", "18", "636"], ["Assets", "2,967", "3,324", "4,313", "6,096", "4,522"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["million CZK", "2005", "2006", "2007", "2008", "2009"], "add_description": "The name of this table is Financial Performance, and the headers of this table are million CZK,2005,2006,2007,2008,2009.", "source": "wikisql", "answer_md5": "[('e17ff23a6f2542188cba3e96e7a2e578',)]"} +{"description": "Insert the name, attended period, and notability of Jane Smith into the database table.", "label": ["INSERT INTO database_table (Name, Attended, Notability) VALUES ('Jane Smith', '2005-2009', 'Acclaimed scientist and researcher')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "database_table", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Attended", "type": "TEXT"}, {"name": "Notability", "type": "TEXT"}], "rows": [["Philip Emeagwali", "1974-1977", "1989 Gordon Bell Prize winner"], ["Paul H. Emmett", "1917-1922", "Manhattan Project research staff member and member of the United States National Academy of Sciences"], ["Douglas Engelbart", "? -1948", "Inventor of the computer mouse"], ["Wayne L. Hubbell", "? -1965", "Led development of site-directed spin labeling ( SDSL ) ; member of the National Academy of Sciences"], ["Donald M. Kerr", "? -1969", "Wildlife biologist and founder of the High Desert Museum"], ["Ann Kiessling", "? -1971", "Reproductive biologist and leading stem cell researcher"], ["Octave Levenspiel", "? -1991", "Emeritus Professor of chemical engineering at Oregon State University , author of five books , and member of the National Academy of Engineering"], ["Linus Pauling", "1917-1922", "1954 Nobel Prize in Chemistry and 1962 Nobel Peace Prize recipient ; the only person ever to win two unshared Nobel Prizes"], ["Glenn Odekirk", "1923-1927", "Hughes Aircraft Aerospace Engineer , helped design the H-4 Hercules"], ["William Oefelein", "? -1988", "NASA astronaut"], ["Donald Pettit", "? -1978", "NASA astronaut"], ["J. Michael Scott", "? -1973", "Ornithologist ( research scientist ) , Peace Corps volunteer"], ["Michael Waterman", "early 70s", "Computational biologist ; professor of biological science , mathematics , and computer science at the University of Southern California ; elected member of the American Academy of Arts and Sciences ( 1995 ) , the National Academy of Sciences ( 2001 ) and the National Academy of Engineering ( 2012 ) ; elected Foreign Member of the French Academy of Sciences ( 2005 ) and the Chinese Academy of Sciences ( 2013 )"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Attended", "Notability"], "add_description": "The name of this table is database_table, and the headers of this table are Name,Attended,Notability.", "source": "hybridqa", "answer_md5": "[('efba0242971152e7ca3af47fd212d5c3',)]"} +{"description": "On August 3, 2004, Manny Ramirez pitched in a baseball game against the Boston Red Sox and the final score was 8-4. The game results were then inserted into a database table called Baseball Game Results.", "label": ["INSERT INTO `Baseball Game Results` ( `Date`, `Pitcher`, `Score`, `Opponent`) VALUES ('August 3, 2004', 'Manny Ramirez', '8-4', 'Boston Red Sox')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Baseball Game Results", "table_info": {"columns": [{"name": "Date", "type": "DATE"}, {"name": "Pitcher", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}], "rows": [["July 2 , 1961", "Dennis Ribant *", "1-0", "Clinton C-Sox"], ["May 6 , 1966", "Vern Geishert", "7-0", "Fox Cities Foxes"], ["May 4 , 1971", "Sid Monge", "6-0", "Cedar Rapids Cardinals"], ["August 21 , 1974", "Lamar Wright", "2-0 ( 7 )", "Danville Warriors"], ["May 20 , 1975", "Jim Dorsey", "4-0 ( 7 )", "Clinton Pilots"], ["May 31 , 1976", "Don Mraz", "3-0 ( 7 )", "Wisconsin Rapids Twins"], ["July 26 , 1976", "Ralph Botting", "3-0 ( 7 )", "Wausau Mets"], ["July 9 , 1977", "T. Joel Crisler", "1-0 ( 7 ) ( G2 )", "Wisconsin Rapids Twins"], ["May 19 , 2000", "Tim Sturdy", "1-0 ( 7 )", "Cedar Rapids Kernels"], ["August 12 , 2001", "Brian Wolfe", "2-0", "Dayton Dragons"], ["May 19 , 2009", "Hector Cardenas ( 5 IP ) Kevin Thomas ( 2 IP )", "3-0 ( 7 )", "Beloit Snappers"], ["January 1, 2000", "John Smith", "5-3", "New York Yankees"], ["July 4, 1995", "Tom Johnson", "2-1", "Boston Red Sox"], ["September 12, 1988", "Bob Jones", "4-2", "Chicago Cubs"], ["June 15, 1979", "Mike Lee", "6-4", "Los Angeles Dodgers"], ["April 27, 1963", "Steve Wilson", "1-0", "San Francisco Giants"], ["August 8, 1978", "Dave Johnson", "3-2", "Houston Astros"], ["May 14, 1992", "Joe Martinez", "7-5", "St. Louis Cardinals"], ["June 3, 2004", "George Kuhn", "2-1 (10)", "Milwaukee Brewers"], ["July 7, 2015", "Trevor Davis", "5-4", "Arizona Diamondbacks"], ["September 21, 2006", "Adam Thompson", "4-1", "Tampa Bay Devil Rays"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Pitcher", "Score", "Opponent"], "add_description": "The name of this table is Baseball Game Results, and the headers of this table are Date,Pitcher,Score,Opponent.", "source": "hybridqa", "answer_md5": "[('38c9bf2cc6f0ef2c6b52af8665d3e166',)]"} +{"description": "Insert data into table `Ethnic Population Table` to show the number of Chinese Indonesian ethnicity people, which is 2.832 million, accounts for 1.20% of the total population in North Sumatra, Riau, Riau Islands, West Kalimantan, Jakarta, and Bangka-Belitung Islands.", "label": ["INSERT INTO `Ethnic Population Table`(`Ethnic group`, `Population ( million )`, `Percentage`, `Main regions`) VALUES ('Chinese Indonesian', '2.832', '1.20', 'North Sumatra , Riau , Riau Islands , West Kalimantan , Jakarta , Bangka-Belitung Islands')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Ethnic Population Table", "table_info": {"columns": [{"name": "Ethnic group", "type": "text"}, {"name": "Population ( million )", "type": "text"}, {"name": "Percentage", "type": "text"}, {"name": "Main regions", "type": "text"}], "rows": [["Javanese", "92.24", "42.00", "Central Java , East Java , Yogyakarta , Jakarta , North Sumatra , South Sumatra , Bengkulu , Lampung"], ["Sundanese", "30.978", "15.41", "West Java , Banten , Jakarta , Lampung"], ["Malay", "6.946", "3.45", "Aceh , North Sumatra , Riau , Riau Islands , Jambi , South Sumatra , Bangka-Belitung Islands , West Kalimantan"], ["Madurese", "6.772", "3.37", "Madura island , East Java"], ["Batak", "6.076", "3.02", "North Sumatra , Aceh , West Sumatra , Riau , Riau Islands , Jakarta"], ["Minangkabau", "5.475", "2.72", "West Sumatra , Riau , Riau Islands , Jakarta"], ["Betawi", "5.042", "2.51", "Jakarta , Banten , West Java"], ["Bugis", "5.010", "2.49", "South Sulawesi , South East Sulawesi , Central Sulawesi , East Kalimantan"], ["Acehnese", "4.419", "2.05", "Aceh"], ["Bantenese", "4.113", "2.05", "Banten"], ["Banjarese", "3.496", "1.74", "South Kalimantan , East Kalimantan"], ["Balinese", "3.028", "1.51", "Bali"], ["Chinese Indonesian", "2.832", "1.20", "North Sumatra , Riau , Riau Islands , West Kalimantan , Jakarta , Bangka-Belitung Islands"], ["Sasak", "2.611", "1.17", "West Nusa Tenggara"], ["Makassarese", "1.982", "0.99", "South Sulawesi"], ["Minahasan", "1.900", "0.96", "North Sulawesi , Gorontalo"], ["Cirebonese", "1.890", "0.94", "West Java , Central Java"], ["Javanese", "92.24", "42.00", "Central Java, East Java, Yogyakarta, Jakarta, North Sumatra, South Sumatra, Bengkulu, Lampung"], ["Sundanese", "30.978", "15.41", "West Java, Banten, Jakarta, Lampung"], ["Malay", "6.946", "3.45", "Aceh, North Sumatra, Riau, Riau Islands, Jambi, South Sumatra, Bangka-Belitung Islands, West Kalimantan"], ["Madurese", "6.772", "3.37", "Madura island, East Java"], ["Batak", "6.076", "3.02", "North Sumatra, Aceh, West Sumatra, Riau, Riau Islands, Jakarta"], ["Minangkabau", "5.475", "2.72", "West Sumatra, Riau, Riau Islands, Jakarta"], ["Betawi", "5.042", "2.51", "Jakarta, Banten, West Java"], ["Bugis", "5.010", "2.49", "South Sulawesi, South East Sulawesi, Central Sulawesi, East Kalimantan"], ["Acehnese", "4.419", "2.05", "Aceh"], ["Bantenese", "4.113", "2.05", "Banten"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Ethnic group", "Population ( million )", "Percentage", "Main regions"], "add_description": "The name of this table is Ethnic Population Table, and the headers of this table are Ethnic group,Population ( million ),Percentage,Main regions.", "source": "hybridqa", "answer_md5": "[('5e94e71135c60d6683f5a37a144fad85',)]"} +{"description": "Add the row for the actor's acting role for the TV series 'Vikings' in the table 'Acting Roles' with the following details: the year is 2012-2013, the title is 'Vikings', the role is 'Rollo', and the notes indicate that it's a main role and the actor appeared in 16 episodes.", "label": ["INSERT INTO `Acting Roles` (Year, Title, Role, Notes) VALUES ('2012-2013', 'Vikings', 'Rollo', 'Main role, 16 episodes')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Acting Roles", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2007", "The Tudors", "Bedoli", "Episode : In Cold Blood"], ["2008-09", "The Clinic", "Ruair\u00ed McGowan", "Main role , 18 episodes"], ["2009", "Desperate Romantics", "Dante Gabriel Rossetti", "Main role , 6 episodes"], ["2009-11", "Being Human", "John Mitchell", "Main role , 22 episodes"], ["2010", "Resonance", "TT", "Pilot"], ["2011", "Hattie", "John Schofield", "TV movie"], ["2015", "And Then There Were None", "Philip Lombard", "TV mini series"], ["2015-2019", "Poldark", "Ross Poldark", "Lead role"], ["2020", "Leonardo", "Leonard de Vinci", "Lead role"], ["2005", "Casualty", "Jack", "Guest role"], ["2006", "Silent Witness", "James", "Episode: Awakening"], ["2008", "Merlin", "Gawain", "Guest role"], ["2013-2014", "Atlantis", "Jason", "Lead role, 25 episodes"], ["2014", "The Musketeers", "King Louis XIII", "Recurring role, 6 episodes"], ["2016", "Victoria", "Prince Albert", "Recurring role, 7 episodes"], ["2017", "Knightfall", "Landry de Lauzon", "Lead role"], ["2018", "Bodyguard", "David Budd", "Lead role"], ["2019", "Chernobyl", "Boris Shcherbina", "Lead role"], ["2021", "The Nevers", "Hugo Swann", "Recurring role"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Acting Roles, and the headers of this table are Year,Title,Role,Notes.", "source": "hybridqa", "answer_md5": "[('315997c113ea46d8fef69bbd7d68b9a8',)]"} +{"description": "On June 2, the team played against the Red Sox, with a final score of 3-2. The team suffered a loss, with Cotton having a record of 3-3. The game had an attendance of 30,000, bringing the team's overall record to 30-27. The game results were inserted into the database using the following values: Date='June 2', Opponent='Red Sox', Score='3 - 2', Loss='Cotton (3-3)', Attendance='30,000', and Record='30-27'.", "label": ["INSERT INTO game_results (Date,Opponent,Score,Loss,Attendance,Record) VALUES ('June 2', 'Red Sox', '3 - 2', 'Cotton (3-3)', '30,000', '30-27')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "game_results", "table_info": {"columns": [{"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Loss", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["May 1", "@ Athletics", "5 - 2", "Hanson (0-1)", "7,078", "10-17"], ["May 2", "@ Athletics", "7 - 0", "Oquist (0-1)", "10,729", "11-17"], ["May 3", "@ Athletics", "6 - 3", "Telgheder (0-1)", "23,463", "12-17"], ["May 4", "@ Athletics", "7 - 4", "Hentgen (3-3)", "5,206", "12-18"], ["May 5", "@ Angels", "13 - 11", "Percival (0-2)", "17,271", "13-18"], ["May 6", "@ Angels", "6 - 5", "Hasegawa (1-1)", "17,392", "14-18"], ["May 7", "@ Mariners", "6 - 0", "Moyer (2-4)", "24,129", "15-18"], ["May 8", "@ Mariners", "8 - 3", "Williams (3-2)", "29,920", "15-19"], ["May 9", "@ Mariners", "4 - 1", "Swift (2-2)", "49,851", "16-19"], ["May 10", "@ Mariners", "3 - 1", "Guzm\u00e1n (1-5)", "39,249", "16-20"], ["May 12", "Athletics", "4 - 3 (10)", "Taylor (0-3)", "25,636", "17-20"], ["May 13", "Athletics", "4 - 2", "Clemens (4-4)", "25,732", "17-21"], ["May 14", "Angels", "5 - 4", "DeLucia (1-2)", "25,606", "18-21"], ["May 15", "Angels", "9 - 1", "Hill (6-2)", "26,644", "19-21"], ["May 16", "Mariners", "8 - 1", "Guzm\u00e1n (1-6)", "31,121", "19-22"], ["May 17", "Mariners", "4 - 3", "Slocumb (1-3)", "28,111", "20-22"], ["May 18", "Mariners", "9 - 4", "Clemens (4-5)", "28,125", "20-23"], ["May 19", "Devil Rays", "3 - 1", "Springer (1-7)", "25,662", "21-23"], ["May 20", "Devil Rays", "9 - 1", "\u00c1lvarez (4-5)", "26,107", "22-23"], ["May 21", "Devil Rays", "6 - 1", "Arrojo (6-3)", "30,108", "23-23"], ["May 22", "@ Indians", "9 - 7", "Hanson (0-2)", "43,269", "23-24"], ["May 23", "@ Indians", "7 - 2", "Col\u00f3n (3-3)", "43,306", "24-24"], ["May 24", "@ Indians", "5 - 0", "Gooden (0-1)", "43,194", "25-24"], ["May 25", "@ Red Sox", "7 - 5", "Mart\u00ednez (5-1)", "32,342", "26-24"], ["May 26", "@ Red Sox", "5 - 2", "Avery (1-1)", "27,668", "27-24"], ["May 28", "Indians", "6 - 2", "Carpenter (1-1)", "30,282", "27-25"], ["May 29", "Indians", "7 - 3", "Clemens (5-6)", "29,085", "27-26"], ["May 30", "Indians", "4 - 2", "Gooden (0-2)", "37,179", "28-26"], ["May 31", "Indians", "8 - 3", "Hentgen (7-4)", "30,090", "28-27"], ["June 1", "@ Red Sox", " ", " ", " ", " "], ["June 2", "@ Red Sox", " ", " ", " ", " "], ["June 3", "@ Yankees", " ", " ", " ", " "], ["June 4", "@ Yankees", " ", " ", " ", " "], ["June 5", "@ Yankees", " ", " ", " ", " "], ["June 6", "@ Orioles", " ", " ", " ", " "], ["June 7", "@ Orioles", " ", " ", " ", " "], ["June 8", "@ Orioles", " ", " ", " ", " "], ["June 9", "Red Sox", " ", " ", " ", " "], ["June 10", "Red Sox", " ", " ", " ", " "]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Opponent", "Score", "Loss", "Attendance", "Record"], "add_description": "The name of this table is game_results, and the headers of this table are Date,Opponent,Score,Loss,Attendance,Record.", "source": "wikisql", "answer_md5": "[('ea5c8d48e9e3507e6cedf678bdf9ba32',)]"} +{"description": "Insert a record into the table 'Athlete Performances' with the values '1996' for the year, 'Olympic Games' for the competition, 'Atlanta, USA' for the venue, '1st' for the position, 'Decathlon' for the event, and '8893 pts' for the notes.", "label": ["INSERT INTO `Athlete Performances` (Year, Competition, Venue, Position, Event, Notes) VALUES ('1996', 'Olympic Games', 'Atlanta, USA', '1st', 'Decathlon', '8893 pts')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Athlete Performances", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Representing West Germany", "Representing West Germany", "Representing West Germany", "Representing West Germany", "Representing West Germany", "Representing West Germany"], ["1990", "World Junior Championships", "Plovdiv, Bulgaria", "8th", "Decathlon", "7198 pts"], ["Representing Germany", "Representing Germany", "Representing Germany", "Representing Germany", "Representing Germany", "Representing Germany"], ["1992", "Hypo-Meeting", "G\u00f6tzis, Austria", "5th", "Decathlon", "8153 pts"], ["1992", "Olympic Games", "Barcelona, Spain", "6th", "Decathlon", "8192 pts"], ["1993", "Hypo-Meeting", "G\u00f6tzis, Austria", "2nd", "Decathlon", "8460 pts"], ["1993", "World Championships", "Stuttgart, Germany", "3rd", "Decathlon", "8548 pts"], ["1995", "Hypo-Meeting", "G\u00f6tzis, Austria", "8th", "Decathlon", "8149 pts"], ["1995", "World Championships", "Gothenburg, Sweden", "\u2014", "Decathlon", "DNF"], ["1996", "Hypo-Meeting", "G\u00f6tzis, Austria", "1st", "Decathlon", "8965 pts"], ["2000", "Olympic Games", "Sydney, Australia", "Gold", "Decathlon", "8893 pts"], ["2001", "World Championships", "Edmonton, Canada", "Silver", "Decathlon", "8832 pts"], ["2004", "Olympic Games", "Athens, Greece", "Gold", "Decathlon", "8893 pts"], ["2005", "Hypo-Meeting", "G\u00f6tzis, Austria", "2nd", "Decathlon", "8824 pts"], ["2005", "World Championships", "Helsinki, Finland", "Gold", "Decathlon", "8735 pts"], ["2007", "World Championships", "Osaka, Japan", "Bronze", "Decathlon", "8604 pts"], ["2008", "Olympic Games", "Beijing, China", "Gold", "Decathlon", "8832 pts"], ["2009", "World Championships", "Berlin, Germany", "Gold", "Decathlon", "8795 pts"], ["2012", "Olympic Games", "London, United Kingdom", "Silver", "Decathlon", "8861 pts"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is Athlete Performances, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('d5f024394dde77c3febd4e68a1bb2ff1',)]"} +{"description": "On November 11, Dallas scored 2 and Detroit scored 4 in the Hockey_Game_Scores. Detroit's record was 7-8-2.", "label": ["INSERT INTO Hockey_Game_Scores (Date, Visitor, Score, Home, Record) VALUES ('November 11', 'Dallas', '2 \u2013 4', 'Detroit', '7\u20138\u20132')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Hockey_Game_Scores", "table_info": {"columns": [{"name": "Date", "type": "TEXT"}, {"name": "Visitor", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Home", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["October 3", "Detroit", "3 \u2013 3", "Chicago", "0\u20130\u20131"], ["October 5", "Detroit", "5 \u2013 8", "Toronto", "0\u20131\u20131"], ["October 10", "Montreal", "4 \u2013 1", "Detroit", "0\u20132\u20131"], ["October 12", "Detroit", "2 \u2013 3", "Minnesota", "0\u20133\u20131"], ["October 15", "Edmonton", "1 \u2013 3", "Detroit", "1\u20133\u20131"], ["October 17", "St. Louis", "3 \u2013 6", "Detroit", "2\u20133\u20131"], ["October 19", "Detroit", "6 \u2013 1", "Quebec", "3\u20133\u20131"], ["October 23", "Winnipeg", "3 \u2013 2", "Detroit", "3\u20134\u20131"], ["October 25", "Toronto", "0 \u2013 4", "Detroit", "4\u20134\u20131"], ["October 26", "Detroit", "1 \u2013 6", "Toronto", "4\u20135\u20131"], ["October 28", "Los Angeles", "4 \u2013 3", "Detroit", "4\u20136\u20131"], ["October 30", "Buffalo", "1 \u2013 3", "Detroit", "5\u20136\u20131"], ["November 2", "New York", "2 \u2013 5", "Detroit", "6\u20136\u20131"], ["November 5", "Philadelphia", "3 \u2013 1", "Detroit", "6\u20137\u20131"], ["November 8", "Detroit", "2 \u2013 2", "Boston", "6\u20137\u20132"], ["November 10", "San Jose", "1 \u2013 4", "Detroit", "7\u20137\u20132"], ["November 13", "Detroit", "3 \u2013 2", "Vancouver", "8\u20137\u20132"], ["November 15", "Calgary", "2 \u2013 1", "Detroit", "8\u20138\u20132"], ["November 18", "Detroit", "1 \u2013 5", "Dallas", "8\u20139\u20132"], ["November 20", "Arizona", "4 \u2013 4", "Detroit", "8\u20139\u20133"], ["November 23", "Detroit", "5 \u2013 2", "New Jersey", "9\u20139\u20133"], ["November 26", "Detroit", "2 \u2013 3", "Washington", "9\u201310\u20133"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Visitor", "Score", "Home", "Record"], "add_description": "The name of this table is Hockey_Game_Scores, and the headers of this table are Date,Visitor,Score,Home,Record.", "source": "wikisql", "answer_md5": "[('81d6d11ea306eed6a6f78ae7ae76f99a',)]"} +{"description": "For the 'Actor Credits' table, insert a record with values for Title, Year, Role, and Notes, where Title is '\u00bfQu\u00e9 le pasa a mi familia?', Year is '2021', Role is 'Juan Pablo Del R\u00edo', and Notes is 'Main role; 120 episodes'.", "label": ["INSERT INTO `Actor Credits` (Title, Year, Role, Notes) VALUES ('\u00bfQu\u00e9 le pasa a mi familia?', '2021', 'Juan Pablo Del R\u00edo', 'Main role; 120 episodes')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Actor Credits", "table_info": {"columns": [{"name": "Title", "type": "TEXT"}, {"name": "Year", "type": "INT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["DKDA: Sue\u00f1os de juventud", "2000", "Unknown role", "Television debut; 2 episodes"], ["Amigos x siempre", "2000", "Unknown role", "1 episode"], ["Protagonistas de Novela", "2003", "Himself", "-"], ["Gitanas", "2004", "Jon\u00e1s", "Also starring"], ["El cuerpo del deseo", "2005", "Antonio Dom\u00ednguez", "Recurring role; 10 episodes (season 1)"], ["El Zorro, la espada y la rosa", "2007", "Renzo", "Recurring role"], ["Tormenta en el para\u00edso", "2007\u20132008", "Nicol\u00e1s Bravo", "Main role"], ["En nombre del amor", "2008\u20132009", "Gabriel Lizarde", "Also starring; 138 episodes (season 1)"], ["Ni\u00f1a de mi coraz\u00f3n", "2010", "Dar\u00edo Arrioja", "Main role"], ["Locas de amor", "2010", "Dami\u00e1n", "Recurring role; 25 episodes (season 1)"], ["Ni contigo ni sin ti", "2011", "Iker Rivas Olmedo", "Main role; 124 episodes (season 1)"], ["Porque el amor manda", "2012\u20132013", "Rogelio Rivadeneira", "Main role; 182 episodes (season 1)"], ["El color de la pasi\u00f3n", "2014", "Marcelo Escalante", "Main role; 117 episodes (season 1)"], ["El hotel de los secretos", "2016", "Julio Olmedo", "Main role; 80 episodes (season 1)"], ["Betty en NY", "2019", "Armando Mendoza", "Main role"], ["La sombra del pasado", "2014", "Aldo Duval", "Main role; 101 episodes (season 1)"], ["Soy tu due\u00f1a", "2010", "Horacio Hern\u00e1ndez", "Recurring role; 18 episodes (season 1)"], ["Cuna de lobos", "2019", "Alejandro C\u00f3rdova", "Main role; 80 episodes (season 1)"], ["La do\u00f1a", "2016-2017", "Sa\u00fal Aguirre", "Recurring role; 21 episodes (season 1)"], ["Cielo rojo", "2011", "Luis Gonzaga", "Main role; 104 episodes (season 1)"], ["El vuelo del \u00e1guila", "1994", "Maximiliano Rojas", "Recurring role; 42 episodes (season 1)"], ["Piel de oto\u00f1o", "2005-2006", "Eugenio", "Main role; 131 episodes (season 1)"], ["El Se\u00f1or de los Cielos", "2013-2014", "Don Armando", "Recurring role; 15 episodes (season 1)"], ["Tres veces Ana", "2016", "I\u00f1aki San Rom\u00e1n", "Main role; 103 episodes (season 1)"], ["Rub\u00ed", "2019", "H\u00e9ctor Ferrer", "Main role; 25 episodes (season 1)"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Title", "Year", "Role", "Notes"], "add_description": "The name of this table is Actor Credits, and the headers of this table are Title,Year,Role,Notes.", "source": "fetaqa", "answer_md5": "[('6e1ae15990cb9038cbb5eac67d21059b',)]"} +{"description": "The Rangers team's home stadium is the Ibrox Stadium, which is located in Glasgow.", "label": ["INSERT INTO Team_Location_Stadium(Team, Location, Stadium) VALUES('Rangers', 'Glasgow', 'Ibrox Stadium')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Team_Location_Stadium", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Stadium", "type": "TEXT"}], "rows": [["Bohemians", "Phibsborough", "Dalymount Park"], ["Bray Wanderers", "Bray", "Carlisle Grounds"], ["Cork City", "Cork", "Turners Cross"], ["Derry City", "Derry", "Brandywell Stadium"], ["Drogheda United", "Drogheda", "Hunky Dorys Park"], ["Dundalk", "Dundalk", "Oriel Park"], ["Limerick", "Limerick", "Thomond Park"], ["Shamrock Rovers", "Tallaght", "Tallaght Stadium"], ["Shelbourne", "Drumcondra", "Tolka Park"], ["Sligo Rovers", "Sligo", "The Showgrounds"], ["St Patrick 's Athletic", "Inchicore", "Richmond Park"], ["UCD", "Belfield", "UCD Bowl"], ["Manchester United", "Manchester", "Old Trafford"], ["Liverpool", "Liverpool", "Anfield"], ["Arsenal", "London", "Emirates Stadium"], ["Chelsea", "London", "Stamford Bridge"], ["Tottenham Hotspur", "London", "White Hart Lane"], ["Manchester City", "Manchester", "Etihad Stadium"], ["Leicester City", "Leicester", "King Power Stadium"], ["West Ham United", "London", "Olympic Stadium"], ["Everton", "Liverpool", "Goodison Park"], ["Wolverhampton Wanderers", "Wolverhampton", "Molineux Stadium"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Team", "Location", "Stadium"], "add_description": "The name of this table is Team_Location_Stadium, and the headers of this table are Team,Location,Stadium.", "source": "hybridqa", "answer_md5": "[('3745c5ef28397490cd0c48afc27e110b',)]"} +{"description": "To record the activation of smooth muscle cells, the data of 'Cell type', 'Organ/system', 'Activators ligands --> Gq-GPCRs', and 'Effects' were inserted into 'Smooth Muscle Cell Activation Table' with the information of platelets in the circulatory system being activated by the ligand prostaglandin E2, which inhibits aggregation.", "label": ["INSERT INTO `Smooth Muscle Cell Activation Table` (`Cell type`, `Organ/system`, `Activators ligands -- > G q - GPCRs`, `Effects`) VALUES ('platelets', 'circulatory system', 'prostaglandin E2', 'inhibit aggregation')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Smooth Muscle Cell Activation Table", "table_info": {"columns": [{"name": "Cell type", "type": "TEXT"}, {"name": "Organ/system", "type": "TEXT"}, {"name": "Activators ligands -- > G q - GPCRs", "type": "TEXT"}, {"name": "Effects", "type": "TEXT"}], "rows": [["smooth muscle cell ( gastrointestinal tract sphincters )", "digestive system", "prostaglandin F 2\u03b1 -- > thromboxanes", "contraction"], ["smooth muscle cells in : iris dilator muscle ( sensory system ) urethral sphincter ( urinary system ) uterus ( reproductive system ) arrector pili muscles ( integumentary system ) ureter ( urinary system ) urinary bladder ( urinary system )", "Various", "adrenergic agonists -- > \u03b11 receptor", "contraction"], ["smooth muscle cells in : iris constrictor muscle ciliary muscle", "sensory system", "acetylcholine -- > M3 receptor", "contraction"], ["smooth muscle cell ( vascular )", "circulatory system", "5-HT -- > 5-HT2A receptor adrenergic agonists -- > \u03b11 receptor", "vasoconstriction"], ["smooth muscle cell ( seminal tract )", "reproductive system", "adrenergic agonists -- > \u03b11 receptor", "ejaculation"], ["smooth muscle cell ( GI tract )", "digestive system", "5-HT -- > 5-HT2A or 5-HT2B receptor acetylcholine ( ACh ) -- > M3 receptor", "contraction"], ["smooth muscle cell ( bronchi )", "respiratory system", "5-HT -- > 5-HT2A receptor adrenergic agonists -- > \u03b2\u2082 receptor acetylcholine -- > M3 and M1 receptor", "bronchoconstriction"], ["proximal convoluted tubule cell", "kidney", "angiotensin II -- > AT1 receptor adrenergic agonists -- > \u03b11 receptor", "stimulate NHE3 -- > H secretion & Na reabsorption stimulate basolateral Na-K ATPase -- > Na reabsorption"], ["neurons in autonomic ganglia", "nervous system", "acetylcholine -- > M1 receptor", "EPSP"], ["neurons in CNS", "nervous system", "5-HT -- > 5-HT2A receptor glutamate -- > NMDA receptor", "neuronal excitation ( 5-HT ) memory ( glutamate )"], ["platelets", "circulatory system", "5-HT -- > 5-HT2A receptor", "aggregation"], ["ependymal cells ( choroid plexus )", "ventricular system", "5-HT -- > 5-HT2C receptor", "\u2191 cerebrospinal fluid secretion"], ["heart muscle", "circulatory system", "adrenergic agonists -- > \u03b21 receptor", "positive inotropic effect"], ["serous cells ( salivary gland )", "digestive system", "acetylcholine -- > M1 and M3 receptors adrenergic agonists -- > \u03b21 receptor", "\u2191secretion increase salivary potassium levels"], ["serous cells ( lacrimal gland )", "digestive system", "acetylcholine -- > M3 receptor", "\u2191secretion"], ["adipocyte", "digestive system / endocrine system", "adrenergic agonists -- > \u03b23 receptor", "glycogenolysis and gluconeogenesis"], ["hepatocyte", "digestive system", "adrenergic agonists -- > \u03b11 receptor", "glycogenolysis and gluconeogenesis"], ["sweat gland cells", "integumentary system", "adrenergic agonists -- > \u03b22 receptor", "\u2191secretion"], ["parietal cells", "digestive system", "acetylcholine -- > M3 receptors", "\u2191 gastric acid secretion"], ["cardiac muscle cells", "circulatory system", "adrenergic agonists -- > \u03b21 receptor", "positive chronotropic effect"], ["smooth muscle cells in bronchioles", "respiratory system", "acetylcholine -- > M3 receptor", "bronchodilation"], ["neurons in dorsal root ganglia", "nervous system", "capsaicin", "perception of pain"], ["hepatocyte", "digestive system", "insulin -- > insulin receptor", "glycogen synthesis"], ["smooth muscle cells in urinary bladder", "urinary system", "adrenergic agonists -- > \u03b23 receptor", "relaxation"], ["neurons in pre-ganglionic sympathetic nerves", "nervous system", "nicotine", "EPSP"], ["mast cells", "immune system", "histamine", "vasodilation"], ["smooth muscle cells in uterus", "reproductive system", "oxytocin -- > oxytocin receptor", "contraction"], ["pancreatic beta cells", "endocrine system", "glucose", "insulin secretion"], ["microglia", "nervous system", "ATP", "neuronal activation"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Cell type", "Organ/system", "Activators ligands -- > G q - GPCRs", "Effects"], "add_description": "The name of this table is Smooth Muscle Cell Activation Table, and the headers of this table are Cell type,Organ/system,Activators ligands -- > G q - GPCRs,Effects.", "source": "hybridqa", "answer_md5": "[('359c47faa3ef06797d66536b72cf5a18',)]"} +{"description": "LeBron James is an assistant coach for the Kentucky Wildcats team in the 2010 class and is being inserted into the Coaches table with respective Name, Class, Position, and Team values.", "label": ["INSERT INTO Coaches (Name, Class, Position, Team) VALUES ('LeBron James', '2010', 'Assistant Coach', 'Kentucky Wildcats')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Coaches", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Class", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}], "rows": [["Joe DeSantis", "1979", "Head Coach", "Quinnipiac Bobcats"], ["Greg Francis", "1997", "Head Coach", "Alberta Golden Bears"], ["Pete Gillen", "1968", "Head Coach", "Xavier Musketeers"], ["James Hanrahan", "1952", "Head Coach", "Fairfield Stags"], ["Nick Macarchuk", "1963", "Head Coach", "Fordham Rams"], ["Luke Murray", "2007", "Assistant Coach", "Xavier Musketeers"], ["Tim O'Toole", "1987", "Assistant Coach", "California Golden Bears"], ["Brendan Suhr", "1979", "Associate Head Coach", "LSU Tiger"], ["Keith Urgo", "2002", "Associate Head Coach", "Penn State Nittany Lions"], ["A. J. Wynder", "1987", "Head Coach", "Nassau Community College"], ["John Smith", "1995", "Head Coach", "Duke Blue Devils"], ["Sarah Johnson", "2003", "Assistant Coach", "UCLA Bruins"], ["Tom Davis", "1972", "Head Coach", "Iowa Hawkeyes"], ["Emily Brown", "2010", "Assistant Coach", "Stanford Cardinal"], ["Mike Jackson", "1989", "Head Coach", "North Carolina Tar Heels"], ["Karen Lee", "2005", "Assistant Coach", "Oregon State Beavers"], ["Mark Thompson", "1998", "Head Coach", "Kansas Jayhawks"], ["Gina Rodriguez", "2008", "Assistant Coach", "Texas Longhorns"], ["Sean Murphy", "1993", "Head Coach", "Michigan Wolverines"], ["Stephanie Kim", "2015", "Assistant Coach", "Ohio State Buckeyes"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Class", "Position", "Team"], "add_description": "The name of this table is Coaches, and the headers of this table are Name,Class,Position,Team.", "source": "hybridqa", "answer_md5": "[('42e399e0a9ec664141aea5316143274c',)]"} +{"description": "In the `Athlete Results` table, add a new row with the following values: Year is '2018', Competition is 'Lisbon Half Marathon', Venue is 'Lisbon, Portugal', Position is '1st', Event is 'Half marathon' and Notes is '1:09:12'.", "label": ["INSERT INTO `Athlete Results` (Year,Competition,Venue,Position,Event,Notes) VALUES ('2018','Lisbon Half Marathon','Lisbon, Portugal','1st','Half marathon','1:09:12')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Athlete Results", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Representing Portugal", "Representing Portugal", "Representing Portugal", "Representing Portugal", "Representing Portugal", "Representing Portugal"], ["2007", "European U23 Championships", "Debrecen, Hungary", "3rd", "3000 m st.", "9:42.47"], ["2007", "World Championships", "Osaka, Japan", "13th", "3000 m st.", "10:00.40"], ["2008", "World Cross Country Championships", "Edinburgh, United Kingdom", "50th", "Senior race (7.905 km)", "27:50"], ["2008", "World Cross Country Championships", "Edinburgh, United Kingdom", "8th", "Senior race - Team", "165 pts"], ["2008", "Olympic Games", "Beijing, China", "22nd (h)", "3000 m st.", "9:34.39"], ["2009", "European Indoor Championships", "Turin, Italy", "2nd", "3000 m", "8:48.18"], ["2009", "World Cross Country Championships", "Amman, Jordan", "16th", "Senior race (8 km)", "27:54"], ["2009", "World Cross Country Championships", "Amman, Jordan", "3rd", "Senior race - Team", "72 pts"], ["2009", "European Team Championships", "Leiria, Portugal", "7th", "1500 m", "4:12.94"], ["2009", "European Team Championships", "Leiria, Portugal", "4th", "3000 m st.", "9:43.99"], ["2009", "Universiade", "Belgrade, Serbia", "1st", "5000 m", "15:32.78"], ["2009", "Universiade", "Belgrade, Serbia", "1st", "3000 m st", "9:32.62"], ["2009", "Lusophony Games", "Lisbon, Portugal", "1st", "5000 m", "15.45.05"], ["2009", "World Championships in Athletics", "Berlin, Germany", "12th (h)", "3000 m st.", "9:28.64"], ["2009", "World Championships in Athletics", "Berlin, Germany", "10th", "5000 m", "15:12.22"], ["2009", "European Cross Country Championships", "Dublin, Ireland", "10th", "Senior race (8.018 km)", "28:32"], ["2009", "European Cross Country Championships", "Dublin, Ireland", "1st", "Team race", "25 pts"], ["2010", "World Indoor Championships", "Doha, Qatar", "6th", "3000 m", "8:55.34"], ["2010", "World Cross Country Championships", "Bydgoszcz, Poland", "27th", "Senior race (7.759 km)", "26:22"], ["2010", "European Championships", "Barcelona, Spain", "3rd", "5000 m", "14:54.71"], ["2010", "European Cross Country Championships", "Albufeira, Portugal", "9th", "Senior race (8.170 km)", "27:26"], ["2010", "European Cross Country Championships", "Albufeira, Portugal", "1st", "Senior race - Team", "19 pts"], ["2011", "European Indoor Championships", "Paris, France", "7th", "1500 m", "4:16.67"], ["2011", "Universiade", "Shenzhen, China", "2nd", "5000 m", "15:45.83"], ["2011", "World Championships", "Daegu, South Korea", "\u2013", "3000 m st.", "DQ"], ["2012", "Olympic Games", "London, United Kingdom", "14th", "10,000 m", "31:16.44"], ["2013", "European Indoor Championships", "Gothenburg, Sweden", "1st", "3000 m", "8:58.50"], ["2014", "European Championships", "Z\u00fcrich, Switzerland", "6th", "5000 m", "15:38.13"], ["2014", "New York City Marathon", "New York City, USA", "3rd", "Marathon", "2:25:59"], ["2015", "World Championships", "Beijing, China", "12th", "10,000 m", "32:06.14"], ["2016", "European Championships", "Amsterdam, Netherlands", "1st", "Half marathon", "1:10:19"], ["2018", "European Championships", "Berlin, Germany", "\u2013", "10,000 m", "DNF"], ["2017", "World Cross Country Championships", "Kampala, Uganda", "33rd", "Senior race (10 km)", "33:25"], ["2015", "European Cross Country Championships", "Hy\u00e8res, France", "11th", "Senior race (8.46 km)", "27:45"], ["2016", "Olympic Games", "Rio de Janeiro, Brazil", "9th", "3000 m st.", "9:24.17"], ["2018", "World Indoor Championships", "Birmingham, United Kingdom", "7th", "3000 m", "8:53.58"], ["2016", "World Half Marathon Championships", "Cardiff, United Kingdom", "11th", "Half marathon", "1:09:21"], ["2017", "Universiade", "Taipei, Taiwan", "3rd", "10000 m", "32:24.86"], ["2014", "European Team Championships", "Braunschweig, Germany", "3rd", "5000 m", "15:17.43"], ["2015", "Lusophony Games", "Goa, India", "1st", "1500 m", "4:17.25"], ["2010", "Universiade", "Shenzhen, China", "1st", "3000 m st", "9:52.19"], ["2016", "European Championships", "Amsterdam, Netherlands", "5th", "10000 m", "31:38.31"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is Athlete Results, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('4806e3452c43bb8ed8540a88255ee7d9',)]"} +{"description": "Add to 'Airport Information' the city 'Paris', country 'France', airport 'Charles de Gaulle Airport', IATA code 'CDG', and ICAO code 'LFPG'.", "label": ["INSERT INTO `Airport Information` (City, Country, Airport, IATA, ICAO) VALUES ('Paris', 'France', 'Charles de Gaulle Airport', 'CDG', 'LFPG')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Airport Information", "table_info": {"columns": [{"name": "City", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Airport", "type": "TEXT"}, {"name": "IATA", "type": "TEXT"}, {"name": "ICAO", "type": "TEXT"}], "rows": [["Aberdeen", "United Kingdom", "Aberdeen Airport", "ABZ", "EGPD"], ["Bergen", "Norway", "Bergen Airport, Flesland", "BGO", "ENBR"], ["Copenhagen", "Denmark", "Copenhagen Airport", "CPH", "EKCH"], ["Fagernes", "Norway", "Fagernes Airport, Leirin", "VBD", "ENFG"], ["Haugesund", "Norway", "Haugesund Airport, Karm\u00f8y", "HAU", "ENHD"], ["Molde", "Norway", "Molde Airport, \u00c5r\u00f8", "MOL", "ENML"], ["Oslo", "Norway", "Oslo Airport, Gardermoen", "OSL", "ENGM"], ["R\u00f8ros", "Norway", "R\u00f8ros Airport", "RRS", "ENRO"], ["Sandefjord", "Norway", "Sandefjord Airport, Torp", "TRF", "ENTO"], ["Stord", "Norway", "Stord Airport, S\u00f8rstokken", "SPR", "ENSO"], ["Trondheim", "Norway", "Trondheim Airport, V\u00e6rnes", "TRD", "ENVA"], ["Gda\u0144sk", "Poland", "Gda\u0144sk Lech Wa\u0142\u0119sa Airport", "GDN", "EPGD"], ["Paris", "France", "Charles de Gaulle Airport", "CDG", "LFPG"], ["Madrid", "Spain", "Adolfo Su\u00e1rez Madrid\u2013Barajas Airport", "MAD", "LEMD"], ["Berlin", "Germany", "Berlin Tegel Airport", "TXL", "EDDT"], ["Vienna", "Austria", "Vienna International Airport", "VIE", "LOWW"], ["Zurich", "Switzerland", "Zurich Airport", "ZRH", "LSZH"], ["Brussels", "Belgium", "Brussels Airport", "BRU", "EBBR"], ["Lisbon", "Portugal", "Lisbon Portela Airport", "LIS", "LPPT"], ["Athens", "Greece", "Athens International Airport", "ATH", "LGAV"], ["Stockholm", "Sweden", "Stockholm-Arlanda Airport", "ARN", "ESSA"], ["Helsinki", "Finland", "Helsinki-Vantaa Airport", "HEL", "EFHK"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["City", "Country", "Airport", "IATA", "ICAO"], "add_description": "The name of this table is Airport Information, and the headers of this table are City,Country,Airport,IATA,ICAO.", "source": "wikisql", "answer_md5": "[('4e07b024654d0f692e777c5bfbe9428c',)]"} +{"description": "The movie 'The King of Staten Island' was nominated for the Best Supporting Actress in a Motion Picture award at the 2020 Golden Globe Awards.", "label": ["INSERT INTO awards (Year, Award, Category, Work, Result) VALUES('2020', 'Golden Globe Awards', 'Best Supporting Actress in a Motion Picture', 'The King of Staten Island', 'Nominated')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "awards", "table_info": {"columns": [{"name": "Year", "type": "text"}, {"name": "Award", "type": "text"}, {"name": "Category", "type": "text"}, {"name": "Work", "type": "text"}, {"name": "Result", "type": "text"}], "rows": [["2001", "Gemini Awards", "Best Performance by an Actress in a Leading Role in a Dramatic Program or Mini-Series", "Lucky Girl", "Won"], ["2002", "Online Film Critics Society", "Best Cast in a Drama Series", "24", "Nominated"], ["2003", "Online Film Critics Society", "Best Cast in a Drama Series", "24", "Won"], ["2003", "Teen Choice Awards", "Choice TV : Female Breakout Star", "24", "Nominated"], ["2003", "Washington D.C. Area Film Critics Association Award", "Best Ensemble", "Love Actually", "Won"], ["2003", "Screen Actors Guild Awards", "Outstanding Performance by an Ensemble in a Drama Series", "24", "Nominated"], ["2003", "Online Film & Television Association Award", "Best Ensemble", "Love Actually", "Nominated"], ["2005", "MTV Movie Awards", "Best Kiss", "The Girl Next Door", "Nominated"], ["2005", "MTV Movie Awards", "Best Breakthrough Performance , Female", "The Girl Next Door", "Nominated"], ["2005", "Screen Actors Guild Awards", "Outstanding Performance by an Ensemble in a Drama Series", "24", "Nominated"], ["2005", "Teen Choice Awards", "Choice Movie Actress : Action/Thriller", "House of Wax", "Nominated"], ["2005", "Teen Choice Awards", "Choice Movie : Rumble", "House of Wax", "Nominated"], ["2006", "Spike Video Game Awards", "Best Female Interpretation of a Supporting Character", "24 : The Game", "Nominated"], ["2006", "Online Film & Television Association Award", "Best Cast in a Drama Series", "24", "Nominated"], ["2007", "Teen Choice Awards", "Choice Movie Actress : Horror/Thriller", "Captivity", "Nominated"], ["2008", "Golden Raspberry Awards", "Worst Actress", "Captivity", "Nominated"], ["2009", "Online Film & Television Association Award", "Best Cast in a Drama Series", "24", "Nominated"], ["2012", "Online Film & Television Association Award", "Best Ensemble in a Comedy series", "Happy Endings", "Nominated"], ["2010", "Teen Choice Awards", "Choice Movie Actress : Horror/Thriller", "The Ward", "Nominated"], ["2011", "Scream Awards", "Best Horror Actress", "The Ward", "Won"], ["2012", "People's Choice Awards", "Favorite TV Celebreality Star", "The Real Housewives of Beverly Hills", "Nominated"], ["2013", "British Academy Television Awards", "Best Supporting Actress", "The Hour", "Nominated"], ["2014", "Screen Actors Guild Awards", "Outstanding Performance by an Ensemble in a Comedy Series", "Happy Endings", "Won"], ["2015", "Critics' Choice Television Awards", "Best Supporting Actress in a Drama Series", "Hand of God", "Nominated"], ["2016", "Gold Derby Awards", "Best TV Ensemble", "Desperate Housewives", "Nominated"], ["2017", "Satellite Awards", "Best Supporting Actress \u2013 Television Series", "The Last Man on Earth", "Nominated"], ["2018", "Screen Actors Guild Awards", "Outstanding Performance by a Cast in a Motion Picture", "Three Billboards Outside Ebbing, Missouri", "Won"], ["2019", "Critics' Choice Movie Awards", "Best Actress in a Comedy", "Game Night", "Nominated"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Award", "Category", "Work", "Result"], "add_description": "The name of this table is awards, and the headers of this table are Year,Award,Category,Work,Result.", "source": "hybridqa", "answer_md5": "[('857d5e31bfd6ea5933f7ff276855be70',)]"} +{"description": "The Newcastle Northstars club has added 19-year-old Mia Garcia, a right-handed female forward, to their list of hockey players.", "label": ["INSERT INTO `Hockey Players` (`Name`, `Pos`, `S / G`, `Age`, `Club`) VALUES ('Mia Garcia', 'F', 'R', '19', 'Newcastle Northstars');"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Hockey Players", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Pos", "type": "CHAR"}, {"name": "S / G", "type": "CHAR"}, {"name": "Age", "type": "INT"}, {"name": "Club", "type": "TEXT"}], "rows": [["Zachary Boyle", "D", "L", "23", "Adelaide Adrenaline"], ["Jonathon Bremner", "F", "R", "29", "Melbourne Ice"], ["Wehebe Darge", "F", "L", "28", "CBR Brave"], ["Dayne Davis", "G", "L", "34", "Newcastle Northstars"], ["Hayden Dawes", "D", "R", "26", "CBR Brave"], ["Robert Haselhurst", "D", "R", "27", "Perth Thunder"], ["Robert Malloy", "F", "R", "33", "Newcastle Northstars"], ["Liam Manwarring", "F", "L", "20", "Newcastle Northstars"], ["Brendan McDowell", "F", "L", "27", "Melbourne Mustangs"], ["Austin McKenzie", "F", "R", "26", "Melbourne Ice"], ["Kai Miettinen", "F", "L", "24", "CBR Brave"], ["Patrick Nadin", "F", "R", "24", "Newcastle Northstars"], ["Tim Newmark", "D", "L", "26", "Sydney Bears"], ["Daniel Pataky", "D", "L", "24", "Sydney Ice Dogs"], ["Aiden Sillato", "F", "R", "20", "Sydney Ice Dogs"], ["Charlie Smart", "G", "L", "23", "Newcastle Northstars"], ["Vadim Virjassov", "F", "L", "33", "Melbourne Mustangs"], ["Kieren Webster", "F", "R", "22", "Perth Thunder"], ["Lliam Webster", "D", "L", "33", "Melbourne Ice"], ["Jamie Woodman", "D", "R", "25", "Perth Thunder"], ["Luke Brown", "D", "L", "28", "Sydney Bears"], ["David Foster", "F", "R", "31", "Melbourne Ice"], ["Lachlan Harper", "F", "L", "25", "Adelaide Adrenaline"], ["Adam Johnson", "G", "R", "30", "Newcastle Northstars"], ["Oliver Kent", "D", "R", "23", "CBR Brave"], ["Nathan Lee", "D", "L", "27", "Perth Thunder"], ["Jack Mitchell", "F", "R", "22", "Melbourne Mustangs"], ["Ryan Nguyen", "F", "L", "29", "CBR Brave"], ["Oscar Patel", "F", "L", "21", "Sydney Ice Dogs"], ["Tom Richardson", "D", "R", "32", "Melbourne Ice"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Pos", "S / G", "Age", "Club"], "add_description": "The name of this table is Hockey Players, and the headers of this table are Name,Pos,S / G,Age,Club.", "source": "hybridqa", "answer_md5": "[('512226ba65d6f2edaab4791993c9b3be',)]"} +{"description": "Insert the car specifications of Model A from 1927 to 1931, which has an inline-4 cylinder engine with a 3.3-liter capacity. The car's power is 40 horsepower and it can reach a maximum speed of 105 kilometers per hour.", "label": ["INSERT INTO `Car Specifications` (`Type`, `Construction period`, `Cylinder`, `Capacity`, `Power`, `Vmax`) VALUES ('Model A', '1927-1931', 'inline-4', '3.3 L', '40 hp', '105 km/h')"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Car Specifications", "table_info": {"columns": [{"name": "Type", "type": "TEXT"}, {"name": "Construction period", "type": "TEXT"}, {"name": "Cylinder", "type": "TEXT"}, {"name": "Capacity", "type": "TEXT"}, {"name": "Power", "type": "TEXT"}, {"name": "Vmax", "type": "TEXT"}], "rows": [["10\u00a0PS (7\u00a0kW; 10\u00a0hp)", "1901\u20131902", "straight-2", "1.527 cc", "18 PS (13,2 kW)", "50\u00a0km/h (31\u00a0mph)"], ["8/14 PS", "1902\u20131905", "straight-2", "1.527 cc", "14 PS (10,3 kW)", "50\u00a0km/h (31\u00a0mph)"], ["20\u00a0PS (15\u00a0kW; 20\u00a0hp)", "1904\u20131905", "straight-4", "7.946 cc", "45 PS (33 kW)", "85\u00a0km/h (53\u00a0mph)"], ["P4 (11/22 PS)", "1905\u20131910", "straight-4.", "3.054 cc", "22 PS (16,2 kW)", "70\u00a0km/h (43\u00a0mph)"], ["P2 (9/12 PS)", "1906\u20131907", "straight-2", "2.281 cc", "16 PS (11,8 kW)", "55\u00a0km/h (34\u00a0mph)"], ["P4-1 (24/36 PS)", "1906\u20131910", "straight-4", "5.880 cc", "40 PS (29 kW)", "80\u00a0km/h (50\u00a0mph)"], ["P6 (34/60 PS)", "1906\u20131911", "straight-6", "8.820 cc", "60 PS (44 kW)", "95\u00a0km/h (59\u00a0mph)"], ["G4 (6/12 PS)", "1907\u20131911", "straight-4", "1.500 cc", "12 PS (8,8 kW)", "60\u00a0km/h (37\u00a0mph)"], ["PK4 (11/20 PS)", "1909\u20131912", "straight-4", "2.544 cc", "20 PS (14,7 kW)", "70\u00a0km/h (43\u00a0mph)"], ["C1 (6/18 PS)", "1909\u20131915", "straight-4", "1.546 cc", "18 PS (13,2 kW)", "70\u00a0km/h (43\u00a0mph)"], ["B1 (6/16 PS)", "1910\u20131912", "straight-4", "1.556 cc", "16 PS (11,8 kW)", "65\u00a0km/h (40\u00a0mph)"], ["B6 (9/22 PS)", "1912\u20131914", "straight-4", "4.900 cc", "45 PS (33 kW)", "95\u00a0km/h (59\u00a0mph)"], ["C2 (10/28 PS)", "1913\u20131914", "straight-4", "2.412 cc", "28 PS (20,6 kW)", "75\u00a0km/h (47\u00a0mph)"], ["C5 (6/18 PS)", "1915\u20131919", "straight-4", "1.546 cc", "15 PS (11 kW)", "70\u00a0km/h (43\u00a0mph)"], ["D2 (6/18 PS)", "1919\u20131920", "straight-4", "1.593 cc", "18 PS (13,2 kW)", "70\u00a0km/h (43\u00a0mph)"], ["D6 (19/55 PS)", "1919\u20131921", "straight-6", "4.960 cc", "55 PS (40 kW)", "100\u00a0km/h (62\u00a0mph)"], ["D7 (42/120 PS)", "1919\u20131921", "straight-6", "11.160 cc", "120 PS (88 kW)", "160\u00a0km/h (99\u00a0mph)"], ["D3 (8/24 PS)", "1920\u20131923", "straight-4", "2.120 cc", "24 PS (17,6 kW)", "70\u00a0km/h (43\u00a0mph)"], ["D5 (12/36 PS)", "1920\u20131923", "straight-6", "3.107 cc", "36 PS (26,5 kW)", "80\u00a0km/h (50\u00a0mph)"], ["D9 (8/32 PS)", "1923\u20131924", "straight-4", "2.290 cc", "32 PS (23,5 kW)", "90\u00a0km/h (56\u00a0mph)"], ["D12 (12/45 PS)", "1923\u20131924", "straight-6", "3.107 cc", "45 PS (33 kW)", "100\u00a0km/h (62\u00a0mph)"], ["D10 (10/50 PS)", "1924\u20131925", "straight-4", "2.580 cc", "50 PS (37 kW)", "120\u00a0km/h (75\u00a0mph)"], ["D9V (9/32 PS)", "1925\u20131927", "straight-4", "2.290 cc", "32 PS (23,5 kW)", "90\u00a0km/h (56\u00a0mph)"], ["D12V (13/55 PS)", "1925\u20131928", "straight-6", "3.386 cc", "55 PS (40 kW)", "100\u00a0km/h (62\u00a0mph)"], ["F6 (6/30 PS)", "1927\u20131928", "straight-4", "1.570 cc", "30 PS (22 kW)", "70\u00a0km/h (43\u00a0mph)"], ["8 Typ S 8 (8/45 PS)", "1928", "straight-8", "1.999 cc", "45 PS (33 kW)", "85\u00a0km/h (53\u00a0mph)"], ["8 Typ G 14 (14/70 PS)", "1928", "straight-8", "3.633 cc", "70 PS (51 kW)", "100\u00a0km/h (62\u00a0mph)"], ["8 Typ S 10 (10/50 PS)", "1928\u20131930", "straight-8", "2.464 cc", "50 PS (37 kW)", "90\u00a0km/h (56\u00a0mph)"], ["Gigant G 15 K (15/80 PS)", "1928\u20131933", "straight-8", "3.974 cc", "80 PS (59 kW)", "110\u00a0km/h (68\u00a0mph)"], ["Gigant G 15 (15/80 PS)", "1928\u20131933", "straight-8", "3.974 cc", "80 PS (59 kW)", "100\u00a0km/h (62\u00a0mph)"], ["Repr\u00e4sentant P 20 (20/100 PS)", "1930\u20131933", "straight-8", "4.906 cc", "100 PS (74 kW)", "120\u00a0km/h (75\u00a0mph)"], ["Marschall M 12 (12/60 PS)", "1930\u20131934", "straight-8", "2.963 cc", "60 PS (44 kW)", "90\u00a0km/h (56\u00a0mph)"], ["V 5", "1931\u20131932", "V4", "1.168 cc", "25 PS (18,4 kW)", "80\u00a0km/h (50\u00a0mph)"], ["V 5 Sport", "1931\u20131932", "V4", "1.168 cc", "30 PS (22 kW)", "100\u00a0km/h (62\u00a0mph)"], ["R 140", "1932\u20131933", "straight-4", "1.355 cc", "30 PS (22 kW)", "85\u00a0km/h (53\u00a0mph)\u2013105\u00a0km/h (65\u00a0mph)"], ["R 140", "1933\u20131934", "straight-4", "1.466 cc", "30 PS (22 kW)", "85\u00a0km/h (53\u00a0mph)\u2013105\u00a0km/h (65\u00a0mph)"], ["R 150", "1934\u20131935", "straight-4", "1.466 cc", "35 PS (25,7 kW)", "90\u2013110 km/h"], ["Greif V8", "1934\u20131937", "V8", "2.489 cc", "55 PS (40 kW)", "110\u00a0km/h (68\u00a0mph)"], ["R 180", "1935", "straight-4", "1.769 cc", "45 PS (33 kW)", "105\u00a0km/h (65\u00a0mph)"], ["Greif V8 Sport", "1935\u20131937", "V8", "2.489 cc", "57 PS (42 kW)", "120\u00a0km/h (75\u00a0mph)"], ["Greif Junior", "1936\u20131939", "flat-4", "1.484 cc", "34 PS (25 kW)", "100\u00a0km/h (62\u00a0mph)"], ["Sedina", "1937\u20131940", "straight-4", "2.406 cc", "55 PS (40 kW)", "110\u00a0km/h (68\u00a0mph)"], ["Arkona", "1937\u20131940", "straight-6", "3.610 cc", "80 PS (59 kW)", "120\u00a0km/h (75\u00a0mph)\u2013140\u00a0km/h (87\u00a0mph)"], ["6 Typ S 6 (6/40 PS)", "1926\u20131927", "straight-6", "1.986 cc", "40 PS (29 kW)", "90\u00a0km/h (56\u00a0mph)"], ["10 Typ G 12 (12/55 PS)", "1929\u20131930", "straight-6", "2.580 cc", "55 PS (40 kW)", "100\u00a0km/h (62\u00a0mph)"], ["12 Typ S 12 (12/65 PS)", "1930\u20131931", "straight-6", "3.107 cc", "65 PS (48 kW)", "115\u00a0km/h (71\u00a0mph)"], ["15 Typ G 15 (15/75 PS)", "1933\u20131934", "straight-6", "3.610 cc", "75 PS (55 kW)", "120\u00a0km/h (75\u00a0mph)"], ["25", "1934\u20131935", "straight-6", "3.849 cc", "80 PS (59 kW)", "130\u00a0km/h (81\u00a0mph)"], ["260 D", "1936\u20131940", "straight-6", "3.770 cc", "85 PS (63 kW)", "135\u00a0km/h (84\u00a0mph)"], ["320 Convertible-D", "1937\u20131938", "straight-6", "3.208 cc", "80 PS (59 kW)", "130\u00a0km/h (81\u00a0mph)"], ["170 V Roadster", "1938\u20131941", "straight-4", "1.697 cc", "39 PS (29 kW)", "100\u00a0km/h (62\u00a0mph)"], ["220 S Cabriolet A", "1956\u20131959", "straight-6", "2.195 cc", "100 PS (74 kW)", "175\u00a0km/h (109\u00a0mph)"], ["190 E 2.3-16", "1984\u20131986", "straight-4", "2.299 cc", "185 PS (136 kW)", "230\u00a0km/h (143\u00a0mph)"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Type", "Construction period", "Cylinder", "Capacity", "Power", "Vmax"], "add_description": "The name of this table is Car Specifications, and the headers of this table are Type,Construction period,Cylinder,Capacity,Power,Vmax.", "source": "wikitq", "answer_md5": "[('92a52738710d8c326c9da9153862b0de',)]"} +{"description": "The athlete achieved 4th position in the World Championships held in Beijing, China in 2015 with a jump of 5.90 m. The achievement has been recorded in the Athletic Achievements database with the relevant information.", "label": ["INSERT INTO `Athletic Achievements` (Year, Competition, Venue, Position, Notes) VALUES ('2015', 'World Championships', 'Beijing, China', '4th', '5.90 m')"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Athletic Achievements", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1999", "World Youth Championships", "Bydgoszcz, Poland", "13th (q)", "4.60 m"], ["2001", "European Junior Championships", "Grosseto, Italy", "7th", "5.15 m"], ["2002", "World Junior Championships", "Kingston, Jamaica", "8th", "5.30 m"], ["2003", "European U23 Championships", "Bydgoszcz, Poland", "13th (q)", "5.20 m"], ["2005", "European U23 Championships", "Erfurt, Germany", "7th", "5.50 m"], ["2005", "Universiade", "Izmir, Turkey", "5th", "5.50 m"], ["2006", "World Indoor Championships", "Moscow, Russia", "10th (q)", "5.65 m"], ["2006", "European Championships", "Gothenburg, Sweden", "5th", "5.65 m"], ["2007", "European Indoor Championships", "Birmingham, United Kingdom", "16th (q)", "5.40 m"], ["2008", "Olympic Games", "Beijing, China", "11th", "5.45 m"], ["2010", "European Championships", "Barcelona, Spain", "3rd", "5.75 m"], ["2012", "European Championships", "Helsinki, Finland", "\u2013", "NM"], ["2002", "World Junior Championships", "Kingston, Jamaica", "8th", "5.30 m"], ["2005", "European U23 Championships", "Erfurt, Germany", "7th", "5.50 m"], ["2012", "European Championships", "Helsinki, Finland", "\u2013", "NM"], ["2008", "Olympic Games", "Beijing, China", "11th", "5.45 m"], ["1999", "World Youth Championships", "Bydgoszcz, Poland", "13th (q)", "4.60 m"], ["2001", "European Junior Championships", "Grosseto, Italy", "7th", "5.15 m"], ["2003", "European U23 Championships", "Bydgoszcz, Poland", "13th (q)", "5.20 m"], ["2005", "Universiade", "Izmir, Turkey", "5th", "5.50 m"], ["2010", "European Championships", "Barcelona, Spain", "3rd", "5.75 m"], ["2006", "World Indoor Championships", "Moscow, Russia", "10th (q)", "5.65 m"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Competition", "Venue", "Position", "Notes"], "add_description": "The name of this table is Athletic Achievements, and the headers of this table are Year,Competition,Venue,Position,Notes.", "source": "wikitq", "answer_md5": "[('f2aa0adb80b62bdd2923583889ca64e8',)]"} +{"description": "Insert 'Jane Smith' into Alumni with values of 'Theo' for School, 'PhD' for Degree, '2010' for Year, and 'Theology professor' for Description.", "label": ["INSERT INTO Alumni (Name, School, Degree, Year, Description) VALUES ('Jane Smith', 'Theo', 'PhD', '2010', 'Theology professor')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Alumni", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "School", "type": "TEXT"}, {"name": "Degree", "type": "TEXT"}, {"name": "Year", "type": "INT"}, {"name": "Description", "type": "TEXT"}], "rows": [["William F. Anderson", "Theo", "BD", "1887", "Methodist bishop"], ["Henry Appenzeller", "Theo", "BD", "1885", "missionary who helped introduce Christianity in Korea"], ["Thomas J. Aquilino", "CLA", "BA", "1962", "federal judge on the United States Court of International Trade"], ["Raymond LeRoy Archer", "Theo", "MA", "1923", "Methodist bishop"], ["David B. Audretsch", "CLA", "BA", "1976", "German and American economist"], ["Albert Baez", "CLA", "BA", "1933", "Mexican-American physicist , and father of singers Joan Baez and Mimi Fari\u00f1a"], ["Holly Bakke", "CLA", "BA", "1973", "New Jersey Commissioner of Banking and Insurance"], ["Joseph Blotner", "CLA", "BA", "1947", "biographer of William Faulkner"], ["Clint Bolick", "CLA", "BA", "1979", "founder of the Institute for Justice"], ["Calvin O. Butts", "Theo", "DMin", "1982", "pastor of Abyssinian Baptist Church and president of State University of New York at Old Westbury"], ["Charles I. Carpenter", "Theo", "BD", "1931", "first Chief of Chaplains of the U.S. Air Force"], ["Kathy Chan", "CLA", "BA", "", "Silicon Valley entrepreneur and investor"], ["James E. Cheek", "Grad", "PhD", "1962", "theology professor and president of Howard University"], ["Emerson Stephen Colaw", "Theo", "BD", "1947", "Methodist bishop"], ["Deedee Corradini", "CLA", "BA", "1965", "mayor of Salt Lake City ; president of the US Conference of Mayors , the International Women 's Forum , and Women 's Ski Jumping USA"], ["Fred Pierce Corson", "Theo", "BD", "1920", "Methodist bishop and president of Dickinson College"], ["John T. Cunningham", "CLA", "BA", "1938", "journalist and historian"], ["Peter Deunov", "Theo", "BD", "1892", "Bulgarian spiritual leader and founder of the Universal White Brotherhood"], ["Damon DiMarco", "CLA", "BA", "1993", "author and oral historian"], ["Joseph DiSarro", "Grad", "MA", "1972", "political analyst and professor at Washington & Jefferson College"], ["Alexander Armstrong", "Eng", "MEng", "2014", "British sailor and member of the Volvo Ocean Race team"], ["Laura Bates", "CLA", "BA", "2007", "feminist writer and founder of the Everyday Sexism Project"], ["Sandra L. Bem", "Grad", "PhD", "1976", "feminist psychologist and creator of the Bem Sex Role Inventory"], ["Grace Lee Boggs", "Eng", "BS", "1935", "Chinese-American activist and philosopher"], ["Ethan Brown", "CLA", "BA", "1993", "author and investigative journalist"], ["Peter P. Chen", "Grad", "PhD", "1971", "computer scientist and creator of the Entity\u2013relationship model"], ["Rita Colwell", "CLA", "BA", "1956", "microbiologist and former director of the National Science Foundation"], ["Florence Ellinwood Allen", "Law", "LLB", "1913", "first woman to serve as a judge on a US federal appellate court"], ["Robert H. Goddard", "Eng", "BS", "1908", "rocket scientist and pioneer of spaceflight"], ["Kiehl M. Lugo", "Theo", "MDiv", "2019", "LGBTQ+ rights activist and founder of the organization Queer Tribes NYC"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "School", "Degree", "Year", "Description"], "add_description": "The name of this table is Alumni, and the headers of this table are Name,School,Degree,Year,Description.", "source": "hybridqa", "answer_md5": "[('bef1f022c99d77f48548d8f3a1b21b02',)]"} +{"description": "The data for Truro RFC's ground, town/village, and previous season ranking have been inserted into the rugby_teams table with values St Clements Hill, Truro, and 8th, respectively.", "label": ["INSERT INTO rugby_teams (Team, Ground, `Town/Village`, `Previous season`) VALUES ('Truro RFC', 'St Clements Hill', 'Truro', '8th')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "rugby_teams", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "Ground", "type": "TEXT"}, {"name": "Town/Village", "type": "TEXT"}, {"name": "Previous season", "type": "TEXT"}], "rows": [["Camborne School of Mines", "Memorial Park , Kernick Road", "Penryn", "3rd"], ["Helston", "King George V Playing Field", "Helston", "6th"], ["Illogan Park", "Paynters Lane Playing Field", "Illogan", "promoted from Tribute Cornwall 2"], ["Newquay Hornets", "Newquay Sports Ground", "Newquay", "relegated from Tribute Cornwall/Devon League"], ["Perranporth", "Ponsmere Valley", "Perranporth", "4th"], ["Roseland", "Philleigh Rugby Field", "Philleigh", "7th"], ["Stithians", "Playing Field", "Stithians", "5th"], ["Veor", "Wheal Gerry", "Camborne", "relegated from Tribute Cornwall/Devon League"], ["Camborne", "Recreation Ground", "Camborne", "2nd"], ["Redruth", "The Recreation Ground, Redruth", "Redruth", "1st"], ["St. Austell", "Tregorrick Park", "St. Austell", "4th"], ["Truro", "Truro College", "Truro", "6th"], ["Penryn", "Jubilee Playing Fields, Penryn", "Penryn", "promoted from Tribute Cornwall 2"], ["Liskeard-Looe", "Lux Park, Liskeard", "Liskeard", "relegated from Tribute Cornwall/Devon League"], ["Bude", "Burnview, Bude", "Bude", "3rd"], ["Saltash", "Moorlands Lane, Saltash", "Saltash", "5th"], ["Falmouth", "The Rec, Falmouth", "Falmouth", "8th"], ["Wadebridge", "The Molesworth Field, Egloshayle, Wadebridge", "Wadebridge", "7th"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Team", "Ground", "Town/Village", "Previous season"], "add_description": "The name of this table is rugby_teams, and the headers of this table are Team,Ground,Town/Village,Previous season.", "source": "hybridqa", "answer_md5": "[('286996ab6f7836b1e50dbc1de9bebf10',)]"} +{"description": "Insert a record into the HMAS_ships table with the following values- Name: HMAS Newcastle, Type: Frigate, Class: Adelaide, Dates: 2000-2021, and Notes: null.", "label": ["INSERT INTO HMAS_ships (Name, Type, Class, Dates, Notes) VALUES ('HMAS Newcastle', 'Frigate', 'Adelaide', '2000-2021', '')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "HMAS_ships", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}, {"name": "Class", "type": "TEXT"}, {"name": "Dates", "type": "DATE"}, {"name": "Notes", "type": "TEXT"}], "rows": [["HMAS Labuan", "Landing ship", "LST ( 3 )", "1946-1955", "from Royal Navy"], ["HMAS Labuan", "Landing craft", "Balikpapan", "1973-2014", ""], ["HMAS Lachlan", "Frigate", "River", "1945-1949", "to New Zealand"], ["HMAS Ladava", "Patrol boat", "Attack", "1968-1975", "to Papua New Guinea"], ["HMAS Lae", "Landing ship", "LST ( 3 )", "1946-1955", "from Royal Navy"], ["HMAS Lae", "Patrol boat", "Attack", "1968-1975", "to Papua New Guinea"], ["HMAS Latrobe", "Corvette", "Bathurst", "1942-1956", ""], ["HMAS Launceston", "Corvette", "Bathurst", "1942-1946", "to Turkey"], ["HMAS Launceston", "Patrol boat", "Fremantle", "1982-2006", ""], ["HMAS Lismore", "Corvette", "Bathurst", "1941-1946", "to Netherlands"], ["HMAS Lithgow", "Corvette", "Bathurst", "1941-1956", ""], ["HMAS Lonsdale", "Torpedo boat", "", "1901-1912", "from colonial navy of Victoria"], ["HMAS LST 3008", "Landing ship", "LST ( 3 )", "1946-1950", "from Royal Navy"], ["HMAS LST 3014", "Landing ship", "LST ( 3 )", "1946-1950", "from Royal Navy"], ["HMAS LST 3022", "Landing ship", "LST ( 3 )", "1946-1950", "from Royal Navy"], ["HMAS Lamington", "Destroyer", "L", "1941-1943", "sunk by Japanese submarine"], ["HMAS Larrakia", "Patrol boat", "Armidale", "2005-2020", "retired from service"], ["HMAS Launceston", "Frigate", "Anzac", "1995-present", "currently in active service"], ["HMAS Leander", "Cruiser", "Leander", "1931-1945", "loaned to Royal Navy"], ["HMAS Leeuwin", "Training ship", "", "1960-1984", "converted from passenger liner"], ["HMAS Maitland", "Minesweeper", "Bathurst", "1942-1947", "sold to Indonesian Navy"], ["HMAS Manoora", "Amphibious transport", "LPA", "1994-2012", "sold to Philippines Navy"], ["HMAS Melbourne", "Aircraft carrier", "Melbourne", "1955-1982", "collided with USS Frank E. Evans"], ["HMAS Melbourne", "Frigate", "Anzac", "1992-2022", "to be decommissioned"], ["HMAS Merchant", "Merchant ship", "", "1940-1946", "requisitioned for war effort"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Type", "Class", "Dates", "Notes"], "add_description": "The name of this table is HMAS_ships, and the headers of this table are Name,Type,Class,Dates,Notes.", "source": "hybridqa", "answer_md5": "[('e967f773fa72df3f0b30c01b75ca41f3',)]"} +{"description": "The Indiana High School Football Teams table will have a new record with the values: Homestead for School, Spartans for Mascot, Southwest Allen County Schools for School Corp., 2,600 for Size, 6A (6A) for IHSAA Class (Football), 1971 for Year Joined, and none (new school) for Other Conferences.", "label": ["INSERT INTO `Indiana High School Football Teams` (School, Mascot, `School Corp.`, Size, `IHSAA Class (Football)`, `Year Joined`, `Other Conferences`) VALUES ('Homestead', 'Spartans', 'Southwest Allen County Schools', '2,600', '6A (6A)', '1971', 'none (new school)')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Indiana High School Football Teams", "table_info": {"columns": [{"name": "School", "type": "TEXT"}, {"name": "Mascot", "type": "TEXT"}, {"name": "School Corp.", "type": "TEXT"}, {"name": "Size", "type": "TEXT"}, {"name": "IHSAA Class (Football)", "type": "TEXT"}, {"name": "Year Joined", "type": "TEXT"}, {"name": "Other Conferences", "type": "TEXT"}], "rows": [["Bishop Dwenger", "Saints", "R.C.D. FWSB", "1,025", "3A (4A)", "1965", "none (new school)"], ["Bishop Luers", "Knights", "R.C.D. FWSB", "590", "2A (3A)", "1960", "none (new school)"], ["Concordia Lutheran", "Cadets", "Missouri Synod", "675", "3A (3A)", "1952-55 1965", "new school 1952 NE Indiana (1955\u201375)"], ["North Side", "Redskins", "F.W.C.S.", "1,683", "4A (5A)", "1934", "NE IN 1927-40 NIAC 1942-65"], ["Northrop", "Bruins", "F.W.C.S.", "2,181", "4A (6A)", "1971", "none (new school)"], ["Snider", "Panthers", "F.W.C.S.", "1,865", "4A (5A)", "1965", "none (new school)"], ["South Side", "Archers", "F.W.C.S.", "1,479", "4A (4A)", "1934", "NE IN 1927-40"], ["Wayne", "Generals", "F.W.C.S.", "1,504", "4A (5A)", "1971", "none (new school)"], ["Carroll", "Chargers", "NACS", "1,200", "5A (6A)", "1967", "none (new school)"], ["Homestead", "Spartans", "SACS", "2,000", "6A (6A)", "1983", "none (new school)"], ["Leo", "Lions", "EACS", "700", "3A (2A)", "1965", "none (new school)"], ["New Haven", "Bulldogs", "EACS", "1,100", "4A (4A)", "1950", "new school 1950 NE8"], ["East Noble", "Knights", "EACS", "1,500", "4A (4A)", "1970", "NE8 2004-12 NECC 1935-2003"], ["Adams Central", "Jets", "MSD Adams", "350", "1A (1A)", "1965", "ACAC 1948-54 NE IN 1966-2005"], ["Southern Wells", "Raiders", "S.W.W.S.", "225", "1A (1A)", "1966", "MEC 1960-66 NE IN 1967"], ["Garrett", "Railroaders", "GCS", "800", "3A (2A)", "1956", "ACAC 1950-65 NE8 2002-03 NECC 1927-49 1966-2001"], ["Heritage", "Patriots", "EACS", "600", "2A (3A)", "1965", "NECC 2004-12 ACAC 1970-2003"], ["Whitko", "Wildcats", "WCS", "450", "2A (2A)", "1965", "TRC 2015-19 NCC 1984-2014 NECC 1935-83"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["School", "Mascot", "School Corp.", "Size", "IHSAA Class (Football)", "Year Joined", "Other Conferences"], "add_description": "The name of this table is Indiana High School Football Teams, and the headers of this table are School,Mascot,School Corp.,Size,IHSAA Class (Football),Year Joined,Other Conferences.", "source": "wikisql", "answer_md5": "[('3125ae3a959845e0c2d0b89d6a2a8711',)]"} +{"description": "The Tour de France Winners by Stage table should be updated with the following data: Year: 1998, Stage: 20, Start of stage: Aix-les-Bains, Distance (km): 149.5, Category of climb: HC, Stage winner: Marco Pantani, Nationality: Italy, Yellow jersey: Marco Pantani, Bend: 25", "label": ["INSERT INTO `Tour de France Winners by Stage` (`Year`, `Stage`, `Start of stage`, `Distance (km)`, `Category of climb`, `Stage winner`, `Nationality`, `Yellow jersey`, `Bend`) VALUES ('1998', '20', 'Aix-les-Bains', '149.5', 'HC', 'Marco Pantani', 'Italy', 'Marco Pantani', '25')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Tour de France Winners by Stage", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Stage", "type": "TEXT"}, {"name": "Start of stage", "type": "TEXT"}, {"name": "Distance (km)", "type": "TEXT"}, {"name": "Category of climb", "type": "TEXT"}, {"name": "Stage winner", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Yellow jersey", "type": "TEXT"}, {"name": "Bend", "type": "TEXT"}], "rows": [["2013 \u2020", "18", "Gap", "172.5", "HC", "Christophe Riblon", "France", "Chris Froome", "15"], ["2011", "19", "Modane", "109.5", "HC", "Pierre Rolland", "France", "Andy Schleck", "16"], ["2008", "17", "Embrun", "210.5", "HC", "Carlos Sastre", "Spain", "Carlos Sastre", "17"], ["2006", "15", "Gap", "187", "HC", "Fr\u00e4nk Schleck", "Luxembourg", "Floyd Landis", "18"], ["2004", "16", "Bourg-d'Oisans", "15.5 ( ITT )", "HC", "Lance Armstrong", "United States", "Lance Armstrong", "19"], ["2003", "8", "Sallanches", "219", "HC", "Iban Mayo", "Spain", "Lance Armstrong", "20"], ["2001", "10", "Aix-les-Bains", "209", "HC", "Lance Armstrong", "United States", "Fran\u00e7ois Simon", "21"], ["1999", "10", "Sestri\u00e8res", "220.5", "HC", "Giuseppe Guerini", "Italy", "Lance Armstrong", "1"], ["1997", "13", "Saint-\u00c9tienne", "203.5", "HC", "Marco Pantani", "Italy", "Jan Ullrich", "2"], ["1995", "10", "Aime \u2013 La Plagne", "162.5", "HC", "Marco Pantani", "Italy", "Miguel Indurain", "3"], ["1994", "16", "Valr\u00e9as", "224.5", "HC", "Roberto Conti", "Italy", "Miguel Indurain", "4"], ["1992", "14", "Sestri\u00e8res", "186.5", "HC", "Andrew Hampsten", "United States", "Miguel Indurain", "5"], ["1991", "17", "Gap", "125", "HC", "Gianni Bugno", "Italy", "Miguel Indurain", "6"], ["1990", "11", "Saint-Gervais \u2013 Mont Blanc", "182.5", "HC", "Gianni Bugno", "Italy", "Ronan Pensec", "7"], ["1989", "17", "Brian\u00e7on", "165", "HC", "Gert-Jan Theunisse", "Netherlands", "Laurent Fignon", "8"], ["1988", "12", "Morzine", "227", "HC", "Steven Rooks", "Netherlands", "Pedro Delgado", "9"], ["1987", "20", "Villard-de-Lans", "201", "HC", "Federico Echave", "Spain", "Pedro Delgado", "10"], ["1986", "18", "Brian\u00e7on \u2013 Serre Chevalier", "182.5", "HC", "Bernard Hinault", "France", "Greg LeMond", "11"], ["1984", "17", "Grenoble", "151", "HC", "Luis Herrera", "Colombia", "Laurent Fignon", "12"], ["1983", "17", "La Tour-du-Pin", "223", "HC", "Peter Winnen", "Netherlands", "Laurent Fignon", "13"], ["1982", "16", "Orci\u00e8res-Merlette", "123", "HC", "Beat Breu", "Switzerland", "Bernard Hinault", "14"], ["1981", "19", "Morzine", "230.5", "HC", "Peter Winnen", "Netherlands", "Bernard Hinault", "15"], ["1979 *", "18", "Alpe d'Huez", "118.5", "HC", "Joop Zoetemelk", "Netherlands", "Bernard Hinault", "16"], ["1979 *", "17", "Les Menuires", "166.5", "HC", "Joaquim Agostinho", "Portugal", "Bernard Hinault", "17"], ["1978", "16", "Saint-\u00c9tienne", "240.5", "1", "Hennie Kuiper", "Netherlands", "Joop Zoetemelk", "18"], ["1977", "17", "Chamonix", "184.5", "1", "Hennie Kuiper", "Netherlands", "Bernard Th\u00e9venet", "19"], ["1976", "9", "Divonne-les-Bains", "258", "1", "Joop Zoetemelk", "Netherlands", "Lucien Van Impe", "20"], ["2014", "12", "Bourg-en-Bresse", "185.5", "HC", "Maciej Paterski", "Poland", "Vincenzo Nibali", "22"], ["2012", "14", "Limoux", "191", "HC", "Luis Le\u00f3n S\u00e1nchez", "Spain", "Bradley Wiggins", "23"], ["2010", "18", "Pau", "198", "HC", "Sergei Ivanov", "Russia", "Andy Schleck", "24"], ["2009", "10", "Saint-Gaudens", "237.5", "HC", "Pierrick F\u00e9drigo", "France", "Alberto Contador", "25"], ["2007", "11", "Montpellier", "167", "HC", "Mauricio Soler", "Colombia", "Michael Rasmussen", "26"], ["2005", "20", "Courchevel", "130", "HC", "Roberto Heras", "Spain", "Lance Armstrong", "27"], ["2002", "15", "Les Deux Alpes", "226.5", "HC", "Laurent Jalabert", "France", "Lance Armstrong", "28"], ["2000", "16", "Courchevel", "58", "HC", "Marco Pantani", "Italy", "Lance Armstrong", "29"], ["1998", "15", "Le Grand-Bornand", "149", "HC", "Marco Pantani", "Italy", "Jan Ullrich", "30"], ["1996", "16", "La Plagne", "190", "HC", "Bjarne Riis", "Denmark", "Miguel Indurain", "31"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Stage", "Start of stage", "Distance (km)", "Category of climb", "Stage winner", "Nationality", "Yellow jersey", "Bend"], "add_description": "The name of this table is Tour de France Winners by Stage, and the headers of this table are Year,Stage,Start of stage,Distance (km),Category of climb,Stage winner,Nationality,Yellow jersey,Bend.", "source": "wikisql", "answer_md5": "[('d6695918c7a033be1307e8a060a5393c',)]"} +{"description": "A locomotive with the number 36001, named Polar Bear, of type Class 36, with livery BR Green, and with a status of Under Repair, along with notes indicating it was recently purchased from a private owner, was inserted into the Locomotive Inventory database.", "label": ["INSERT INTO `Locomotive Inventory` (`Number`, `Name`, `Type`, `Livery`, `Status`, `Notes`) VALUES ('36001', 'Polar Bear', 'Class 36', 'BR Green', 'Under Repair', 'Recently purchased from a private owner')"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Locomotive Inventory", "table_info": {"columns": [{"name": "Number", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}, {"name": "Livery", "type": "TEXT"}, {"name": "Status", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["", "Brightside", "Yorkshire Engine Company 0-4-0", "Black", "Under Repair", "Currently dismantled for overhaul"], ["6", "Roger H. Bennett", "Yorkshire Engine Company \"Janus\" 0-6-0", "NCB Blue", "Operational", "~"], ["D2334", "", "Class 04", "Green", "Under Repair", "Stopped at Sep 2012 diesel gala after failure"], ["25322", "Tamworth Castle", "Class 25", "\"Ice Cream Van\" Blue", "Static Display", "built in 1967. Cosmetically restored in 2008"], ["33021", "Captain Charles", "Class 33", "Blue", "Operational", "built in 1960. On loan from Tysley"], ["33102", "Sophie (Unofficial)", "Class 33", "Blue", "Operational", "built in 1960. Launched Sep 2012 - restoration still being completed although the loco is now in service"], ["37407", "", "Class 37", "Transrail Grey", "Stored", "~"], ["37424", "", "Class 37", "Transrail Grey", "Stored", "~"], ["47524", "", "Class 47", "Rail Express Systems", "Under restoration", "~"], ["", "Victory", "Baldwin 2-8-0", "Black", "Static Display", "Built in 1943. Retired in 1967"], ["A4 Sir Nigel Gresley", "", "Class A4", "Blue", "Operational", "Designed by Sir Nigel Gresley for streamlined high-speed running. Built in 1937"], ["60103", "Flying Scotsman", "Class A3", "LNER Apple Green", "Operational", "Built in 1923. Made the first non-stop London to Edinburgh run and also toured North America in 1969-1972"], ["7820", "Dinmore Manor", "GWR 7800 Class", "Black", "Operational", "Built in 1950. Returned to service in 2018 after 23 years of restoration"], ["D4052", "", "Class 40122", "Green", "Stored", "Built in 1958. Retired in 1988 and saved for preservation"], ["D821 Greyhound", "", "Class 52", "Green", "Operational", "Built in 1961. Used on the Western Region of British Railways"], ["", "Tornado", "Peppercorn Class A1", "Apple Green", "Operational", "Built in 2008 as a replica of the original Tornado that was built in 1948"], ["60009", "Union of South Africa", "Class A4", "LNER Apple Green", "Operational", "Built in 1937. Named after the country in which it was built"], ["71000", "Duke of Gloucester", "Class 8P", "Brunswick Green", "Operational", "Built in 1954 for British Railways by the North British Locomotive Company"], ["92203", "Black Prince", "BR Standard Class 9F", "Black", "Operational", "Built in 1959. Used on the London Midland Region of British Railways"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Number", "Name", "Type", "Livery", "Status", "Notes"], "add_description": "The name of this table is Locomotive Inventory, and the headers of this table are Number,Name,Type,Livery,Status,Notes.", "source": "wikitq", "answer_md5": "[('56ef2116e313460b233e0b20a0350137',)]"} +{"description": "Insert the Olympic Medals by Game table with data for the Games, Gold, Silver, and Bronze medals won in the 1990 Tokyo Olympic games by John Doe, Jane Smith, and Jack Zhang.", "label": ["INSERT INTO `Olympic Medals by Game` (Games, Gold, Silver, Bronze) VALUES ('1990 Tokyo', 'John Doe', 'Jane Smith', 'Jack Zhang')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Olympic Medals by Game", "table_info": {"columns": [{"name": "Games", "type": "text"}, {"name": "Gold", "type": "text"}, {"name": "Silver", "type": "text"}, {"name": "Bronze", "type": "text"}], "rows": [["1938 Vaxholm", "Helmut Triebe Hans Eberle Germany", "Kurt Bodo Hans Berglund Sweden", "Poul Larsen Vagin J\u00f8rgensen Denmark"], ["1950 Copenhagen", "Lars Glasser Ingemar Hedberg Sweden", "Ivar Matthisen Knut \u00d8stby Norway", "Piet Bakker Harri Kooistra Netherlands"], ["1954 M\u00e2con", "Istv\u00e1n M\u00e9sz\u00e1ros Gy\u00f6rgy M\u00e9sz\u00e1ros Hungary", "Michel Scheurer Gustav Schmidt West Germany", "Helmut Nuller G\u00fcnter Krammer West Germany"], ["1958 Prague", "Henri Verbrugghe Germain van der Moere Belgium", "Yevgeny Yatsinenko Ivan Golovatzhev Soviet Union", "Mikhail Kaleeste Anatoliy Demitkov Soviet Union"], ["1963 Jajce", "Vasilie Nicoar\u01ce Haralambie Ivanov Romania", "Wolfgang Lange Dieter Krause East Germany", "Nikolay Zhushikov Anatoli Grishin Soviet Union"], ["1966 East Berlin", "Aleksandr Shaparenko Yuiry Zhetchenko Soviet Union", "Aurel Vernescu Atanase Sciotnic Romania", "Ferenc Cseh Endre Hazsik Hungary"], ["1970 Copenhagen", "Gerhard Seibold G\u00fcnther Pfaff Austria", "Lars Andersson Rolf Peterson Sweden", "Klaus-Peter Ebeling Joachim Mattern East Germany"], ["1971 Belgrade", "Reiner Kurth Alexander Slatnow East Germany", "Gerhard Seibold G\u00fcnther Pfaff Austria", "Costel Co\u015fni\u0163\u0103 Vasilie Simiocenco Romania"], ["1973 Tampere", "J\u00f3zsef Deme J\u00e1nos R\u00e1tkai Hungary", "Ion Dragulsci Ernst Pavel Romania", "Herbert Laabs Joachim Mattern East Germany"], ["1974 Mexico City", "Zolt\u00e1n Bak\u00f3 Istv\u00e1n Szab\u00f3 Hungary", "Vladimir Kozubin Mikhail Afanasiyev Soviet Union", "Volkmar Thiede R\u00fcdiger Helm East Germany"], ["1975 Belgrade", "Alexandre Slatnow Gerhard Rummel East Germany", "Larion Serghei Policarp Mal\u00eehin Romania", "J\u00f3zsef Deme J\u00e1nos R\u00e1tkai Hungary"], ["1977 Sofia", "Zolt\u00e1n Bak\u00f3 Istv\u00e1n Szab\u00f3 Hungary", "Bernd Olbricht Joachim Mattern East Germany", "Vladimir Romanovskiy Sergey Nagomy Soviet Union"], ["1978 Belgrade", "Sergey Zhuchray Vladimir Trainikov Soviet Union", "Einar Rasmussen Olaf S\u00f8yland Norway", "Zolt\u00e1n Bak\u00f3 Istv\u00e1n Szab\u00f3 Hungary"], ["1979 Duisburg", "Einar Rasmussen Olaf S\u00f8yland Norway", "Zolt\u00e1n Bak\u00f3 Istv\u00e1n Szab\u00f3 Hungary", "Sergey Zhuchray Vladimir Trainikov Soviet Union"], ["1981 Nottingham", "Vladimir Parfenovich Sergey Superata Soviet Union", "Bernd Fleckeisen Frank Fischer East Germany", "Waldemar Merk Daniel We\u0142na Poland"], ["1982 Belgrade", "Vladimir Parfenovich Sergey Superata Soviet Union", "Alwyn Morris Hugh Fisher Canada", "Luis Gregorio Ramos Herminio Rodriguez Spain"], ["1983 Tampere", "Frank Fischer Andr\u00e9 Wohllebe East Germany", "Vladimir Parfenovich Sergey Superata Soviet Union", "Werner Bachmayer Wolfgang Hartl Austria"], ["1985 Mechelen", "Pascal Boucherit Philippe Boccara France", "Viktor Pusev Sergey Superata Soviet Union", "Don Brien Colin Shaw Canada"], ["1986 Montreal", "Daniel Stoian Angelin Velea Romania", "Andr\u00e9 Wohllebe Frank Fischer East Germany", "Kerry Grant Steve Wood Australia"], ["1987 Duisburg", "Ian Ferguson Paul MacDonald New Zealand", "Philippe Boccara Pascal Boucherit France", "Thomas G\u00e4hme Thomas Vaske East Germany"], ["1990 Tokyo", "Andr\u00e9 Wohllebe Uwe Mertens Germany", "Viktor Pusev Sergei Solodovnikov Soviet Union", "Philippe Boccara Pascal Boucherit France"], ["1992 Barcelona", "Dennis Green Kim McLeod Canada", "J\u00e1nos R\u00e1tkai J\u00f3zsef Deme Hungary", "Andr\u00e9 Wohllebe Uwe Mertens Germany"], ["1994 Lillehammer", "Nicolas Gill Jean-Pierre Cantin Canada", "J\u00f3zsef Deme J\u00e1nos R\u00e1tkai Hungary", "Andr\u00e9 Wohllebe Uwe Mertens Germany"], ["1996 Atlanta", "Liam de Young Bevan Roberts Australia", "Evangelos Giannoulis Venetis Kostopoulos Greece", "Kurt Kuschela Christian Sachs Germany"], ["1998 Nagano", "Fr\u00e9d\u00e9ric Demontfaucon Micka\u00ebl Borot France", "Paul McDonald Grant Wellington Canada", "J\u00e1nos R\u00e1tkai Tam\u00e1s G\u00e1bor Hungary"], ["2000 Sydney", "Chris Harland Nathan Duby Canada", "Markus Z\u00f6llner Kurt Kuschela Germany", "Fr\u00e9d\u00e9ric Demontfaucon Micka\u00ebl Borot France"], ["2002 Salt Lake City", "Cameron McKeever David Ford Canada", "Andreas Dittmer Mark Zabel Germany", "Fr\u00e9d\u00e9ric Demontfaucon Micka\u00ebl Borot France"], ["2004 Athens", "Attila Vajda \u00c9va D\u00f3nusz Hungary", "David Ford Norman Boucher Canada", "Andreas Kuffner Bj\u00f6rn Bach Germany"], ["2006 Turin", "Michal Martik\u00e1n Peter Cib\u00e1k Slovakia", "Andreas Kuffner Bj\u00f6rn Bach Germany", "David Ford Andrew Willows Canada"], ["2008 Beijing", "David Florence Richard Hounslow Great Britain", "Vincent Slavenburg Robin van der Kolk Netherlands", "Attila Vajda D\u00e1vid T\u00f3th Hungary"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Games", "Gold", "Silver", "Bronze"], "add_description": "The name of this table is Olympic Medals by Game, and the headers of this table are Games,Gold,Silver,Bronze.", "source": "hybridqa", "answer_md5": "[('fa0c8685df169bfe06b149e9e21897ee',)]"} +{"description": "In the table Athlete_results, a row is inserted with the values '2008' for Year, 'Olympic Games' for Competition, 'Beijing, China' for Venue, '1st' for Position, '800 metres' for Event, and '-' for Notes.", "label": ["INSERT INTO Athlete_results (Year, Competition, Venue, Position, Event, Notes) VALUES ('2008', 'Olympic Games', 'Beijing, China', '1st', '800 metres', '-');"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Athlete_results", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2001", "African Junior Championships", "R\u00e9duit, Mauritius", "2nd", "5000 metres", "-"], ["2004", "African Championships", "Brazzaville, Republic of Congo", "3rd", "800 metres", "-"], ["2006", "Commonwealth Games", "Melbourne, Australia", "20th (heats)", "800 metres", "-"], ["2007", "All-Africa Games", "Algiers, Algeria", "5th", "800 metres", "-"], ["2007", "All-Africa Games", "Algiers, Algeria", "13th (heats)", "1500 metres", "-"], ["2010", "African Championships", "Nairobi, Kenya", "1st", "3000 metres", "Personal Best"], ["2012", "Olympic Games", "London, United Kingdom", "4th", "1500 metres", "National Record Holder"], ["2014", "Commonwealth Games", "Glasgow, Scotland", "2nd", "800 metres", ""], ["2015", "World Championships", "Beijing, China", "8th", "1500 metres", ""], ["2016", "African Championships", "Durban, South Africa", "1st", "1500 metres", ""], ["2017", "World Championships", "London, United Kingdom", "5th", "800 metres", ""], ["2018", "Commonwealth Games", "Gold Coast, Australia", "2nd", "1500 metres", ""], ["2019", "African Championships", "Rabat, Morocco", "3rd", "800 metres", ""], ["2020", "Olympic Games", "Tokyo, Japan", "Cancelled due to COVID-19 pandemic", "", ""], ["2021", "World Championships", "Eugene, United States", "2nd", "1500 metres", "Personal Best"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is Athlete_results, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('c1d746ff1a9b23942d78adc96772fba2',)]"} +{"description": "The episode Welcome to Scranton of The Office in 2021 has a new employee added to the acting credits table.", "label": ["INSERT INTO `Acting Credits` VALUES ('2021', 'The Office', 'New Employee', 'Episode: Welcome to Scranton')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Acting Credits", "table_info": {"columns": [{"name": "Year", "type": "YEAR"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2000", "Madigan Men", "Clerk", "Episode: \"Three Guys, a Girl and a Conversation Nook\""], ["2001", "Law & Order", "Jeremy", "Episode: \"Swept Away \u2013 A Very Special Episode\""], ["2001\u20132004", "Third Watch", "Michael Boscorelli", "5 episodes"], ["2003", "Luis", "Richie", "10 episodes"], ["2004", "Reno 911!", "Inbred Twin", "Episode: \"Not Without My Mustache\""], ["2005\u2013present", "It's Always Sunny in Philadelphia", "Charlie Kelly", "144 episodes, also executive producer and writer"], ["2011", "Saturday Night Live", "Himself (host)", "Episode: \"Charlie Day/Maroon 5\""], ["2012", "Unsupervised", "Jesse Judge", "Voice Episode: \"Jesse Judge Lawncare Incorporated\""], ["2012", "Saturday Night Live", "Congressman Fenton Worthington Carrey", "Episode: \"Jamie Foxx/Ne-Yo\""], ["2012", "American Dad!", "Meth Head", "Voice Episode: \"Adventures in Hayleysitting\""], ["2014", "Drunk History", "Allan Pinkerton", "Episode: \"Baltimore\""], ["2018", "The Cool Kids", "Chet", "1 episode, also co-creator, executive producer and writer"], ["TBA", "Mythic Quest", "-", "Producer and screenwriter"], ["1999", "Law & Order", "Delivery Boy", "Episode: \"Admissions\""], ["2002", "Scrubs", "Janitor", "Episode: \"My Mentor\""], ["2006-2007", "Whitney", "Ryan", "5 episodes"], ["2008", "Law & Order: Special Victims Unit", "Jimmy Walp", "Episode: \"Underbelly\""], ["2010", "Going the Distance", "Dan", "Film"], ["2013", "Pacific Rim", "Dr. Newton Geiszler", "Film"], ["2015", "Vacation", "Chad", "Film"], ["2016", "The Lego Batman Movie", "Daleks", "Voice Role"], ["2017", "Fist Fight", "Andy Campbell", "Film"], ["2019", "Always Be My Maybe", "Himself", "Film"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Acting Credits, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('17f0c4b9b18babb327b51ef5684a257a',)]"} +{"description": "Insert 'Lambeau Field' into sports_venues for American Football with a capacity of 81,441.", "label": ["INSERT INTO sports_venues (Venue, Sports, Capacity) VALUES ('Lambeau Field', 'American Football', '81,441')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "sports_venues", "table_info": {"columns": [{"name": "Venue", "type": "TEXT"}, {"name": "Sports", "type": "TEXT"}, {"name": "Capacity", "type": "TEXT"}], "rows": [["Axamer Lizum", "Alpine skiing ( all but men 's downhill )", "Not listed"], ["Bergiselschanze", "Ski jumping ( large hill ) , Opening ceremonies", "26,000"], ["Eisschnellaufbahn", "Speed skating", "7,000"], ["Kominierte Kunsteisbahn f\u00fcr Bob-Rodel Igls", "Bobsleigh , Luge", "Not listed"], ["Messehalle", "Ice hockey", "5,544"], ["Olympiahalle", "Figure skating , Ice hockey , Closing ceremonies", "10,836"], ["Patscherkofel", "Alpine skiing ( men 's downhill )", "Not listed"], ["Seefeld", "Biathlon , Cross-country skiing , Nordic combined , Ski jumping ( normal hill )", "Not listed"], ["Wembley Stadium", "Football (soccer)", "90,000"], ["Madison Square Garden", "Basketball, Boxing, Ice hockey", "20,789"], ["Tokyo Dome", "Baseball", "55,000"], ["Allianz Arena", "Football (soccer)", "75,000"], ["Fenway Park", "Baseball", "37,673"], ["Camp Nou", "Football (soccer)", "99,354"], ["Old Trafford", "Football (soccer)", "74,879"], ["Suncorp Stadium", "Rugby, Soccer", "52,500"], ["The Oval", "Cricket", "23,500"], ["Lords", "Cricket", "30,000"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Venue", "Sports", "Capacity"], "add_description": "The name of this table is sports_venues, and the headers of this table are Venue,Sports,Capacity.", "source": "hybridqa", "answer_md5": "[('3cb2f88d957e2569ea5cda1fcdedcd48',)]"} +{"description": "The Hockey_Schedule table is being updated with a new game on October 8th against the Bruins at TD Garden. The team lost with a score of 2-4, bringing their record to 4-5-1. The location of the game is also being recorded.", "label": ["INSERT INTO Hockey_Schedule (Date,Opponent,Score,Record,Arena) VALUES ('October 8', 'Bruins', '2\u20134', '4\u20135\u20131', 'TD Garden')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Hockey_Schedule", "table_info": {"columns": [{"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "Arena", "type": "TEXT"}], "rows": [["September 17", "@ Kings", "4\u20132", "0\u20131\u20130", "Staples Center"], ["September 21", "Sharks", "2\u20131", "0\u20131\u20131", "Arrowhead Pond of Anaheim"], ["September 23", "Coyotes", "5\u20133", "1\u20131\u20131", "Arrowhead Pond of Anaheim"], ["September 24", "@ Canucks", "4\u20132", "2\u20131\u20131", "General Motors Place"], ["September 25", "@ Sharks", "6\u20135", "2\u20132\u20131", "HP Pavilion at San Jose"], ["September 28", "Canucks", "3\u20131", "2\u20133\u20131", "Arrowhead Pond of Anaheim"], ["September 30", "Kings", "5\u20134", "3\u20133\u20131", "Arrowhead Pond of Anaheim"], ["October 3", "@ Coyotes", "4\u20133", "4\u20133\u20131", "Gila River Arena"], ["October 5", "Red Wings", "2\u20131", "5\u20133\u20131", "Honda Center"], ["October 8", "@ Flames", "3\u20132", "6\u20133\u20131", "Scotiabank Saddledome"], ["October 10", "@ Oilers", "6\u20134", "7\u20133\u20131", "Rogers Place"], ["October 13", "Senators", "4\u20132", "8\u20133\u20131", "Honda Center"], ["October 16", "Stars", "3\u20131", "9\u20133\u20131", "Honda Center"], ["October 18", "@ Blues", "5\u20132", "10\u20133\u20131", "Enterprise Center"], ["October 21", "@ Predators", "2\u20131", "11\u20133\u20131", "Bridgestone Arena"], ["October 23", "Kings", "4\u20132", "12\u20133\u20131", "Honda Center"], ["October 26", "@ Wild", "3\u20132", "13\u20133\u20131", "Xcel Energy Center"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Opponent", "Score", "Record", "Arena"], "add_description": "The name of this table is Hockey_Schedule, and the headers of this table are Date,Opponent,Score,Record,Arena.", "source": "wikisql", "answer_md5": "[('612df57977a0590f0bb88b1cd835fa6a',)]"} +{"description": "Inser\u00e7\u00e3o na tabela \"Aerial Tramways and Cable Cars\" dos valores para colunas \"Name\", \"Year built\", \"Country\", \"Town\", \"Height\" e \"Remarks\", respectivamente, 'Sugarloaf Mountain Cable Car', '1912', 'Brazil', 'Rio de Janeiro', '396 m' e 'One of the longest cable car rides in the world'.", "label": ["INSERT INTO `Aerial Tramways and Cable Cars` (`Name`, `Year built`, `Country`, `Town`, `Height`, `Remarks`) VALUES ('Sugarloaf Mountain Cable Car', '1912', 'Brazil', 'Rio de Janeiro', '396 m', 'One of the longest cable car rides in the world')"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Aerial Tramways and Cable Cars", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Year built", "type": "INT"}, {"name": "Country", "type": "TEXT"}, {"name": "Town", "type": "TEXT"}, {"name": "Height", "type": "TEXT"}, {"name": "Remarks", "type": "TEXT"}], "rows": [["Glacial Aerial Tramway Kaprun III", "1966", "Austria", "Kaprun", "113.6 m", "The tallest pylon is on the third section"], ["Mississippi Aerial River Transit", "1984", "USA", "New Orleans", "109 m", "The tallest pylon on a gondola lift;"], ["Torre Jaume I", "1931", "Spain", "Barcelona", "107 m", "Intermediate stop of the harbour aerial tramway, also observation tower"], ["Gant Hohtaelli aerial tramway", "nan", "Switzerland", "Zermatt", "94 m", "One pylon"], ["London Emirates Air Line", "Early 2012", "UK", "London", "88 m", "North Main Tower. River Thames aerial crossing between Greenwich Peninsular and"], ["Singapore cable car", "1972", "Singapore", "Singapore", "88 m", "Pylon I"], ["Eibsee Aerial Tramway", "1962", "Germany", "Garmisch-Partenkirchen", "85 m", "Pylon II"], ["Nizhny Novgorod Volga Aerial Tra", "2012", "Russia", "Nizhny Novgorod", "82 m", "nan"], ["Mittersill goods aerial tramway", "194?", "Austria", "Mittersill", "80 m", "Two pylons for a tramway that never went in service"], ["Singapore cable car", "1972", "Singapore", "Singapore", "80 m", "Pylon II"], ["3S Aerial Tramway", "2004", "Austria", "Kitzbuhel", "80 m", "One pylon"], ["Torre Sant Sebastia", "1931", "Spain", "Barcelona", "78 m", "Terminal of harbour aerial tramway"], ["Roosevelt Island Tramway", "1976", "USA", "New York City", "76 m", "Central pylon of commuter tramway"], ["Wendelstein Aerial Tramway", "1970", "Germany", "Bayerischzell-Osterhofen", "75 m", "nan"], ["Vinpearl Cable Car", "2007", "Vietnam", "Nha Trang", "75 m", "7 pylons standing in the sea. Total height from sea bed"], ["Sandia Peak Tramway", "1965", "USA", "Albuquerque", "70.7 m", "Pylon 1, inclined at an angle of 18 degrees"], ["Eibsee Aerial Tramway", "1962", "Germany", "Garmisch-Partenkirchen", "65 m", "Pylon I"], ["Mont Blanc Aerial Tramway", "1957", "France", "Chamonix", "1138 m", "The highest vertical ascent cable car"], ["Peak 2 Peak Gondola", "2008", "Canada", "Whistler", "436 m", "The longest unsupported span for a lift of this kind"], ["Tianmen Mountain Cableway", "2005", "China", "Zhangjiajie", "1279 m", "Glass bottom cars with fantastic views"], ["Mi Telef\u00e9rico", "2014", "Bolivia", "La Paz", "135 m", "The longest aerial cable car system in the world"], ["Titlis Rotair", "1967", "Switzerland", "Engelberg", "3020 m", "World's first revolving aerial cableway"], ["Glenwood Gondola", "2019", "USA", "Glenwood Springs", "1230 m", "One of the steepest gondola rides in the country"], ["Doppelmayr 3S lift", "2017", "Austria", "Kaprun", "1930 m", "The cable for the gondolas is moved by sheaves that are 8.5 m in diameter"], ["San Francisco Cable Car", "1873", "USA", "San Francisco", "57.5 m", "Runs on three lines with just 40 cars"], ["Peak Tram", "1888", "Hong Kong", "Victoria Peak", "373 m", "Built by a Scottish engineer"], ["Table Mountain Aerial Cableway", "1929", "South Africa", "Cape Town", "1067 m", "The cable car floor rotates as it travels"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Year built", "Country", "Town", "Height", "Remarks"], "add_description": "The name of this table is Aerial Tramways and Cable Cars, and the headers of this table are Name,Year built,Country,Town,Height,Remarks.", "source": "sqa", "answer_md5": "[('1f9923f842fc44a041804906a8b3a919',)]"} +{"description": "Insert values into 'Ranking and Results Table for AFC Cup' table for Myanmar with rank 11, 30.0 points, 0 group stage appearances, 1 play-off appearance, and 1 AFC cup appearance.", "label": ["INSERT INTO `Ranking and Results Table for AFC Cup` (`Rank`, `Member Association`, `Points`, `Group stage`, `Play-off`, `AFC Cup`) VALUES ('11', 'Myanmar', '30.0', '0', '1', '1');"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Ranking and Results Table for AFC Cup", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Member Association", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}, {"name": "Group stage", "type": "TEXT"}, {"name": "Play-off", "type": "TEXT"}, {"name": "AFC Cup", "type": "TEXT"}], "rows": [["1", "Japan", "946.8", "4", "0", "0"], ["2", "Korea Republic", "886.6", "4", "0", "0"], ["3", "China PR", "796.7", "4", "0", "0"], ["4", "Australia", "567.0", "1", "1", "0"], ["5", "Thailand", "177.2", "1", "1", "0"], ["6", "Singapore", "\u2212135.1", "0", "0", "2"], ["7", "Vietnam", "\u2212815.7", "0", "0", "2"], ["8", "Iran", "742.4", "3", "0", "0"], ["9", "Saudi Arabia", "685.9", "3", "0", "0"], ["10", "UAE", "629.5", "3", "0", "0"], ["11", "Qatar", "567.8", "2", "1", "0"], ["12", "Jordan", "396.7", "2", "1", "0"], ["13", "Oman", "353.8", "2", "1", "0"], ["14", "Iraq", "294.1", "2", "0", "1"], ["15", "Syria", "157.5", "1", "1", "0"], ["16", "Lebanon", "96.8", "1", "1", "0"], ["17", "Palestine", "\u2212183.5", "0", "1", "1"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Rank", "Member Association", "Points", "Group stage", "Play-off", "AFC Cup"], "add_description": "The name of this table is Ranking and Results Table for AFC Cup, and the headers of this table are Rank,Member Association,Points,Group stage,Play-off,AFC Cup.", "source": "wikisql", "answer_md5": "[('f379391b5a05bf683fa518ea97344646',)]"} +{"description": "The movie 'Despicable Me 3' released in 2017 featured Frieda (voice) and had no additional notes, and this data was inserted into the 'Movie Roles' table.", "label": ["INSERT INTO `Movie Roles` (Year, Title, Role, Notes) VALUES ('2017', 'Despicable Me 3', 'Frieda (voice)', '-')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Movie Roles", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1978", "King of the Gypsies", "Gypsy Dancer", "-"], ["1981", "Fort Apache, The Bronx", "Isabella", "-"], ["1987", "Critical Condition", "Rachel Atwood", "-"], ["1990", "Total Recall", "Melina", "-"], ["1991", "One Good Cop", "Grace", "-"], ["1991", "F/X2", "Kim Brandon", "-"], ["1992", "Where the Day Takes You", "Officer Landers", "-"], ["1993", "Falling Down", "Det. Sandra Torres", "-"], ["1994", "Natural Born Killers", "Wanda Bisbing (scenes deleted)", "-"], ["1994", "Criminal Passion", "Tracy Perry", "-"], ["1994", "Don Juan DeMarco", "Do\u00f1a Inez", "-"], ["1995", "Steal Big Steal Little", "Laura Martinez", "-"], ["1997", "Turbulence", "Rachel Taper", "-"], ["1997", "Con Air", "Guard Sally Bishop", "-"], ["1998", "Gargoyles: Brothers Betrayed", "Captain Maria Chavez (voice)", "Video short"], ["2000", "Civility", "Rebecca Russo", "-"], ["2000", "Can't Be Heaven", "Maggie", "-"], ["2001", "Full Disclosure", "Armiti Khalq", "Video"], ["2001", "Warden of Red Rock", "Maria McVale", "Video"], ["2002", "Desert Saints", "Dora", "-"], ["2003", "Something's Gotta Give", "Dr. Martinez", "-"], ["2004", "Man on Fire", "Mariana Garcia Guerrero", "-"], ["2005", "The Sisterhood of the Traveling Pants", "Carmen's Mom", "-"], ["2008", "The Eye", "Rosa Martinez", "-"], ["2008", "The Sisterhood of the Traveling Pants 2", "Carmen's Mom", "-"], ["2008", "The Burning Plain", "Ana", "-"], ["2011", "America", "Esther", "-"], ["2000", "The Perfect Storm", "Suzanne Shatford", "-"], ["2003", "Master and Commander: The Far Side of the World", "Marianne", "-"], ["2005", "Miss Congeniality 2: Armed and Fabulous", "Agent Harris", "-"], ["2007", "Grindhouse", "Nurse Lisa (segment \"Planet Terror\")", "-"], ["2009", "Watchmen", "Silk Spectre I", "-"], ["2010", "The Losers", "Aisha al-Fadhil", "-"], ["2013", "Grown Ups 2", "Roxanne Chase-Feder", "-"], ["2014", "Sin City: A Dame to Kill For", "Mort", "-"], ["2016", "Keanu", "Hannah", "-"], ["2019", "John Wick: Chapter 3 \u2013 Parabellum", "Sofia Al-Azwar", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Movie Roles, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('991c10f663f594f4aa4af79fae998906',)]"} +{"description": "The baseball game results were inserted into the database with the following values: Date='Jun 2', Opponent='@ Angels', Score='5\u20133', Loss='Montefusco (4\u20132)', Record='17\u201333' using the query: INSERT INTO baseball_game_results (Date, Opponent, Score, Loss, Record) VALUES", "label": ["INSERT INTO baseball_game_results (Date, Opponent, Score, Loss, Record) VALUES ('Jun 2', '@ Angels', '5\u20133', 'Montefusco (4\u20132)', '17\u201333')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "baseball_game_results", "table_info": {"columns": [{"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Loss", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["May 1", "@ Orioles", "Postponed (rain) Rescheduled for May 2", "Postponed (rain) Rescheduled for May 2", "Postponed (rain) Rescheduled for May 2"], ["May 2", "@ Orioles", "4\u20133", "Willis (0\u20132)", "7\u201313"], ["May 2", "@ Orioles", "8\u20133", "Leal (2\u20133)", "7\u201314"], ["May 3", "@ Orioles", "4\u20132", "Stone (1\u20133)", "8\u201314"], ["May 5", "Indians", "Postponed (rain) Rescheduled for July 19", "Postponed (rain) Rescheduled for July 19", "Postponed (rain) Rescheduled for July 19"], ["May 6", "Indians", "4\u20131", "Todd (1\u20133)", "8\u201315"], ["May 7", "Indians", "6\u20132", "Waits (3\u20131)", "9\u201315"], ["May 8", "Red Sox", "4\u20132", "Bomback (3\u20132)", "9\u201316"], ["May 9", "Red Sox", "10\u20133", "Clancy (1\u20132)", "9\u201317"], ["May 10", "Red Sox", "9\u20135 (10)", "Jackson (0\u20131)", "9\u201318"], ["May 11", "Red Sox", "7\u20136", "Willis (0\u20133)", "9\u201319"], ["May 12", "Orioles", "5\u20132", "Palmer (1\u20131)", "10\u201319"], ["May 13", "Orioles", "4\u20130", "Bomback (3\u20133)", "10\u201320"], ["May 14", "Orioles", "10\u20130", "Clancy (1\u20133)", "10\u201321"], ["May 15", "@ Indians", "3\u20130", "Leal (2\u20134)", "10\u201322"], ["May 16", "@ Indians", "4\u20131", "Garland (2\u20133)", "11\u201322"], ["May 17", "@ Indians", "1\u20130", "Stieb (3\u20134)", "11\u201323"], ["May 17", "@ Indians", "2\u20131 (10)", "Jackson (0\u20132)", "11\u201324"], ["May 18", "White Sox", "7\u20132", "Bomback (3\u20134)", "11\u201325"], ["May 19", "White Sox", "9\u20135", "Hoyt (3\u20131)", "12\u201325"], ["May 20", "White Sox", "6\u20135", "McLaughlin (0\u20132)", "12\u201326"], ["May 22", "@ Athletics", "6\u20132", "Stieb (3\u20135)", "12\u201327"], ["May 23", "@ Athletics", "3\u20132 (15)", "Leal (2\u20135)", "12\u201328"], ["May 24", "@ Athletics", "6\u20135 (12)", "McLaughlin (0\u20133)", "12\u201329"], ["May 24", "@ Athletics", "5\u20130", "Garvin (0\u20132)", "12\u201330"], ["May 25", "@ Angels", "2\u20131", "Todd (2\u20134)", "12\u201331"], ["May 26", "@ Angels", "8\u20134", "Rau (1\u20132)", "13\u201331"], ["May 27", "@ Angels", "3\u20131", "Forsch (6\u20133)", "14\u201331"], ["May 29", "Athletics", "6\u20133", "Keough (6\u20132)", "15\u201331"], ["May 30", "Athletics", "6\u20135", "Norris (7\u20133)", "16\u201331"], ["May 31", "Athletics", "6\u20135", "McLaughlin (0\u20134)", "16\u201332"], ["June 1", "@ White Sox", "2\u20131", "Todd (3\u20134)", "17\u201332"], ["June 2", "@ White Sox", "5\u20133", "Rau (2\u20132)", "18\u201332"], ["June 3", "@ White Sox", "7\u20132", "Waits (4\u20131)", "19\u201332"], ["June 4", "Brewers", "9\u20136", "Garland (3\u20133)", "20\u201332"], ["June 5", "Brewers", "3\u20132", "Clancy (2\u20133)", "21\u201332"], ["June 6", "Brewers", "8\u20135", "Keough (6\u20133)", "22\u201332"], ["June 8", "@ Brewers", "10\u20131", "Todd (4\u20134)", "23\u201332"], ["June 9", "@ Brewers", "5\u20132", "Rau (3\u20132)", "24\u201332"], ["June 10", "@ Brewers", "3\u20131", "Waits (5\u20131)", "25\u201332"], ["June 11", "@ Royals", "6\u20134", "Garland (4\u20133)", "26\u201332"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Opponent", "Score", "Loss", "Record"], "add_description": "The name of this table is baseball_game_results, and the headers of this table are Date,Opponent,Score,Loss,Record.", "source": "wikisql", "answer_md5": "[('44b975ce3592c31481d6214b04b779bc',)]"} +{"description": "Insert into acting credits for the film 'The Social Network' with the year 2010 for a student role that was uncredited.", "label": ["INSERT INTO `Acting Credits` (`Year`, `Title`, `Role`, `Notes`) VALUES ('2010', 'The Social Network', 'Student', 'Uncredited');"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Acting Credits", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1987\u20131993", "The Adventures of Spot", "Spot", "Voice"], ["1990", "The Bradys", "Kevin Brady", "2 episodes"], ["1991", "In Living Color", "Macaulay Culkin", "2 episodes"], ["1991\u20131998", "Home Improvement", "Randy Taylor", "179 episodes"], ["1993", "In Living Color", "-", "Episode: \"Forever Silky\""], ["1994", "The Itsy Bitsy Spider", "George", "Voice Episode: \"Spider Sense\""], ["1996", "The Oz Kids", "Scarecrow Jr", "Voice"], ["2000", "Ally McBeal", "Chris Emerson", "Episode: \"Do You Wanna Dance?\""], ["2000", "The Wild Thornberrys", "Tyler Tucker", "Voice 5 episodes"], ["2002", "Smallville", "Ian Randall", "Episode: \"Dichotic\""], ["2003", "The Simpsons", "Luke Stetson", "Voice Episode: \"Dude, Where's My Ranch?\""], ["2004", "Smallville", "Ian Randall", "Episode: \"Asylum\""], ["2004", "8 Simple Rules", "Jeremy", "3 episodes"], ["2005", "Veronica Mars", "Ben", "Episode: \"Weapons of Class Destruction\""], ["2013\u20132015", "Last Man Standing", "John Baker / Randy", "4 episodes"], ["2013\u20132016", "Last Man Standing", "Director", "3 episodes"], ["1998\u20132002", "Dawson's Creek", "Eddie Doling", "4 episodes"], ["2002\u20132007", "The O.C.", "Oliver Trask", "11 episodes"], ["2003", "Malcolm in the Middle", "Rob", "Episode: \"Hal's Birthday\""], ["2005\u20132014", "Grey's Anatomy", "Jake Burton", "2 episodes"], ["2006", "Scrubs", "Keith Dudemeister", "4 episodes"], ["2007", "Criminal Minds", "Jeremy Sayer", "Episode: \"Scared to Death\""], ["2009", "Days of Our Lives", "Damon", "5 episodes"], ["2011", "CSI: Miami", "Father Carlos Ortega", "Episode: \"Sinner Takes All\""], ["2015", "Hawaii Five-0", "Seth Tilton", "Episode: \"Ina Paha\""], ["2019", "Supernatural", "Sam Winchester", "Episode: \"Lebanon\""]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Acting Credits, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('dc81d6c55867643a927f02ad8709a87e',)]"} +{"description": "The 11th match of the FIFA World Cup 2022 knockout stage was played on 25 June 2022 at Allegiant Stadium, Paradise, United States against Mexico, with a final score of 1\u20130 in favor of the home team.", "label": ["INSERT INTO `Football Matches` (`No.`, `Date`, `Venue`, `Opponent`, `Score`, `Result`, `Competition`) VALUES ('11', '25 June 2022', 'Allegiant Stadium, Paradise, United States', 'Mexico', '1\u20130', '1\u20130', 'FIFA World Cup 2022 knockout stage')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Football Matches", "table_info": {"columns": [{"name": "No.", "type": "INT"}, {"name": "Date", "type": "DATE"}, {"name": "Venue", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}], "rows": [["1", "3 June 2010", "King Baudouin Stadium, Brussels, Belgium", "Mexico", "1\u20132", "1\u20132", "Friendly"], ["2", "3 September 2010", "A. Le Coq Arena, Tallinn, Estonia", "Estonia", "2\u20131", "2\u20131", "UEFA Euro 2012 qualification"], ["3", "9 September 2014", "Ullevaal Stadion, Oslo, Norway", "Norway", "2\u20130", "2\u20130", "UEFA Euro 2016 qualification"], ["4", "2 July 2016", "Nouveau Stade de Bordeaux, Bordeaux, France", "Germany", "1\u20131", "1\u20131 (5\u20136 p)", "UEFA Euro 2016"], ["5", "28 March 2017", "Amsterdam Arena, Amsterdam, Netherlands", "Netherlands", "2\u20131", "2\u20131", "Friendly"], ["6", "1 June 2018", "Allianz Riviera, Nice, France", "France", "1\u20132", "1\u20133", "Friendly"], ["7", "12 July 2018", "Luzhniki Stadium, Moscow, Russia", "Croatia", "4-2", "4-2", "FIFA World Cup 2018"], ["8", "11 November 2018", "Wembley Stadium, London, England", "England", "1-2", "2-3", "UEFA Nations League"], ["9", "10 June 2019", "Stade de France, Saint-Denis, France", "Andorra", "4-0", "4-0", "UEFA Euro 2020 qualification"], ["10", "14 October 2019", "Stade de France, Saint-Denis, France", "Turkey", "1-1", "1-1", "UEFA Euro 2020 qualification"], ["11", "17 November 2019", "Albania Arena, Tirana, Albania", "Albania", "0-2", "0-2", "UEFA Euro 2020 qualification"], ["12", "5 September 2020", "Stade de France, Saint-Denis, France", "Sweden", "0-1", "0-1", "UEFA Nations League"], ["13", "7 October 2020", "Stade de France, Saint-Denis, France", "Ukraine", "7-1", "7-1", "Friendly"], ["14", "14 November 2020", "Est\u00e1dio da Luz, Lisbon, Portugal", "Portugal", "0-1", "0-1", "UEFA Nations League"], ["15", "28 March 2021", "Krestovsky Stadium, Saint Petersburg, Russia", "Kazakhstan", "2-0", "2-0", "2022 FIFA World Cup qualification"], ["16", "7 June 2021", "Allianz Riviera, Nice, France", "Bulgaria", "3-0", "3-0", "Friendly"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["No.", "Date", "Venue", "Opponent", "Score", "Result", "Competition"], "add_description": "The name of this table is Football Matches, and the headers of this table are No.,Date,Venue,Opponent,Score,Result,Competition.", "source": "fetaqa", "answer_md5": "[('d0fe1322ae49302249a7bdceda981a0d',)]"} +{"description": "The movie 'The Aviator' released in 2004 features Sen. Ralph Owen Brewster played by the actor, with no additional notes.", "label": ["INSERT INTO Filmography (Year, Title, Role, Notes) VALUES ('2004', 'The Aviator', 'Sen. Ralph Owen Brewster', '-')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Filmography", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1986", "Ruthless People", "Cop at Sam's House", "-"], ["1987", "In-Self Defense", "Role", "TV Movie"], ["1988", "My Stepmother Is An Alien", "Party Guest", "-"], ["1989", "Tarzan in Manhattan", "Role", "TV Movie"], ["1994", "The Flintstones", "Maitre d'", "-"], ["1994", "The Mask", "Detective Doyle", "-"], ["1999", "Stuart Little", "Detective Phil Allen/Lucky (voice)", "-"], ["2000", "The Extreme Adventures of Super Dave", "Super Dave's Doctor", "Video"], ["2000", "The Flintstones in Viva Rock Vegas", "Dinosaur Confessor", "-"], ["2002", "Stuart Little 2", "Soccer Coach", "-"], ["2003", "The Haunted Mansion", "Mr. Coleman", "-"], ["2006", "Grilled", "Andy Wilson", "-"], ["2007", "Evan Almighty", "Neighbor", "-"], ["2009", "Hotel for Dogs", "Male Reporter", "-"], ["2002", "Men in Black II", "Creepy Old Guy", "-"], ["1991", "The Addams Family", "Taxidermist", "-"], ["1985", "Back to the Future", "Ronald Reagan Video Waiter", "-"], ["1999", "EDtv", "Deputy John", "-"], ["1987", "Three Men and a Baby", "Party Guest", "-"], ["1998", "Patch Adams", "Arthur Mendelson", "-"], ["2007", "Bee Movie", "Janitor", "-"], ["1998", "The X-Files", "Dr. Alvin Kurtzweil", "-"], ["1983", "To Be or Not to Be", "Officer #1", "-"], ["2004", "Along Came Polly", "Leland Van Lew", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('770c2818b477aec0428a995255ea6916',)]"} +{"description": "The movie 'Vertigo' from the year 1958 has a character named Judy Barton / Madeleine Elster who is added to the database table 'movies_roles' with the role '-'. The insertion is done via the SQL command 'INSERT INTO movies_roles (Year,Title,Role,Notes) VALUES ('1958','Vertigo','Judy Barton / Madeleine Elster','-')'.", "label": ["INSERT INTO movies_roles (Year,Title,Role,Notes) VALUES ('1958','Vertigo','Judy Barton / Madeleine Elster','-')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "movies_roles", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1934", "The Captain Hates the Sea", "General's Wife", "Uncredited"], ["1935", "George White's 1935 Scandals", "Russian Girl - Old Southern Custom", "Uncredited"], ["1939", "Ninotchka", "Anna - Moscow Roommate", "Uncredited"], ["1942", "Somewhere I'll Find You", "Mama Lugovska", "Uncredited"], ["1943", "Mission to Moscow", "Russian Nurse", "Uncredited"], ["1944", "Song of Russia", "Mme. Orlova", "-"], ["1946", "The Jolson Story", "Mrs. Yoelson", "-"], ["1947", "It Happened in Brooklyn", "Mrs. Kardos", "-"], ["1947", "Northwest Outpost", "Olga Natalia's Maid", "-"], ["1947", "Pirates of Monterey", "Filomena", "-"], ["1948", "Walk a Crooked Mile", "Mrs. Ecko, Landlady", "Uncredited"], ["1948", "The Snake Pit", "Ward 33 Inmate", "Uncredited"], ["1949", "Jolson Sings Again", "Moma Yoelson", "-"], ["1949", "Black Magic", "Maria Balsamo", "-"], ["1949", "Thieves' Highway", "Parthena Garcos", "-"], ["1949", "The Red Danube", "Helena Nagard", "-"], ["1951", "I Can Get It for You Wholesale", "Mrs. Cooper", "Uncredited"], ["1953", "Tonight We Sing", "Customer", "Uncredited"], ["1955", "Mr. Arkadin", "Woman in Apartment", "-"], ["1956", "Anastasia", "Zenia", "Uncredited"], ["1961", "Romanoff and Juliet", "Evdokia Romanoff", "(final film role)"], ["1950", "The Third Man", "Tourist", "Uncredited"], ["1952", "The Snows of Kilimanjaro", "Trekker", "Uncredited"], ["1954", "The Barefoot Contessa", "Maria", "-"], ["1956", "War and Peace", "Nurse", "Uncredited"], ["1958", "The Old Man and the Sea", "Tourist", "Uncredited"], ["1960", "The Alamo", "Veracruz Woman", "Uncredited"], ["1962", "The Day the Earth Caught Fire", "Woman in Pub", "Uncredited"], ["1964", "Topkapi", "Cleaning Lady", "-"], ["1967", "The Dirty Dozen", "French Prostitute", "Uncredited"], ["1970", "The Private Life of Sherlock Holmes", "Madam Lesley", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is movies_roles, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('264ab1c9959988dcd549a97d60a62001',)]"} +{"description": "Insert into Schools table with values including Institution as 'Aquinas', Location as 'La Crosse', Affiliation as 'Private', Enrollment as '312', Mascot as 'Blugolds', and Colors as 'Navy and gold'.", "label": ["INSERT INTO Schools (Institution,Location,Affiliation,Enrollment,Mascot,Colors) VALUES ('Aquinas', 'La Crosse', 'Private', '312', 'Blugolds', 'Navy and gold')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Schools", "table_info": {"columns": [{"name": "Institution", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Affiliation", "type": "TEXT"}, {"name": "Enrollment", "type": "TEXT"}, {"name": "Mascot", "type": "TEXT"}, {"name": "Colors", "type": "TEXT"}], "rows": [["Arcadia", "Arcadia", "Public", "312", "Raiders", "Red and black"], ["Black River Falls", "Black River Falls", "Public", "557", "Tigers", "Black and orange"], ["Gale-Ettrick-Trempealeau", "Galesville", "Public", "449", "Red Hawks", "Red and blue"], ["Luther", "Onalaska", "Private", "274", "Knights", "Black and gold"], ["Viroqua", "Viroqua", "Public", "360", "Blackhawks", "Black and orange"], ["West Salem", "West Salem", "Public", "535", "Panthers", "Black and orange"], ["Westby", "Westby", "Public", "359", "Norsemen", "Red and white"], ["Milwaukee Marshall", "Milwaukee", "Public", "789", "Eagles", "Green and gold"], ["Holmen", "Holmen", "Public", "654", "Vikings", "Purple and white"], ["La Crosse Central", "La Crosse", "Public", "823", "Red Raiders", "Red and white"], ["Tomah", "Tomah", "Public", "487", "Hilltoppers", "Blue and gold"], ["De Soto", "De Soto", "Public", "172", "Pirates", "Black and gold"], ["Platteville", "Platteville", "Public", "395", "Hillmen", "Green and gold"], ["Sparta", "Sparta", "Public", "641", "Spartans", "Blue and gold"], ["Aquinas", "La Crosse", "Private", "137", "Blugolds", "Navy and white"], ["Melrose-Mindoro", "Melrose", "Public", "261", "Mustangs", "Blue and yellow"], ["Onalaska", "Onalaska", "Public", "797", "Hilltoppers", "Red and white"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Institution", "Location", "Affiliation", "Enrollment", "Mascot", "Colors"], "add_description": "The name of this table is Schools, and the headers of this table are Institution,Location,Affiliation,Enrollment,Mascot,Colors.", "source": "wikisql", "answer_md5": "[('7ff59f51e22e19de1b291978597947c2',)]"} +{"description": "The film_awards table is being updated with the result of Emma Stone winning the BAFTA Award for Best Actress in a Leading Role in 2017.", "label": ["INSERT INTO film_awards (Award,Year,Category,Recipient,Result) VALUES ('BAFTA', '2017', 'Best Actress in a Leading Role', 'Emma Stone', 'Won')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "film_awards", "table_info": {"columns": [{"name": "Award", "type": "TEXT"}, {"name": "Year", "type": "INT"}, {"name": "Category", "type": "TEXT"}, {"name": "Recipient", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}], "rows": [["Indonesian Film Festival", "2005", "Best Film", "-", "Nominated"], ["Indonesian Film Festival", "2005", "Best Director", "Hanung Bramantyo", "Won"], ["Indonesian Film Festival", "2005", "Best Screenplay", "Hanung Bramantyo, Salman Aristo, Eric Sasono", "Nominated"], ["Indonesian Film Festival", "2005", "Best Leading Actor", "Bucek Depp, Arie K Untung", "Nominated"], ["Indonesian Film Festival", "2005", "Best Leading Actress", "Marcella Zalianty", "Won"], ["Indonesian Film Festival", "2005", "Best Supporting Actress", "Elmayana Sabrenia", "Nominated"], ["Indonesian Film Festival", "2005", "Best Cinematography", "Tommy Jepang", "Nominated"], ["Indonesian Film Festival", "2005", "Best Artistic Direction", "Eros Eflin", "Nominated"], ["Indonesian Film Festival", "2005", "Best Editing", "Cesa David Luckmansyah", "Nominated"], ["Indonesian Film Festival", "2005", "Best Musical Direction", "Dewa Budjana", "Nominated"], ["Indonesian Film Festival", "2005", "Best Sound Arrangement", "Siti Asifa Nasution", "Won"], ["Academy Awards", "2010", "Best Picture", "The Social Network", "Nominated"], ["Academy Awards", "2010", "Best Director", "David Fincher", "Nominated"], ["Academy Awards", "2010", "Best Actor", "Jesse Eisenberg", "Nominated"], ["Academy Awards", "2010", "Best Supporting Actor", "Andrew Garfield", "Nominated"], ["Academy Awards", "2010", "Best Adapted Screenplay", "Aaron Sorkin", "Won"], ["Golden Globe Awards", "2015", "Best Motion Picture - Drama", "The Revenant", "Won"], ["Golden Globe Awards", "2015", "Best Director", "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "Won"], ["Golden Globe Awards", "2015", "Best Actor in a Motion Picture - Drama", "Leonardo DiCaprio", "Won"], ["Golden Globe Awards", "2015", "Best Supporting Actor in a Motion Picture", "Sylvester Stallone", "Nominated"], ["Golden Globe Awards", "2015", "Best Original Score - Motion Picture", "Ennio Morricone", "Won"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Award", "Year", "Category", "Recipient", "Result"], "add_description": "The name of this table is film_awards, and the headers of this table are Award,Year,Category,Recipient,Result.", "source": "fetaqa", "answer_md5": "[('5dd8cc271ba54daf5b758e65ff95098b',)]"} +{"description": "On September 10, 1967, the team played against the Oakland Raiders at Oakland-Alameda County Coliseum and won with a score of W 31-28. This game was part of the Football Season Results table, which also included details such as the week, game site, team record, and attendance. The team had a record of 1-1 at this point, and the attendance for this game was 21823.", "label": ["INSERT INTO `Football Season Results` (`Week`, `Date`, `Opponent`, `Result`, `Game site`, `Record`, `Attendance`) VALUES ('2', 'September 10, 1967', 'at Oakland Raiders', 'W 31-28', 'Oakland-Alameda County Coliseum', '1-1', '21823')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Season Results", "table_info": {"columns": [{"name": "Week", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Game site", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["1", "September 3, 1966", "at Houston Oilers", "L 7\u201345", "Rice Stadium", "0\u20131", "30156"], ["3", "September 18, 1966", "Boston Patriots", "L 10\u201324", "Bears Stadium", "0\u20132", "25337"], ["4", "September 25, 1966", "New York Jets", "L 7\u201316", "Bears Stadium", "0\u20133", "29878"], ["5", "October 2, 1966", "Houston Oilers", "W 40\u201338", "Bears Stadium", "1\u20133", "27203"], ["6", "October 8, 1966", "at Kansas City Chiefs", "L 10\u201337", "Municipal Stadium", "1\u20134", "33929"], ["7", "October 16, 1966", "at Miami Dolphins", "L 7\u201324", "Miami Orange Bowl", "1\u20135", "23393"], ["8", "October 23, 1966", "Kansas City Chiefs", "L 10\u201356", "Bears Stadium", "1\u20136", "26196"], ["9", "October 30, 1966", "at San Diego Chargers", "L 17\u201324", "Balboa Stadium", "1\u20137", "25819"], ["10", "November 6, 1966", "at Boston Patriots", "W 17\u201310", "Fenway Park", "2\u20137", "18154"], ["12", "November 20, 1966", "Oakland Raiders", "L 3\u201317", "Bears Stadium", "2\u20138", "26703"], ["13", "November 27, 1966", "San Diego Chargers", "W 20\u201317", "Bears Stadium", "3\u20138", "24860"], ["14", "December 4, 1966", "Miami Dolphins", "W 17\u20137", "Bears Stadium", "4\u20138", "32592"], ["15", "December 11, 1966", "at Oakland Raiders", "L 10\u201328", "Oakland-Alameda County Coliseum", "4\u20139", "31765"], ["16", "December 18, 1966", "at Denver Broncos", "L 14\u201345", "Mile High Stadium", "4\u201310", "22750"], ["1", "September 2, 1967", "San Diego Chargers", "W 27-17", "Bears Stadium", "1-0", "24192"], ["3", "September 17, 1967", "at Boston Patriots", "L 3-14", "Fenway Park", "1-2", "04567"], ["6", "October 8, 1967", "New York Jets", "W 14-7", "Bears Stadium", "2-4", "20234"], ["8", "October 22, 1967", "at Buffalo Bills", "L 14-20", "War Memorial Stadium", "2-6", "25767"], ["10", "November 5, 1967", "at Houston Oilers", "L 17-24", "Rice Stadium", "2-8", "27234"], ["11", "November 12, 1967", "Kansas City Chiefs", "W 31-24", "Bears Stadium", "3-8", "23456"], ["12", "November 19, 1967", "at San Diego Chargers", "L 7-27", "Balboa Stadium", "3-9", "27654"], ["13", "November 26, 1967", "Oakland Raiders", "L 3-31", "Bears Stadium", "3-10", "32098"], ["14", "December 3, 1967", "Boston Patriots", "W 24-10", "Bears Stadium", "4-10", "28903"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Week", "Date", "Opponent", "Result", "Game site", "Record", "Attendance"], "add_description": "The name of this table is Football Season Results, and the headers of this table are Week,Date,Opponent,Result,Game site,Record,Attendance.", "source": "wikisql", "answer_md5": "[('52fbf67c61f9aa2fcc6d49914d54880f',)]"} +{"description": "Data for a recent football match against Australia was inserted into the database with information on the date, venue, opponents, score, and competition.", "label": ["INSERT INTO football_matches (Date, Venue, Opponents, Score, Competition) VALUES ('10 February', 'Osaka (A)', 'Australia', '2-1', 'Friendly Match')"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "football_matches", "table_info": {"columns": [{"name": "Date", "type": "DATE"}, {"name": "Venue", "type": "TEXT"}, {"name": "Opponents", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}], "rows": [["20 March", "Fukuoka (A)", "Japan", "2-0", "Sanix Cup"], ["20 March", "Fukuoka (A)", "China PR", "1-0", "Sanix Cup"], ["8 August", "Toyota (N)", "Brazil", "0-0", "Toyota Cup"], ["9 August", "Toyota (A)", "Japan", "2-2", "Toyota Cup"], ["10 August", "Toyota (N)", "United Arab Emirates", "6-0", "Toyota Cup"], ["4 October", "Tashkent (N)", "India", "5-2", "AFC U-16 Championship (Group B)"], ["6 October", "Tashkent (N)", "Indonesia", "9-0", "AFC U-16 Championship (Group B)"], ["8 October", "Tashkent (N)", "Syria", "1-1", "AFC U-16 Championship (Group B)"], ["12 October", "Tashkent (A)", "Uzbekistan", "3-0", "AFC U-16 Championship (Quarterfinal)"], ["15 October", "Tashkent (N)", "Japan", "2-1", "AFC U-16 Championship (Semifinal)"], ["18 October", "Tashkent (N)", "Iran", "1-2", "AFC U-16 Championship (Final)"], ["1 January", "Tokyo (H)", "South Korea", "3-2", "New Year Cup"], ["5 February", "Osaka (A)", "China PR", "2-1", "Friendly"], ["10 April", "Yokohama (H)", "Thailand", "4-0", "AFC U-23 Championship (Group A)"], ["12 April", "Yokohama (H)", "Hong Kong", "6-0", "AFC U-23 Championship (Group A)"], ["14 April", "Yokohama (H)", "Australia", "2-2", "AFC U-23 Championship (Group A)"], ["16 June", "Kanagawa (A)", "Vietnam", "1-0", "Friendly"], ["28 August", "Saitama (H)", "United Arab Emirates", "2-1", "World Cup Qualifiers (Round 2)"], ["2 September", "Jeddah (A)", "Saudi Arabia", "0-0", "World Cup Qualifiers (Round 2)"], ["7 October", "Kobe (H)", "Iraq", "2-0", "World Cup Qualifiers (Round 2)"], ["12 November", "Saitama (H)", "Australia", "1-0", "World Cup Qualifiers (Round 2)"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Venue", "Opponents", "Score", "Competition"], "add_description": "The name of this table is football_matches, and the headers of this table are Date,Venue,Opponents,Score,Competition.", "source": "sqa", "answer_md5": "[('aaa99bf2f6cd4efd03a8afe3c00f6154',)]"} +{"description": "In 2010, Stroud & Swindon Building Society was merged with Coventry Building Society and succeeded by them in the Building Society Mergers table.", "label": ["INSERT INTO `Building Society Mergers` (Name, Fate, Successor, Year) VALUES ('Stroud & Swindon Building Society', 'merged with the', 'Coventry Building Society', '2010')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Building Society Mergers", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Fate", "type": "TEXT"}, {"name": "Successor", "type": "TEXT"}, {"name": "Year", "type": "YEAR"}], "rows": [["Abbey Road Building Society and National Building Society", "merged to form the", "Abbey National Building Society", "1944"], ["Bingley Permanent Building Society and Bradford Equitable Building Society", "merged to form the", "Bradford & Bingley Building Society", "1964"], ["Co-operative Permanent Building Society", "changed its name to", "Nationwide Building Society", "1970"], ["Leicester Permanent Building Society and Leicester Temperance Building Society", "merged to form the", "Leicester Building Society", "1974"], ["Bedfordshire Building Society and Temperance Permanent", "merged to form", "Gateway Building Society", "1974"], ["Leek & Westbourne Building Society and Oldbury Britannia Building Society", "merged to form", "Britannia Building Society", "1975"], ["Huddersfield & Bradford Building Society and West Yorkshire Building Society", "merged to form", "Yorkshire Building Society", "1982"], ["Coventry Economic Building Society and Coventry Provident Building Society", "merged to form the", "Coventry Building Society", "1983"], ["Burnley Building Society and Provincial Building Society", "merged to form the", "National & Provincial Building Society", "1984"], ["London Permanent Building Society ( est 1914 )", "merged into", "Cheltenham and Gloucester", "1984"], ["Alliance Building Society and Leicester Building Society", "merged to form the", "Alliance & Leicester Building Society", "1985"], ["Waltham Abbey Building Society ( 1847 )", "merged with the", "Cheltenham and Gloucester Building Society", "1985"], ["Birmingham & Bridgwater Building Society and Midshires Building Society", "merged to form the", "Birmingham Midshires Building Society", "1986"], ["Norwich Building Society and Peterborough Building Society", "merged to form the", "Norwich & Peterborough Building Society", "1986"], ["Anglia Building Society and Nationwide Building Society", "merged to form which changed name to the", "Nationwide Anglia Building Society Nationwide Building Society", "1987 1991"], ["Gateway Building Society and Woolwich Equitable Building Society", "merged to form the", "Woolwich Building Society", "1988"], ["Wessex Building Society and Portman Building Society", "merged to form the", "Portman Wessex Building Society", "1989"], ["Regency & West of England Building Society and Portman Wessex Building Society", "merged to form", "Portman Building Society", "1990"], ["Hendon Building Society", "was taken over by", "Bradford & Bingley Building Society", "1991"], ["Haywards Heath Building Society", "merged with the", "Yorkshire Building Society", "1992"], ["Northern Rock Building Society and Staffordshire Building Society", "merged to form the", "Northern Rock", "1997"], ["London & Manchester Building Society and Sheffield Building Society", "merged to form the", "Sheffield & London Building Society", "2000"], ["Derbyshire Building Society and Cheshire Building Society", "merged to form the", "Nationwide Cheshire Building Society", "2008"], ["Dudley Building Society and Lambeth Building Society", "merged to form the", "Dudley Lambeth Building Society", "2011"], ["Stroud & Swindon Building Society and Coventry Building Society", "merged to form the", "Coventry Stroud & Swindon Building Society", "2010"], ["Nottingham Building Society and Shepshed Building Society", "merged to form", "Nottingham Shepshed Building Society", "2007"], ["Buckinghamshire Building Society and Newbury Building Society", "merged to form the", "Newbury Buckinghamshire Building Society", "2016"], ["Penrith Building Society and Furness Building Society", "merged to form", "Furness Penrith Building Society", "2015"], ["Fazeley Building Society and Leek Building Society", "merged to form the", "Leek Fazeley Building Society", "2018"], ["Beverley Building Society and Monmouthshire Building Society", "merged to form the", "Monmouthshire Beverley Building Society", "2017"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Fate", "Successor", "Year"], "add_description": "The name of this table is Building Society Mergers, and the headers of this table are Name,Fate,Successor,Year.", "source": "hybridqa", "answer_md5": "[('29723dfb8bbc78a31df806da12f2e0f1',)]"} +{"description": "The `Location Listing` includes the `Name` 'Central Park', the `Location` '59th to 110th Street', the `City` 'New York City', and the `Listing date` 'July 21, 1858'.", "label": ["INSERT INTO `Location Listing` (`Name`, `Location`, `City`, `Listing date`) VALUES ('Central Park', '59th to 110th Street', 'New York City', 'July 21, 1858')"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Location Listing", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "City", "type": "TEXT"}, {"name": "Listing date", "type": "DATE"}], "rows": [["Branch County Courthouse Informational Site", "31 Division Street", "Coldwater", "March 16, 1989"], ["Bronson Public Library", "207 Matteson Street", "Bronson", "September 28, 2000"], ["Chicago Road Informational Designation", "US-12 and Prairie River Road (Park 1.5 miles west of Bronson", "Bronson Township", "September 17, 1957"], ["City of Coldwater Informational Designation", "City Park at intersection of US-12 and US-27", "Coldwater", "April 14, 1961"], ["Edwin R. Clarke Library (Michigan Library Association)", "12 East Chicago Street, between Division and Hudson streets", "Coldwater", "March 9, 1966"], ["Dr. Hawley Harvey Crippen Home Site Informational Designation", "66 North Monroe Street", "Coldwater", "August 21, 1987"], ["East Chicago Street Historic District+", "Chicago Street from Wright to Division streets, including the four parks at Division", "Coldwater", "July 26, 1974"], ["First Presbyterian Church+", "52 Marshall Street, NE corner of Marshall and Church streets", "Coldwater", "June 15, 1979"], ["Abram C. Fisk House+", "867 East Chicago Street", "Coldwater", "June 15, 1979"], ["William P. Hurd House", "601 North Broadway", "Union City", "July 17, 1981"], ["Lanphere-Pratt House", "90 Division Street", "Coldwater", "February 23, 1978"], ["Henry A. Locke House", "140 East Division Street", "Sherwood", "March 19, 1980"], ["Governor Cyrus Gray Luce Homesite Informational Site", "Northeast corner of Division and East Washington streets", "Coldwater", "August 15, 1975"], ["Methodist Episcopal Church", "126 Marshall Road", "Coldwater", "April 17, 1997"], ["General John G. Parkhurst House", "55 North Clay Street", "Coldwater", "June 15, 1979"], ["Harriet Quimby Informational Designation", "Branch County Memorial Airport", "Coldwater", "January 21, 1988"], ["Quincy Township Public Library", "11 North Main Street, just north of US-12", "Quincy", "April 25, 1988"], ["State Public School at Coldwater", "620 Marshall Road", "Coldwater", "May 13, 1981"], ["Tibbits Opera House", "14 South Hanchett Street", "Coldwater", "December 11, 1970"], ["Union City Iron Furnace", "M-60 near Waterworks Road", "Union Township", "February 14, 1963"], ["Union City Methodist Episcopal Church", "200 Ellen Street", "Union City", "September 19, 1991"], ["Lucius M. Wing House+", "27 South Jefferson Street, NE corner of S. Jefferson and East Pearl", "Coldwater", "October 17, 1974"], ["John D. Zimmerman House", "119 East High Street", "Union City", "September 21, 1983"], ["Coldwater City Hall", "1 Grand Street", "Coldwater", "November 12, 1920"], ["Allen Antique Barn", "121 West Chicago Street", "Allen", "June 7, 1990"], ["Benton Township Library", "4642 Ridge Road", "Union City", "September 10, 2002"], ["Branch County Master Gardener Demonstration Garden", "699 E Marshall St", "Coldwater", "April 20, 2018"], ["Brownell Presbyterian Church", "16040 Old 27 S.", "Tekonsha", "October 1, 1992"], ["City of Bronson Historical District", "Matteson Street & US-12", "Bronson", "February 1, 1988"], ["M&T Railroad Bridge", "W. Railroad St.", "Tekonsha", "September 6, 1996"], ["Old Union City Depot", "5 Railroad Street", "Union City", "September 14, 2006"], ["Lake of the Woods Historical site", "665 Lake Dr", "Coldwater", "August 12, 1943"], ["Sherwood Town Hall", "116 North Sherman Street", "Sherwood", "August 3, 1979"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Location", "City", "Listing date"], "add_description": "The name of this table is Location Listing, and the headers of this table are Name,Location,City,Listing date.", "source": "sqa", "answer_md5": "[('52662448bd1a593f5044fc7ffffb5f08',)]"} +{"description": "Insert into the table named venue table with columns named name, location and type, values 'V\u00e4sterportshallen', 'Helsingborg', 'Indoor sports arena'.", "label": ["INSERT INTO venue_table (Name, Location, Type) VALUES ('V\u00e4sterportshallen', 'Helsingborg', 'Indoor sports arena')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "venue_table", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}], "rows": [["ABB Arena", "V\u00e4ster\u00e5s", "Multi-purpose indoor arena"], ["AXA Sports Center", "S\u00f6dert\u00e4lje", "Ice hockey arena"], ["Behrn Arena", "\u00d6rebro", "Football stadium"], ["Coop Norrbotten Arena", "Lule\u00e5", "Ice hockey arena"], ["E.ON Arena", "Timr\u00e5", "Ice hockey arena"], ["Ericsson Globe", "Stockholm", "Multi-purpose indoor arena"], ["Fj\u00e4llr\u00e4ven Center", "\u00d6rnsk\u00f6ldsvik", "Multi-purpose indoor arena"], ["Friends Arena", "Solna", "Football stadium"], ["FM Mattsson Arena", "Mora", "Multi-purpose indoor arena"], ["Gavlerinken Arena", "G\u00e4vle", "Multi-purpose indoor arena"], ["Kinnarps Arena", "J\u00f6nk\u00f6ping", "Ice hockey arena"], ["L\u00f6fbergs Arena", "Karlstad", "Ice hockey arena"], ["Myresj\u00f6hus Arena", "V\u00e4xj\u00f6", "Football stadium"], ["Norrporten Arena", "Sundsvall", "Multi-purpose stadium"], ["PEAB Arena", "Nyk\u00f6ping", "Ice hockey arena"], ["Saab Arena", "Link\u00f6ping", "Multi-purpose indoor arena"], ["Skellefte\u00e5 Kraft Arena", "Skellefte\u00e5", "Ice hockey arena"], ["Swedbank Park", "V\u00e4ster\u00e5s", "Multi-purpose stadium"], ["Tegera Arena", "Leksand", "Ice hockey arena"], ["Tele2 Arena", "Stockholm", "Multi-purpose stadium"], ["A3 Arena", "Uppsala", "Multi-purpose indoor arena"], ["Blekinge Arena", "Karlskrona", "Ice hockey arena"], ["Cloetta Center", "Link\u00f6ping", "Multi-purpose indoor arena"], ["Dalhalla", "R\u00e4ttvik", "Open-air amphitheater"], ["Eddahallen", "Halmstad", "Sports hall"], ["Gamla Ullevi", "Gothenburg", "Football stadium"], ["Hovet", "Stockholm", "Ice hockey arena"], ["Malm\u00f6 Arena", "Malm\u00f6", "Multi-purpose indoor arena"], ["Nya Parken", "Sandviken", "Football stadium"], ["S\u00f6derv\u00e4rnshallen", "Malm\u00f6", "Sports hall"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Location", "Type"], "add_description": "The name of this table is venue_table, and the headers of this table are Name,Location,Type.", "source": "hybridqa", "answer_md5": "[('49f548828d52e74dc8cc4996e4d2eb5d',)]"} +{"description": "The league standings table has been updated with Cruzeiro's poor performance, as they currently stand in 12th position with only 2 points from 9 games played, losing 9 games and having a negative goal difference of 18.", "label": ["INSERT INTO `League Standings` (Position, Team, Points, Played, Drawn, Lost, Against, Difference) VALUES (12, 'Cruzeiro', 2, 9, 0, 9, 23, -18)"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "League Standings", "table_info": {"columns": [{"name": "Position", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}, {"name": "Played", "type": "TEXT"}, {"name": "Drawn", "type": "TEXT"}, {"name": "Lost", "type": "TEXT"}, {"name": "Against", "type": "TEXT"}, {"name": "Difference", "type": "TEXT"}], "rows": [["1", "Fluminense", "16", "9", "2", "0", "11", "12"], ["2", "Vasco da Gama", "11", "9", "1", "3", "14", "3"], ["3", "Flamengo", "11", "9", "1", "3", "11", "8"], ["4", "Santos", "10", "9", "2", "3", "16", "6"], ["5", "Portuguesa", "9", "9", "1", "4", "21", "0"], ["6", "Botafogo", "9", "9", "3", "3", "19", "- 3"], ["7", "S\u00e3o Paulo", "8", "9", "2", "4", "12", "2"], ["8", "Palmeiras", "6", "9", "4", "4", "22", "- 8"], ["9", "Corinthians", "6", "9", "4", "4", "20", "- 10"], ["10", "Am\u00e9rica", "4", "9", "0", "7", "20", "- 10"], ["1", "Barcelona", "25", "10", "5", "3", "8", "7"], ["2", "Real Madrid", "23", "10", "4", "5", "13", "2"], ["3", "Atletico Madrid", "22", "10", "3", "6", "10", "3"], ["4", "Sevilla", "21", "10", "3", "7", "12", "1"], ["5", "Real Sociedad", "20", "10", "5", "2", "9", "5"], ["6", "Valencia", "17", "10", "4", "4", "14", "- 2"], ["7", "Villarreal", "16", "10", "4", "3", "11", "3"], ["8", "Athletic Bilbao", "14", "10", "3", "5", "17", "- 3"], ["9", "Celta Vigo", "12", "10", "3", "3", "15", "- 3"], ["10", "Levante", "11", "10", "2", "5", "19", "- 8"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Position", "Team", "Points", "Played", "Drawn", "Lost", "Against", "Difference"], "add_description": "The name of this table is League Standings, and the headers of this table are Position,Team,Points,Played,Drawn,Lost,Against,Difference.", "source": "wikisql", "answer_md5": "[('63fb9fc08e18f06a3985e8065f0c5ac2',)]"} +{"description": "The Movie_Credits table is being inserted with the value of Year, Title, Role, and Notes, with values of '2019', 'Joker', 'Arthur Fleck/Joker', and 'Academy Award winning performance for Best Actor', respectively.", "label": ["INSERT INTO Movie_Credits (Year,Title,Role,Notes) VALUES ('2019','Joker','Arthur Fleck/Joker','Academy Award winning performance for Best Actor')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Movie_Credits", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2002", "Resident Evil", "Chad Kaplan", "-"], ["2006", "DOA: Dead or Alive", "Butler", "-"], ["2013", "Patrick", "Brian Wright", "-"], ["2007", "The Condemned", "Ethan", "-"], ["2004", "Exorcist: The Beginning", "Joseph", "-"], ["2008", "Solstice", "Nick", "-"], ["2011", "The Rite", "Fr. Matthew", "-"], ["2018", "The Meg", "Morris", "-"], ["2016", "Fifty Shades of Black", "Mike", "-"], ["2009", "The Stepfather", "Michael Harding", "-"], ["2005", "Doom", "Duke", "-"], ["2012", "Silent Hill: Revelation 3D", "Mannequin Monster", "-"], ["2010", "The Ghost Writer", "Richard Rycart", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Movie_Credits, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('5d674e899a7691e39b2f0781acc65be9',)]"} +{"description": "Insert a new record into the Senators table with values for Senator as Mitt Romney, Party as Republican, State as Utah, and Religion as Mormon.", "label": ["INSERT INTO Senators (Senator,Party,State,Religion) VALUES ('Mitt Romney', 'Republican', 'Utah', 'Mormon')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Senators", "table_info": {"columns": [{"name": "Senator", "type": "TEXT"}, {"name": "Party", "type": "TEXT"}, {"name": "State", "type": "TEXT"}, {"name": "Religion", "type": "TEXT"}], "rows": [["Mike Braun", "Republican", "Indiana", "Catholic"], ["Maria Cantwell", "Democrat", "Washington", "Catholic"], ["Bob Casey", "Democrat", "Pennsylvania", "Catholic"], ["Susan Collins", "Republican", "Maine", "Catholic"], ["Catherine Cortez Masto", "Democrat", "Nevada", "Catholic"], ["Dick Durbin", "Democrat", "Illinois", "Catholic"], ["Kirsten Gillibrand", "Democrat", "New York", "Catholic"], ["John Hoeven", "Republican", "North Dakota", "Catholic"], ["Tim Kaine", "Democrat", "Virginia", "Catholic"], ["Patrick Leahy", "Democrat", "Vermont", "Catholic"], ["Joe Manchin", "Democrat", "West Virginia", "Catholic"], ["Ed Markey", "Democrat", "Massachusetts", "Catholic"], ["Bob Menendez", "Democrat", "New Jersey", "Catholic"], ["Lisa Murkowski", "Republican", "Alaska", "Catholic"], ["Patty Murray", "Democrat", "Washington", "Catholic"], ["Jack Reed", "Democrat", "Rhode Island", "Catholic"], ["Jim Risch", "Republican", "Idaho", "Catholic"], ["Mike Rounds", "Republican", "South Dakota", "Catholic"], ["Marco Rubio", "Republican", "Florida", "Catholic"], ["Dan Sullivan", "Republican", "Alaska", "Catholic"], ["Tom Cotton", "Republican", "Arkansas", "Baptist"], ["Tammy Baldwin", "Democrat", "Wisconsin", "Agnostic"], ["Rand Paul", "Republican", "Kentucky", "Presbyterian"], ["Angus King", "Independent", "Maine", "Episcopalian"], ["Maggie Hassan", "Democrat", "New Hampshire", "Roman Catholic"], ["Ted Cruz", "Republican", "Texas", "Baptist"], ["Cory Booker", "Democrat", "New Jersey", "Protestant"], ["Roy Blunt", "Republican", "Missouri", "Christian"], ["Elizabeth Warren", "Democrat", "Massachusetts", "Methodist"], ["John McCain", "Republican", "Arizona", "Episcopalian"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Senator", "Party", "State", "Religion"], "add_description": "The name of this table is Senators, and the headers of this table are Senator,Party,State,Religion.", "source": "hybridqa", "answer_md5": "[('c130d30f91061d80326a10121fe72430',)]"} +{"description": "The Berjaya Times Square Tower A in Kuala Lumpur, Malaysia is a skyscraper and stands at 203 metres (666ft). It is used as a hotel, office, and retail space.", "label": ["INSERT INTO `Tallest Structures by Main Use and Location` (`Name`, `Pinnacle height`, `Structural type`, `Main use`, `Country`, `Town`) VALUES ('Berjaya Times Square Tower A', '203 metres (666ft)', 'Skyscraper', 'Hotel, office, retail', 'Malaysia', 'Kuala Lumpur')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Tallest Structures by Main Use and Location", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Pinnacle height", "type": "TEXT"}, {"name": "Structural type", "type": "TEXT"}, {"name": "Main use", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Town", "type": "TEXT"}], "rows": [["The Marina Torch", "metres (ft)", "2 lattice towers", "River powerline crossing", "UAE", "Dubai"], ["WTTV Television Tower", "345 metres (1,132ft)", "Guyed mast", "UHF/VHF-transmission", "USA", "Trafalgar , Indiana"], ["Yangtze River Crossing", "metres (ft)", "2 lattice towers", "River powerline crossing", "People's Republic of China", "Jiangyin"], ["Millau Viaduct", "metres (ft)", "Bridge Pillar", "Motorway", "France", "Millau"], ["WOWK Television Tower", "339 metres (1,111ft)", "Guyed mast", "UHF/VHF-transmission", "U.S.", "Huntington , West Virginia"], ["Mast of Deutschlandsender Herzberg/Elster", "metres (ft)", "Guyed mast", "LF-transmission", "Germany", "Herzberg"], ["Mast of Raszyn radio transmitter", "metres (ft)", "Guyed mast", "LF-transmission", "Poland", "Raszyn"], ["KPDX Television Tower", "333 metres (1,081ft)", "Guyed mast", "UHF/VHF-transmission", "U.S.", "Portland , Oregon"], ["Rose Tower", "metres (ft)", "Skyscraper", "Hotel", "United Arab Emirates", "Dubai"], ["Emley Moor Tower (Mk.3)", "330 metres (1,084ft)", "Concrete Tower", "UHF/VHF-transmission", "U.K.", "Emley , West Yorkshire"], ["Ryugyong Hotel", "metres (ft)", "Concrete skyscraper", "Hotel (unfinished)", "North Korea", "Pyongyang, North Korea"], ["Sky Tower", "metres (ft)", "Concrete tower", "Observation, UHF/VHF-transmission", "New Zealand", "Auckland , New Zealand"], ["Hollola TV Mast", "metres (ft)", "Guyed mast", "UHF/VHF-transmission", "Finland", "Hollola"], ["Vilnius TV Tower", "metres (ft)", "tConcrete Tower", "Telecommunications, observation, attraction", "Lithuania", "Vilnius"], ["Eiffel Tower", "metres (ft)", "iron tower", "observation, UHF/VHF-transmission", "France", "Paris"], ["Wusung Radio Tower [ citation needed ]", "metres (ft)", "guyed mast", "LF-transmission", "China", "Wusung"], ["Chrysler Building", "metres (ft)", "skyscraper", "office", "USA", "New York City"], ["Lakihegy Tower", "metres (ft)", "Guyed mast", "MW-transmission", "Hungary", "Lakihegy"], ["NHK Kawaguchi Transmitter", "metres (ft)", "guyed mast", "MF-transmission", "Japan", "Kawaguchi, Saitama"], ["Azeri TV Tower", "metres (ft)", "Concrete tower", "UHF/VHF-transmission", "Azerbaijan", "Baku"], ["Chimney of Ugljevik Power Plant", "metres (ft)", "Chimney", "Power station", "Bosnia and Herzegovina", "Ugljevik"], ["Mendlesham Mast", "305 metres (1,002ft)", "Guyed mast", "UHF/VHF-transmission", "UK", "Mendlesham , Suffolk"], ["Chimney of Sasol Secunda Power Plant", "metres (ft)", "Chimney", "Power station", "South Africa", "Secunda"], ["Mumbai Television Tower", "metres (ft)", "Mast", "UHF/VHF-transmission", "India", "Mumbai"], ["Chimney of Orot Rabin", "metres (ft)", "Chimney", "Power station", "Israel", "Hadera"], ["Chimney of Nov\u00e1ky Power Plant", "metres (ft)", "Chimney", "Power station", "Slovakia", "Nov\u00e1ky"], ["Mast of Moscow Radio Centre 13", "metres (ft)", "Guyed mast", "FM-Transmission", "Russia", "Balashikha"], ["Tokyo Skytree", "634 meters (2,080 ft)", "Concrete tower", "Observation, UHF/VHF-transmission", "Japan", "Tokyo"], ["KVLY-TV mast", "628.8 meters (2,063 ft)", "Guyed mast", "UHF/VHF-transmission", "USA", "Tower City, North Dakota"], ["Abraj Al Bait Clock Tower", "601 meters (1,971 ft)", "Skyscraper", "Hotel", "Saudi Arabia", "Mecca"], ["CN Tower", "553.3 meters (1,815 ft)", "Concrete tower", "Observation, UHF/VHF-transmission", "Canada", "Toronto"], ["Oriental Pearl Tower", "467.9 meters (1,535 ft)", "Concrete tower", "Observation, UHF/VHF-transmission", "China", "Shanghai"], ["Berliner Fernsehturm", "368 meters (1,207 ft)", "Concrete tower", "Observation, UHF/VHF-transmission", "Germany", "Berlin"], ["Shanghai Tower", "632 meters (2,073 ft)", "Skyscraper", "Office", "China", "Shanghai"], ["Tokyo Tower", "333 meters (1,093 ft)", "Steel tower", "Observation, UHF/VHF-transmission", "Japan", "Tokyo"], ["Landmark Tower", "296.3 meters (972 ft)", "Skyscraper", "Office, hotel", "Japan", "Yokohama"], ["Moscow Tower", "370 meters (1,214 ft)", "Skyscraper", "Office", "Russia", "Moscow"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Pinnacle height", "Structural type", "Main use", "Country", "Town"], "add_description": "The name of this table is Tallest Structures by Main Use and Location, and the headers of this table are Name,Pinnacle height,Structural type,Main use,Country,Town.", "source": "wikisql", "answer_md5": "[('d91747b1b86cc9c6dce44f234558114e',)]"} +{"description": "The 2021 Horse Racing Champions database includes the following information: Year='2021', Winner='Medina Spirit', Second='Mandaloun', Third='Hot Rod Charlie', and Starters='19'.", "label": ["INSERT INTO Horse_Racing_Champions (Year, Winner, Second, Third, Starters) VALUES ('2021', 'Medina Spirit', 'Mandaloun', 'Hot Rod Charlie', '19')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Horse_Racing_Champions", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Winner", "type": "TEXT"}, {"name": "Second", "type": "TEXT"}, {"name": "Third", "type": "TEXT"}, {"name": "Starters", "type": "INT"}], "rows": [["2018", "Accelerate", "Gunnevera", "Thunder Snow", "14"], ["2017", "Gun Runner", "Collected", "West Coast", "11"], ["2016", "Arrogate", "California Chrome", "Keen Ice", "9"], ["2015", "American Pharoah", "Effinex", "Honor Code", "8"], ["2014", "Bayern", "Toast of New York", "California Chrome", "14"], ["2013", "Mucho Macho Man", "Will Take Charge", "Declaration of War", "11"], ["2012", "Fort Larned", "Mucho Macho Man", "Flat Out", "12"], ["2011", "Drosselmeyer", "Game On Dude", "Ruler on Ice", "12"], ["2010", "Blame", "Zenyatta", "Fly Down", "12"], ["2009", "Zenyatta", "Gio Ponti", "Twice Over", "12"], ["2008", "Raven 's Pass", "Henrythenavigator", "Tiago", "12"], ["2007", "Curlin", "Hard Spun", "Awesome Gem", "9"], ["2006", "Invasor", "Bernardini", "Premium Tap", "13"], ["2005", "Saint Liam", "Flower Alley", "Perfect Drift", "13"], ["2004", "Ghostzapper", "Roses in May", "Pleasantly Perfect", "13"], ["2003", "Pleasantly Perfect", "Medaglia d'Oro", "Dynever", "10"], ["2002", "Volponi", "Medaglia d'Oro", "Milwaukee Brew", "12"], ["2001", "Tiznow", "Sakhee", "Albert the Great", "13"], ["2000", "Tiznow", "Giant 's Causeway", "Captain Steve", "13"], ["1999", "Cat Thief", "Budroyale", "Golden Missile", "14"], ["2021", "Essential Quality", "Hot Rod Charlie", "Rombauer", "10"], ["2020", "Authentic", "Tiz the Law", "Max Player", "11"], ["2019", "Vino Rosso", "Code of Honor", "Owendale", "14"], ["2018", "Accelerate", "Gunnevera", "Thunder Snow", "14"], ["2017", "Gun Runner", "Collected", "West Coast", "11"], ["2016", "Arrogate", "California Chrome", "Keen Ice", "9"], ["2015", "American Pharoah", "Effinex", "Honor Code", "8"], ["2014", "Bayern", "Toast of New York", "California Chrome", "14"], ["2013", "Mucho Macho Man", "Will Take Charge", "Declaration of War", "11"], ["2012", "Fort Larned", "Mucho Macho Man", "Flat Out", "12"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Winner", "Second", "Third", "Starters"], "add_description": "The name of this table is Horse_Racing_Champions, and the headers of this table are Year,Winner,Second,Third,Starters.", "source": "hybridqa", "answer_md5": "[('b712279f4e1ad3b7306847645c5f99aa',)]"} +{"description": "The TV show 'The Umbrella Academy' credited me as Sissy for the year 2020 in a main role.", "label": ["INSERT INTO `Acting Credits` (`Year`, `Title`, `Role`, `Notes`) VALUES ('2020', 'The Umbrella Academy', 'Sissy', 'Main role');"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Acting Credits", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2009\u20132010", "Majority Rules!", "Kiki Kincaid", "Main role"], ["2010", "What's Up Warthogs!", "Head cheerleader", "1 episode"], ["2011", "Rookie Blue", "Girl Passed Out", "1 episode"], ["2011", "Really Me", "Ramona", "1 episode"], ["2012", "Lost Girl", "Sarah", "1 episode"], ["2012", "Life with Boys", "Emma", "2 episodes"], ["2013", "Mudpit", "Nikki", "1 episode"], ["2015", "Open Heart", "Rayna Sherazi", "3 episodes"], ["2016", "Say Yes to the Dress", "Herself", "1 episode"], ["2010-2011", "Glee", "Cheerio", "5 episodes"], ["2012", "The Vampire Diaries", "Student", "1 episode"], ["2013-2014", "The Originals", "Young Witch", "6 episodes"], ["2014", "Supernatural", "Teenage Girl", "1 episode"], ["2015", "iZombie", "Party Girl", "1 episode"], ["2016", "The 100", "Grounder", "3 episodes"], ["2017", "Riverdale", "Student", "1 episode"], ["2018", "The Flash", "Waitress", "2 episodes"], ["2019-2020", "Chilling Adventures of Sabrina", "Witch", "8 episodes"], ["2021", "The Umbrella Academy", "Academy Student", "1 episode"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Acting Credits, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('12f0f973ec2fbfce508f3bf9c61aedb3',)]"} +{"description": "The 2018-19 NHL Rookie of the Year Award was won by Elias Pettersson of the Vancouver Canucks. He played as a center and was 20 years old at the time.", "label": ["INSERT INTO `NHL Rookie of the Year Award Winners` (Season, Winner, Team, Position, Age) VALUES ('2018-19', 'Elias Pettersson', 'Vancouver Canucks', 'C', '20')"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "NHL Rookie of the Year Award Winners", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "Winner", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Age", "type": "TEXT"}], "rows": [["1932\u201333", "Carl Voss", "Detroit Red Wings", "C", "25"], ["1933\u201334", "Russ Blinco", "Montreal Maroons", "C", "25"], ["1934\u201335", "Sweeney Schriner", "New York Americans", "LW", "22"], ["1935\u201336", "Mike Karakas", "Chicago Black Hawks", "G", "23"], ["1936\u201337", "Syl Apps", "Toronto Maple Leafs", "C", "21"], ["1937\u201338", "Cully Dahlstrom", "Chicago Black Hawks", "C", "24"], ["1938\u201339", "Frank Brimsek", "Boston Bruins", "G", "24"], ["1939\u201340", "Kilby MacDonald", "New York Rangers", "LW", "25"], ["1940\u201341", "Johnny Quilty", "Montreal Canadiens", "C", "19"], ["1941\u201342", "Grant Warwick", "New York Rangers", "RW", "19"], ["1942\u201343", "Gaye Stewart", "Toronto Maple Leafs", "RW", "19"], ["1943\u201344", "Gus Bodnar", "Toronto Maple Leafs", "C", "20"], ["1944\u201345", "Frank McCool", "Toronto Maple Leafs", "G", "25"], ["1945\u201346", "Edgar Laprade", "New York Rangers", "C", "25"], ["1946\u201347", "Howie Meeker", "Toronto Maple Leafs", "RW", "21"], ["1947\u201348", "Jim McFadden", "Detroit Red Wings", "C", "27"], ["1948\u201349", "Pentti Lund", "New York Rangers", "RW", "22"], ["1949\u201350", "Jack Gelineau", "Boston Bruins", "G", "24"], ["1950\u201351", "Terry Sawchuk", "Detroit Red Wings", "G", "20"], ["1951\u201352", "Bernie Geoffrion", "Montreal Canadiens", "RW", "20"], ["1952\u201353", "Gump Worsley", "New York Rangers", "G", "23"], ["1953\u201354", "Camille Henry", "New York Rangers", "C", "20"], ["1954\u201355", "Ed Litzenberger", "Chicago Black Hawks", "RW", "22"], ["1955\u201356", "Glenn Hall", "Detroit Red Wings", "G", "23"], ["1956\u201357", "Larry Regan", "Boston Bruins", "RW", "26"], ["1957\u201358", "Frank Mahovlich", "Toronto Maple Leafs", "LW", "19"], ["1958\u201359", "Ralph Backstrom", "Montreal Canadiens", "C", "20"], ["1959\u201360", "Bill Hay", "Chicago Black Hawks", "C", "23"], ["1960\u201361", "Dave Keon", "Toronto Maple Leafs", "C", "20"], ["1961\u201362", "Bobby Rousseau", "Montreal Canadiens", "RW", "21"], ["1962\u201363", "Kent Douglas", "Toronto Maple Leafs", "D", "26"], ["1963\u201364", "Jacques Laperriere", "Montreal Canadiens", "D", "21"], ["1964\u201365", "Roger Crozier", "Detroit Red Wings", "G", "22"], ["1965\u201366", "Brit Selby", "Toronto Maple Leafs", "LW", "20"], ["1966\u201367", "Bobby Orr", "Boston Bruins", "D", "18"], ["1967\u201368", "Derek Sanderson", "Boston Bruins", "C", "21"], ["1968\u201369", "Danny Grant", "Minnesota North Stars", "RW", "23"], ["1969\u201370", "Tony Esposito", "Chicago Black Hawks", "G", "26"], ["1970\u201371", "Gilbert Perreault", "Buffalo Sabres", "C", "19"], ["1971\u201372", "Ken Dryden", "Montreal Canadiens", "G", "24"], ["1972\u201373", "Steve Vickers", "New York Rangers", "LW", "21"], ["1973\u201374", "Denis Potvin", "New York Islanders", "D", "19"], ["1974\u201375", "Eric Vail", "Atlanta Flames", "LW", "20"], ["1975\u201376", "Bryan Trottier", "New York Islanders", "C", "19"], ["1976\u201377", "Willi Plett", "Atlanta Flames", "RW", "21"], ["1977\u201378", "Mike Bossy", "New York Islanders", "RW", "20"], ["1978\u201379", "Bobby Smith", "Minnesota North Stars", "C", "20"], ["1979\u201380", "Ray Bourque", "Boston Bruins", "D", "19"], ["1980\u201381", "Peter Stastny", "Quebec Nordiques", "C", "24"], ["1981\u201382", "Dale Hawerchuk", "Winnipeg Jets", "C", "18"], ["1982\u201383", "Steve Larmer", "Chicago Black Hawks", "RW", "21"], ["1983\u201384", "Tom Barrasso", "Buffalo Sabres", "G", "18"], ["1984\u201385", "Mario Lemieux", "Pittsburgh Penguins", "C", "19"], ["1985\u201386", "Gary Suter", "Calgary Flames", "D", "21"], ["1986\u201387", "Luc Robitaille", "Los Angeles Kings", "LW", "20"], ["1987\u201388", "Joe Nieuwendyk", "Calgary Flames", "C", "21"], ["1988\u201389", "Brian Leetch", "New York Rangers", "D", "20"], ["1989\u201390", "Sergei Makarov", "Calgary Flames", "RW", "31"], ["1990\u201391", "Ed Belfour", "Chicago Blackhawks", "G", "25"], ["1991\u201392", "Pavel Bure", "Vancouver Canucks", "RW", "20"], ["1992\u201393", "Teemu Selanne", "Winnipeg Jets", "RW", "22"], ["1993\u201394", "Martin Brodeur", "New Jersey Devils", "G", "21"], ["1994\u201395", "Peter Forsberg", "Quebec Nordiques", "C", "21"], ["1995\u201396", "Daniel Alfredsson", "Ottawa Senators", "RW", "22"], ["1996\u201397", "Bryan Berard", "New York Islanders", "D", "19"], ["1997\u201398", "Sergei Samsonov", "Boston Bruins", "LW", "19"], ["1998\u201399", "Chris Drury", "Colorado Avalanche", "C", "22"], ["1999\u20132000", "Scott Gomez", "New Jersey Devils", "C", "19"], ["2000\u201301", "Evgeni Nabokov", "San Jose Sharks", "G", "25"], ["2001\u201302", "Dany Heatley", "Atlanta Thrashers", "RW", "20"], ["2002\u201303", "Barret Jackman", "St. Louis Blues", "D", "21"], ["2003\u201304", "Andrew Raycroft", "Boston Bruins", "G", "23"], ["2004\u201305", "No winner because of the\\n2004\u201305 NHL lockout", "-", "-", "-"], ["2005\u201306", "Alexander Ovechkin", "Washington Capitals", "LW", "20"], ["2006\u201307", "Evgeni Malkin", "Pittsburgh Penguins", "C", "20"], ["2007\u201308", "Patrick Kane", "Chicago Blackhawks", "RW", "19"], ["2008\u201309", "Steve Mason", "Columbus Blue Jackets", "G", "21"], ["2009\u201310", "Tyler Myers", "Buffalo Sabres", "D", "20"], ["2010\u201311", "Jeff Skinner", "Carolina Hurricanes", "C", "18"], ["2011\u201312", "Gabriel Landeskog", "Colorado Avalanche", "LW", "19"], ["2012\u201313", "Jonathan Huberdeau", "Florida Panthers", "C", "19"], ["2022-23", "John Smith", "New York Rangers", "D", "24"], ["2023-24", "Sarah Johnson", "Los Angeles Kings", "LW", "21"], ["2024-25", "Michael Brown", "Montreal Canadiens", "C", "27"], ["2025-26", "Emily Lee", "Chicago Blackhawks", "RW", "23"], ["2026-27", "Joshua Kim", "Toronto Maple Leafs", "G", "26"], ["2027-28", "Michelle Davis", "Boston Bruins", "LW", "20"], ["2028-29", "David Park", "Vegas Golden Knights", "D", "22"], ["2029-30", "Ashley Chen", "Philadelphia Flyers", "C", "25"], ["2030-31", "Brian Kim", "Anaheim Ducks", "RW", "19"], ["2031-32", "Jessica Lee", "Pittsburgh Penguins", "G", "24"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Season", "Winner", "Team", "Position", "Age"], "add_description": "The name of this table is NHL Rookie of the Year Award Winners, and the headers of this table are Season,Winner,Team,Position,Age.", "source": "wikitq", "answer_md5": "[('755faa6f5f5a386904f4c86c3dfa750d',)]"} +{"description": "Insert the football match results into the 'Football Match Results' table with the following fields: 'Team 1', 'Agg.', 'Team 2', '1st leg', and '2nd leg' with corresponding values: 'Pelister', '1-3', 'Akademija Pandev', '0-1', '1-2'.", "label": ["INSERT INTO `Football Match Results` (`Team 1`, `Agg.`, `Team 2`, `1st leg`, `2nd leg`) VALUES ('Pelister', '1-3', 'Akademija Pandev', '0-1', '1-2');"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Match Results", "table_info": {"columns": [{"name": "Team 1", "type": "TEXT"}, {"name": "Agg.", "type": "TEXT"}, {"name": "Team 2", "type": "TEXT"}, {"name": "1st leg", "type": "TEXT"}, {"name": "2nd leg", "type": "TEXT"}], "rows": [["Bregalnica Kraun", "4\u20133", "Ba\u0161kimi", "2\u20131", "2\u20132"], ["Vardar", "5\u20130", "Ko\u017euv", "3\u20130", "2\u20130"], ["Pobeda", "5\u20132", "Vlazrimi", "3\u20130", "2\u20132"], ["Belasica", "1\u20135", "Sileks", "1\u20132", "0\u20133"], ["Makedonija", "4\u20132", "Napredok", "2\u20130", "2\u20132"], ["\u0160kendija 79", "5\u20131", "Renova", "4\u20130", "1\u20131"], ["Cementarnica", "4\u20132", "Karaorman", "3\u20132", "1\u20130"], ["Teteks", "4\u20133", "Lokomotiva", "3\u20131", "1\u20132"], ["Team A", "1\u20132", "Team B", "0\u20131", "1\u20131"], ["Team C", "3\u20130", "Team D", "2\u20130", "1\u20130"], ["Team E", "2\u20132", "Team F", "1\u20131", "1\u20131"], ["Team G", "0\u20131", "Team H", "0\u20130", "0\u20131"], ["Team I", "2\u20131", "Team J", "1\u20130", "1\u20131"], ["Team K", "5\u20130", "Team L", "4\u20130", "1\u20130"], ["Team M", "1\u20131", "Team N", "0\u20130", "1\u20131"], ["Team O", "2\u20130", "Team P", "1\u20130", "1\u20130"], ["Team Q", "3\u20132", "Team R", "2\u20131", "1\u20131"], ["Team S", "2\u20133", "Team T", "1\u20131", "1\u20132"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Team 1", "Agg.", "Team 2", "1st leg", "2nd leg"], "add_description": "The name of this table is Football Match Results, and the headers of this table are Team 1,Agg.,Team 2,1st leg,2nd leg.", "source": "wikisql", "answer_md5": "[('451abeb65d79448020d86c7e63e4ea5c',)]"} +{"description": "Record the Gold medalist of Men's 50 km Classic event in Cross-country skiing on March 15 as Dmitry Ivanov in the Medal Winners table.", "label": ["INSERT INTO `Medal Winners` (`Medal`, `Name`, `Sport`, `Event`, `Date`) VALUES ('Gold', 'Dmitry Ivanov', 'Cross-country skiing', \"Men's 50 km Classic\", 'March 15')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Medal Winners", "table_info": {"columns": [{"name": "Medal", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Sport", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Date", "type": "DATE"}], "rows": [["Gold", "Irek Zaripov", "Biathlon", "Men 's 2.4 km Pursuit , sitting", "March 13"], ["Gold", "Kirill Mikhaylov", "Biathlon", "Men 's 3 km Pursuit , standing", "March 13"], ["Gold", "Anna Burmistrova", "Biathlon", "Women 's 3 km Pursuit , standing", "March 13"], ["Gold", "Irek Zaripov", "Cross-country skiing", "Men 's 15 km , sitting", "March 14"], ["Gold", "Kirill Mikhaylov", "Cross-country skiing", "Men 's 20 km Free , standing", "March 15"], ["Gold", "Anna Burmistrova", "Cross-country skiing", "Women 's 15 km Free , standing", "March 15"], ["Gold", "Irek Zaripov", "Biathlon", "Men 's 12.5 km Individual , sitting", "March 17"], ["Gold", "Maria Iovleva", "Biathlon", "Women 's 10 km Individual , sitting", "March 17"], ["Gold", "Irek Zaripov", "Cross-country skiing", "Men 's 10 km , sitting", "March 18"], ["Gold", "Liubov Vasilyeva Mikhalina Lysova Maria Iovleva", "Cross-country skiing", "Women 's 3\u00d72.5 km Relay", "March 20"], ["Gold", "Sergey Shilov Kirill Mikhaylov Nikolay Polukhin", "Cross-country skiing", "Men 's 1\u00d74 km + 2\u00d75 km Relay", "March 20"], ["Gold", "Sergey Shilov", "Cross-country skiing", "Men 's 1 km Sprint , sitting", "March 21"], ["Silver", "Maria Iovleva", "Biathlon", "Women 's 2.4 km Pursuit , sitting", "March 13"], ["Silver", "Nikolay Polukhin", "Biathlon", "Men 's 3 km Pursuit , visually impaired", "March 13"], ["Silver", "Liubov Vasilyeva", "Biathlon", "Women 's 3 km Pursuit , visually impaired", "March 13"], ["Silver", "Roman Petushkov", "Cross-country skiing", "Men 's 15 km , sitting", "March 14"], ["Silver", "Nikolay Polukhin", "Cross-country skiing", "Men 's 20 km Free , visually impaired", "March 15"], ["Silver", "Liubov Vasilyeva", "Cross-country skiing", "Women 's 15 km Free , visually impaired", "March 15"], ["Silver", "Vladimir Kiselev", "Biathlon", "Men 's 12.5 km Individual , sitting", "March 17"], ["Silver", "Anna Burmistrova", "Biathlon", "Women 's 12.5 km Individual , standing", "March 17"], ["Bronze", "Ivan Ivanov", "Curling", "Men's Team", "March 22"], ["Silver", "Maria Petrova", "Figure Skating", "Women's Singles", "March 23"], ["Gold", "Alexander Petrov", "Ice Hockey", "Men's Team", "March 24"], ["Bronze", "Ekaterina Ivanova", "Speed Skating", "Women's 500m", "March 25"], ["Gold", "Dmitry Popov", "Figure Skating", "Men's Singles", "March 26"], ["Silver", "Svetlana Sokolova", "Curling", "Women's Team", "March 27"], ["Gold", "Andrey Ivanov", "Short Track Speed Skating", "Men's 1000m", "March 28"], ["Bronze", "Natalia Petrova", "Figure Skating", "Women's Singles", "March 29"], ["Silver", "Anna Sokolova", "Speed Skating", "Women's 1000m", "March 30"], ["Gold", "Ivan Petrov", "Ice Hockey", "Men's Team", "March 31"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Medal", "Name", "Sport", "Event", "Date"], "add_description": "The name of this table is Medal Winners, and the headers of this table are Medal,Name,Sport,Event,Date.", "source": "hybridqa", "answer_md5": "[('9b5a067adc5439bf6378f6b337369c1c',)]"} +{"description": "Add 'Roland Garros' under 'Tournament history from 2007-2012' and fill the columns 'Q2', 'Q1', 'A', '2R', '1R', 'A' with values.", "label": ["INSERT INTO `Tournament history from 2007-2012` VALUES('Roland Garros', 'Q2', 'Q1', 'A', '2R', '1R', 'A')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Tournament history from 2007-2012", "table_info": {"columns": [{"name": "Tournament", "type": "TEXT"}, {"name": "2007", "type": "TEXT"}, {"name": "2008", "type": "TEXT"}, {"name": "2009", "type": "TEXT"}, {"name": "2010", "type": "TEXT"}, {"name": "2011", "type": "TEXT"}, {"name": "2012", "type": "TEXT"}], "rows": [["Australian Open", "A", "A", "Q1", "Q2", "Q1", "1R"], ["French Open", "A", "A", "A", "Q1", "Q1", "Q1"], ["Wimbledon", "Q1", "A", "1R", "A", "1R", "2R"], ["US Open", "A", "A", "Q1", "A", "Q1", "Q1"], ["Win\u2013Loss", "0\u20130", "0\u20130", "0\u20131", "0\u20130", "0\u20131", "1\u20132"], ["Year-end Ranking", "558", "280", "270", "201", "162", "250"], ["Australian Open", "1R", "A", "Q1", "Q2", "Q1", "A"], ["Wimbledon", "2R", "A", "1R", "A", "Q1", "1R"], ["US Open", "Q1", "A", "Q1", "A", "1R", "Q1"], ["French Open", "A", "A", "A", "Q1", "A", "Q1"], ["Win\u2013Loss", "0\u20131", "0\u20130", "0\u20132", "0\u20130", "1\u20132", "0\u20131"], ["Year-end Ranking", "175", "325", "250", "290", "198", "210"], ["Australian Open", "A", "Q1", "Q1", "1R", "Q1", "A"], ["Wimbledon", "A", "1R", "2R", "A", "1R", "Q1"], ["US Open", "Q1", "Q1", "A", "Q1", "A", "Q1"], ["French Open", "A", "Q1", "A", "A", "Q1", "A"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Tournament", "2007", "2008", "2009", "2010", "2011", "2012"], "add_description": "The name of this table is Tournament history from 2007-2012, and the headers of this table are Tournament,2007,2008,2009,2010,2011,2012.", "source": "wikisql", "answer_md5": "[('06ca4a82efdd233d70ce992e47a8e7cd',)]"} +{"description": "Insert into the table of local authorities in Merseyside the data for Formby Range, which has a civil parish status, a population of 4,567, belongs to Sefton district, and is a former local authority of Formby Urban District.", "label": ["INSERT INTO `Local Authorities in Merseyside` (`Name`, `Status`, `Population`, `District`, `Former local authority`) VALUES ('Formby Range', 'Civil parish', '4,567', 'Sefton', 'Formby\\nUrban District')"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Local Authorities in Merseyside", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Status", "type": "TEXT"}, {"name": "Population", "type": "INT"}, {"name": "District", "type": "TEXT"}, {"name": "Former local authority", "type": "TEXT"}], "rows": [["Cronton", "Civil parish", "1,379", "Knowsley", "Whiston\\nRural District"], ["Halewood", "Town", "20,309", "Knowsley", "Whiston\\nRural District"], ["Huyton with Roby", "Unparished area", "49,859", "Knowsley", "Huyton with Roby\\nUrban District"], ["Kirkby", "Unparished area", "40,374", "Knowsley", "Kirkby\\nUrban District"], ["Knowsley", "Civil parish", "11,343", "Knowsley", "Whiston\\nRural District"], ["Prescot", "Town", "11,184", "Knowsley", "Prescot\\nUrban District"], ["Tarbock", "Civil parish", "2,382", "Knowsley", "Whiston\\nRural District"], ["Whiston", "Town", "13,629", "Knowsley", "Whiston\\nRural District"], ["Liverpool", "Unparished area", "439,473", "Liverpool", "Liverpool\\nCounty Borough"], ["Aintree Village", "Civil parish", "7,126", "Sefton", "West Lancashire\\nRural District"], ["Bootle", "Unparished area", "59,011", "Sefton", "Bootle\\nCounty Borough"], ["Crosby", "Unparished area", "45,872", "Sefton", "Crosby\\nMunicipal Borough"], ["Formby", "Civil parish", "23,586", "Sefton", "Formby\\nUrban District"], ["Hightown", "Civil parish", "2,247", "Sefton", "Crosby\\nMunicipal Borough"], ["Ince Blundell", "Civil parish", "518", "Sefton", "West Lancashire\\nRural District"], ["Litherland", "Unparished area", "18,629", "Sefton", "Litherland\\nUrban District"], ["Little Altcar", "Civil parish", "892", "Sefton", "West Lancashire\\nRural District"], ["Lydiate", "Civil parish", "6,672", "Sefton", "West Lancashire\\nRural District"], ["Maghull", "Town", "22,225", "Sefton", "West Lancashire\\nRural District"], ["Melling", "Civil parish", "2,810", "Sefton", "West Lancashire\\nRural District"], ["Sefton", "Civil parish", "772", "Sefton", "West Lancashire\\nRural District"], ["Southport", "Unparished area", "90,336", "Sefton", "Southport\\nCounty Borough"], ["Thornton", "Civil parish", "2,262", "Sefton", "West Lancashire\\nRural District"], ["Billinge Chapel End", "Civil parish", "6,554", "St Helens", "Billinge and Winstanley\\nUrban District"], ["Bold", "Civil parish", "2,283", "St Helens", "Whiston\\nRural District"], ["Eccleston", "Civil parish", "10,528", "St Helens", "Whiston\\nRural District"], ["Haydock", "Unparished area", "15,684", "St Helens", "Haydock\\nUrban District"], ["Newton le Willows", "Unparished area", "21,418", "St Helens", "Newton le Willows\\nUrban District"], ["Rainford", "Civil parish", "8,344", "St Helens", "Rainford\\nUrban District"], ["Rainhill", "Civil parish", "11,913", "St Helens", "Whiston\\nRural District"], ["Seneley Green", "Civil parish", "6,163", "St Helens", "Ashton in Makerfield\\nUrban District"], ["St Helens", "Unparished area", "91,414", "St Helens", "St Helens\\nCounty Borough"], ["Windle", "Civil parish", "2,542", "St Helens", "Whiston\\nRural District"], ["Bebington", "Unparished area", "58,226", "Wirral", "Bebington\\nMunicipal Borough"], ["Birkenhead", "Unparished area", "103,206", "Wirral", "Birkenhead\\nCounty Borough"], ["Heswall", "Unparished area", "29,977", "Wirral", "Wirral\\nUrban District"], ["Hoylake", "Unparished area", "35,655", "Wirral", "Hoylake\\nUrban District"], ["Wallasey", "Unparished area", "84,348", "Wirral", "Wallasey\\nCounty Borough"], ["Birkenhead", "Unparished area", "103,206", "Wirral", "Birkenhead\\nCounty Borough"], ["Rainford", "Civil parish", "8,344", "St Helens", "Rainford\\nUrban District"], ["Little Altcar", "Civil parish", "892", "Sefton", "West Lancashire\\nRural District"], ["Whiston", "Town", "13,629", "Knowsley", "Whiston\\nRural District"], ["Crosby", "Unparished area", "45,872", "Sefton", "Crosby\\nMunicipal Borough"], ["Halewood", "Town", "20,309", "Knowsley", "Whiston\\nRural District"], ["Haydock", "Unparished area", "15,684", "St Helens", "Haydock\\nUrban District"], ["Southport", "Unparished area", "90,336", "Sefton", "Southport\\nCounty Borough"], ["Huyton with Roby", "Unparished area", "49,859", "Knowsley", "Huyton with Roby\\nUrban District"], ["Lydiate", "Civil parish", "6,672", "Sefton", "West Lancashire\\nRural District"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Status", "Population", "District", "Former local authority"], "add_description": "The name of this table is Local Authorities in Merseyside, and the headers of this table are Name,Status,Population,District,Former local authority.", "source": "wikitq", "answer_md5": "[('2e08df49e665b7a7958a888fdb659d93',)]"} +{"description": "In 2010, the athlete achieved the 3rd position in 110 m hurdles event at Continental Cup held in Split, Croatia with a timing of 13.22, as recorded in the Athlete Results table.", "label": ["INSERT INTO `Athlete Results` (`Year`, `Competition`, `Venue`, `Position`, `Event`, `Notes`) VALUES ('2010', 'Continental Cup', 'Split, Croatia', '3rd', '110 m hurdles', '13.22')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Athlete Results", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2002", "NACAC U-25 Championships", "San Antonio, United States", "1st", "4 \u00d7 100 m relay", "39.79"], ["2005", "World Championships", "Helsinki, Finland", "4th", "200 m", "20.34"], ["2005", "World Athletics Final", "Monte Carlo, Monaco", "1st", "200 m", "19.96"], ["2006", "World Athletics Final", "Stuttgart, Germany", "3rd", "100 m", "9.92"], ["2006", "World Athletics Final", "Stuttgart, Germany", "1st", "200 m", "19.68"], ["2006", "IAAF World Cup", "Athens, Greece", "1st", "100 m", "9.88"], ["2007", "World Championships", "Osaka, Japan", "1st", "100 m", "9.85"], ["2007", "World Championships", "Osaka, Japan", "1st", "200 m", "19.76"], ["2007", "World Championships", "Osaka, Japan", "1st", "4\u00d7100 m relay", "37.78"], ["2008", "Olympic Games", "Beijing, China", "5th (semi-finals)", "100 m", "10.05"], ["2008", "Olympic Games", "Beijing, China", "DSQ", "4\u00d7100 m relay", "\u2014"], ["2009", "World Championships", "Berlin, Germany", "2nd", "100 m", "9.71"], ["2009", "World Athletics Final", "Thessaloniki, Greece", "1st", "100 m", "9.88"], ["2012", "Olympic Games**", "London, United Kingdom", "DSQ", "100 m", "9.80"], ["2012", "Olympic Games**", "London, United Kingdom", "DSQ", "4x100 m relay", "37.04"], ["2015", "World Relay Championships", "Nassau, Bahamas", "1st", "4 \u00d7 100 m relay", "37.38"], ["2015", "World Championships", "Beijing, China", "6th", "100 metres", "10.00"], ["2015", "World Championships", "Beijing, China", "DSQ", "4\u00d7100 metres relay", "\u2014"], ["2016", "Olympic Games", "Rio de Janeiro, Brazil", "DSQ", "4x100 m relay", "\u2014"], ["2008", "World Indoor Championships", "Valencia, Spain", "2nd", "60 m", "6.54"], ["2010", "World Indoor Championships", "Doha, Qatar", "1st", "60 m", "6.50"], ["2011", "World Championships", "Daegu, South Korea", "DNF", "100 m", "\u2014"], ["2011", "World Championships", "Daegu, South Korea", "1st", "200 m", "19.40"], ["2012", "World Indoor Championships", "Istanbul, Turkey", "1st", "60 m", "6.58"], ["2013", "World Championships", "Moscow, Russia", "2nd", "100 m", "9.85"], ["2013", "World Championships", "Moscow, Russia", "1st", "200 m", "19.66"], ["2014", "Commonwealth Games", "Glasgow, Scotland", "1st", "4 \u00d7 100 m relay", "38.10"], ["2015", "World Championships", "Beijing, China", "1st", "200 m", "19.55"], ["2016", "World Indoor Championships", "Portland, United States", "1st", "60 m", "6.44"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is Athlete Results, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('6d968c84a4c7e57af3e67e7556cbf2e0',)]"} +{"description": "The 'Best Animated Feature Film' award was won in 2009 at the Prague Independent Film Festival, which took place in Prague, Czech Republic. The details of the award can be found by querying the AwardWinners table and matching the 'Date' and 'Festival' columns.", "label": ["INSERT INTO AwardWinners (Date, Award, Festival, Location, Link) VALUES ('2009', 'Best Animated Feature Film', 'Prague Independent Film Festival', 'Prague, Czech Republic', '')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "AwardWinners", "table_info": {"columns": [{"name": "Date", "type": "DATE"}, {"name": "Award", "type": "TEXT"}, {"name": "Festival", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Link", "type": "TEXT"}], "rows": [["2004-12", "Best Visual Expression", "Magyar Filmszemle", "Hungary", "[ 1 ]"], ["2005-06-11", "Cristal for best feature", "Annecy International Animated Film Festival", "Annecy , France", "[ 2 ]"], ["2005-08-19", "Grand Prize", "Seoul International Cartoon and Animation Festival", "Seoul , South Korea", "[ 3 ]"], ["2005-09-25", "Mercury Filmworks Grand Prize For Animated Feature", "Ottawa International Animation Festival", "Ottawa , Ontario , Canada", "[ 4 ]"], ["2005-09-28", "Best Animated Feature", "KROK International Animated Films Festival", "Russia", "[ 5 ]"], ["2005-10-13", "Best Animated Film", "Festival de Cine de Sitges", "Sitges , Spain", "[ 6 ]"], ["2005", "Cross of Merit of the Republic of Hungary", "", "Hungary", "[ 7 ]"], ["2005", "Best Hungarian Feature ; Kecskem\u00e9t City Award", "KAFF ( Kecskem\u00e9t Animation Film Festival )", "Kecskem\u00e9t , Hungary", "[ 8 ]"], ["2005", "Golden Zagreb award", "Animafest Zagreb", "Zagreb , Croatia", ""], ["2006", "Best Feature", "Anima", "Spain", ""], ["2006", "Best Feature", "CUFF 2006 ( Calgary Underground Film Festival )", "Zagreb , Canada", "[ 9 ]"], ["2006", "Best feature ; Audience Award", "Anima ( film festival )", "Belgium", ""], ["2007", "Lisbon City Prize", "Monstra Festival", "Lisbon , Portugal", ""]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Date", "Award", "Festival", "Location", "Link"], "add_description": "The name of this table is AwardWinners, and the headers of this table are Date,Award,Festival,Location,Link.", "source": "hybridqa", "answer_md5": "[('c50d31ee0c027f1e0a0c1266dbd4dffa',)]"} +{"description": "The 'Football Cup Phases and Rounds' table is being updated with the details of the fourth round of the first phase, which includes 16 clubs that were winners from the previous round, 24 clubs remaining, and 16 clubs involved. There are no new entries this round and no leagues entering at this round.", "label": ["INSERT INTO `Football Cup Phases and Rounds` (Phase, Round, `Clubs remaining`, `Clubs involved`, `Winners from previous round`, `New entries this round`, `Leagues entering at this round`) VALUES ('First Phase', 'Fourth Round', '24', '16', '16', 'none', 'none')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Cup Phases and Rounds", "table_info": {"columns": [{"name": "Phase", "type": "TEXT"}, {"name": "Round", "type": "TEXT"}, {"name": "Clubs remaining", "type": "TEXT"}, {"name": "Clubs involved", "type": "TEXT"}, {"name": "Winners from previous round", "type": "TEXT"}, {"name": "New entries this round", "type": "TEXT"}, {"name": "Leagues entering at this round", "type": "TEXT"}], "rows": [["First Phase", "First Round", "78", "36", "none", "36", "Teams from Lega Pro and Serie D"], ["First Phase", "Second Round", "60", "40", "18", "22", "Serie B"], ["First Phase", "Third Round", "40", "32", "20", "12", "Lowest-ranked Serie A teams"], ["First Phase", "Fourth Round", "24", "16", "16", "none", "none"], ["Second Phase", "Round of 16", "16", "16", "8", "8", "Highest-ranked Serie A teams"], ["Second Phase", "Quarter-finals", "8", "8", "8", "none", "none"], ["Second Phase", "Semi-finals", "4", "4", "4", "none", "none"], ["First Phase", "Fifth Round", "16", "16", "8", "8", "Serie A teams qualified for European competitions"], ["First Phase", "Sixth Round", "8", "8", "8", "none", "none"], ["First Phase", "Seventh Round", "4", "4", "4", "none", "none"], ["First Phase", "Eighth Round", "2", "2", "2", "none", "none"], ["Second Phase", "Semi-finals", "2", "2", "2", "none", "none"], ["Second Phase", "Final", "1", "1", "1", "none", "none"], ["Playoff Phase", "Round of 16", "16", "16", "8", "8", "Serie A teams not qualified for European competitions"], ["Playoff Phase", "Quarter-finals", "8", "8", "8", "none", "none"], ["Playoff Phase", "Semi-finals", "4", "4", "4", "none", "none"], ["Playoff Phase", "Final", "2", "2", "2", "none", "none"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Phase", "Round", "Clubs remaining", "Clubs involved", "Winners from previous round", "New entries this round", "Leagues entering at this round"], "add_description": "The name of this table is Football Cup Phases and Rounds, and the headers of this table are Phase,Round,Clubs remaining,Clubs involved,Winners from previous round,New entries this round,Leagues entering at this round.", "source": "wikisql", "answer_md5": "[('b6c2286b87032389a5a06f14b839e59c',)]"} +{"description": "The movie 'Wonder Woman' in 2017 had a character named Diana Prince/Wonder Woman, added to the MovieCredits table with '-' in notes.", "label": ["INSERT INTO MovieCredits (Year, Title, Role, Notes) VALUES ('2017', 'Wonder Woman', 'Diana Prince/Wonder Woman', '-')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "MovieCredits", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2015", "Pan", "Nibs", "-"], ["2016", "A Monster Calls", "Conor O'Malley", "-"], ["2018", "Boundaries", "Henry", "-"], ["2018", "The Belly of the Whale", "Joey Moody", "-"], ["2018", "Multiplex", "Lewis", "short film"], ["2019", "The King", "Hal", "-"], ["2020", "The Devil All the Time", "Arvin Russell", "-"], ["2019", "Downton Abbey", "Tom Branson", "-"], ["2021", "Annette", "Henry McHenry", "-"], ["2021", "The Northman", "Amleth", "-"], ["2020", "The Midnight Sky", "Augustine", "-"], ["2020", "Rebecca", "Maxim de Winter", "-"], ["2017", "Loving Vincent", "Aruo", "-"], ["2019", "Little Women", "Teddy Laurence", "-"], ["2019", "Once Upon a Time in Hollywood", "Rick Dalton", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is MovieCredits, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('8b16b2bc18be4b34fff43307d054b9e9',)]"} +{"description": "Add David Lee to the Greek-lettered legislators table with the Original chapter being Kappa Xi and Notability being Member of the Michigan House of Representatives.", "label": ["INSERT INTO `Greek-lettered legislators table`(`Name`, `Original chapter`, `Notability`) VALUES ('David Lee', 'Kappa Xi', 'Member of the Michigan House of Representatives')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Greek-lettered legislators table", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Original chapter", "type": "TEXT"}, {"name": "Notability", "type": "TEXT"}], "rows": [["William T. Andrews", "unknown", "New York State Assembly"], ["Daniel T. Blue , Jr", "Gamma Beta", "North Carolina House of Representatives ; Speaker of the North Carolina House of Representatives ; 2002 Democratic candidate for the United States Senate"], ["Roy A. Burrell", "Eta Chi", "Louisiana House of Representatives ; former member of the Shreveport City Council ; former president of the Delta Upsilon Lambda chapter"], ["Randy D. Dunn", "Omicron Xi Lambda", "Missouri House of Representatives"], ["Al Edwards", "unknown", "Texas House of Representatives ; considered the father of the Juneteenth Holiday"], ["Patrick O. Jefferson", "Beta Phi", "Member of the Louisiana House of Representatives for District 11 ; lawyer in Arcadia , Louisiana"], ["Carl McCall", "Theta Zeta", "Legislator of New York ; Comptroller of New York ; 2002 Democratic candidate for Governor of New York"], ["William Byron Rumford", "Gamma Phi Lambda", "Member of the California State Legislature"], ["C. O. Simpkins , Sr", "Dillard University", "Member of the Louisiana House of Representatives for Caddo Parish , 1992 to 1996"], ["Albert Vann", "Alpha Xi Lambda", "New York State Assembly"], ["Herb Wesson", "Nu", "California State Assembly ; Speaker of the California State Assembly"], ["Tyrone Yates", "Alpha Alpha", "Ohio House of Representatives"], ["John Doe", "unknown", "Member of the Pennsylvania House of Representatives"], ["Jane Smith", "Beta Eta", "California State Senate"], ["Robert Johnson", "Theta Delta", "Tennessee House of Representatives"], ["Samantha Lee", "Eta Mu", "Illinois House of Representatives"], ["David Kim", "Alpha Lambda", "Member of the New Jersey General Assembly"], ["Jessica Rogers", "Theta Chi", "New York State Senate"], ["Andrew Nguyen", "Mu Nu", "Arizona House of Representatives"], ["Stephanie Chen", "Epsilon Omega", "Ohio State Senate"], ["Matthew Davis", "Theta Tau", "Georgia House of Representatives"], ["Emily Kim", "Zeta Tau Alpha", "Member of the Texas House of Representatives"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Original chapter", "Notability"], "add_description": "The name of this table is Greek-lettered legislators table, and the headers of this table are Name,Original chapter,Notability.", "source": "hybridqa", "answer_md5": "[('21009ca1992d739d438c6194280c4de3',)]"} +{"description": "Insert 'Enfield' into `Location Table` with '30' kilometers, '18.6' miles, and 'Hwy 102 Halifax, Truro To Hwy 104 (TCH) / Hwy 102' as destinations and '-' as notes.", "label": ["INSERT INTO `Location Table` (Location, km, mi, Destinations, Notes) VALUES ('Enfield', '30', '18.6', 'Hwy 102 Halifax, Truro To Hwy 104 (TCH) / Hwy 102', '-')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Location Table", "table_info": {"columns": [{"name": "Location", "type": "TEXT"}, {"name": "km", "type": "DECIMAL(5,1)"}, {"name": "mi", "type": "DECIMAL(4,1)"}, {"name": "Destinations", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Bedford", "0", "0", "Trunk 2 Upper Sackville, Truro, Halifax To Hwy 101 / Hwy 102 / Trunk 1 / Trunk 3 / Route 213", "-"], ["Bedford", "2", "1.2", "Bedford Bypass/ Trunk 33 Upper Sackville, Annapolis Valley To Hwy 101 / Hwy 1", "-"], ["Burnside Industrial Park", "5", "3.1", "Hwy 107/Akerley Blvd. Westphal To Hwy 118", "-"], ["Burnside Industrial Park", "6", "3.7", "Route 322/Victoria Rd. Highfield Park To Hwy 111 / Hwy 118", "-"], ["Dartmouth", "11", "6.8", "Wyse Rd. Halifax, Nova Scotia, Angus L. MacDonald Bridge To Angus L. MacDonald Bridge", "-"], ["Dartmouth", "12", "7.5", "Route 207 Cole Harbour, Lawrencetown, Porters Lake To Hwy 111 / Route 322", "-"], ["Dartmouth", "12", "7.5", "Route 322 Woodlawn, Cole Harbour, Cow Bay To Hwy 111 / Route 207 / Route 322", "-"], ["Dartmouth", "14", "8.7", "Hwy 111/ Route 318 Mic Mac Mall, Westphal, Waverley, Halifax, Nova Scotia To A. Murray MacKay Bridge, Hwy 111 / Route 207 / Route 322", "Micmac Parclo"], ["Westphal", "18", "11", "Hwy 107 Burnside Industrial Park, Bedford To Hwy 118", "Beginning of Hwy 107/Trunk 7 duplication"], ["Westphal", "23", "14", "Hwy 107", "End of Hwy 107/Trunk 7 duplication"], ["Porters Lake", "39", "24", "William Porter Connector To Hwy 107", "-"], ["Porters Lake", "40", "25", "Stella Dr. Seaforth, Lawrencetown, Dartmouth To Route 207", "-"], ["Musquodoboit Harbour", "50", "31", "Hwy 107 Porters Lake, Dartmouth, Halifax", "-"], ["Musquodoboit Harbour", "53", "33", "Route 357 Musquodoboit Valley, Middle Musquodoboit To Route 212 / Route 224", "-"], ["Sheet Harbour", "123", "76", "Route 224 Musquodoboit Valley, Upper Musquodoboit, Truro To Route 336 / Route 357", "-"], ["Sheet Harbour", "127", "79", "Route 374 Stellarton, New Glasgow To Hwy 104 (TCH) / Trunk 4 / Route 289 / Route 348", "-"], ["Stillwater", "210", "130", "Route 211 Port Bickerton, Canso, Nova Scotia To Trunk 16 / Route 316", "-"], ["Glenelg", "222", "138", "Route 348 New Glasgow To Hwy 104 (TCH) / Trunk 4 / Route 347 / Route 374", "-"], ["Melrose", "228", "142", "Route 347 Thorburn, New Glasgow To Hwy 104 (TCH) / Trunk 4 / Route 348 / Route 374", "-"], ["Lochaber", "238", "148", "Route 276 Goshen, Lower South River, Canso To Route 316", "-"], ["Antigonish", "268", "167", "Hwy 104 (TCH) New Glasgow, Cape Breton Island, New Brunswick To Hwy 105 (TCH) / Hwy 106 (TCH) / Hwy 102", "-"], ["Antigonish", "269", "167", "Trunk 4 Antigonish To Hwy 104 (TCH) / Route 245 / Route 337", "-"], ["Bedford", "15", "9.3", "Trunk 33 Upper Sackville, Waverley To Hwy 101", "-"], ["Halifax", "5", "3.1", "Quinpool Rd. Downtown Halifax To Bayers Lake Business Park", ""], ["Dartmouth", "8", "5", "Route 107 Halifax, Nova Scotia, Burnside Industrial Park To Hwy 111", "-"], ["Lower Sackville", "20", "12.4", "Hwy 102 Trunk 1 Windsor, Fall River, Halifax, Nova Scotia To Hwy 101 / Trunk 7", ""], ["Enfield", "35", "22", "Hwy 2 / Hwy 102 Halifax, Nova Scotia, Truro, New Brunswick", "-"], ["New Glasgow", "170", "105", "Hwy 104 (TCH) Antigonish, Cape Breton Island, Port Hastings To Trunk 4 / Route 348", "-"], ["Truro", "85", "53", "Hwy 102 Halifax, Nova Scotia, Enfield, Pictou County, New Brunswick To Hwy 104 (TCH)", "-"], ["Sydney", "300", "186.4", "Hwy 125 / Hwy 105 (TCH) Sydney River, Westmount, Glace Bay, New Waterford, North Sydney, Port aux Basques", "-"], ["Sydney Mines", "290", "180", "Hwy 105 (TCH) North Sydney, Sydney Mines, Cape Smokey, Boularderie Island To Baddeck", "-"], ["Yarmouth", "250", "155", "Hwy 101 / Hwy 103 (TCH) Halifax, Nova Scotia, Barrington, Tusket, Pubnico, West Pubnico, Yarmouth County To Hwy 1", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Location", "km", "mi", "Destinations", "Notes"], "add_description": "The name of this table is Location Table, and the headers of this table are Location,km,mi,Destinations,Notes.", "source": "fetaqa", "answer_md5": "[('ec12a4a976644c7174503482ff5010ef',)]"} +{"description": "A record of an actor's appearance in the variety show on SBS in 2021 is to be inserted into the ActorAppearances table with the values of their role as a guest and notes indicating it is their first appearance on the show.", "label": ["INSERT INTO ActorAppearances (Title,Year,Network,Role,Notes) VALUES ('Variety Show', '2021', 'SBS', 'Guest', 'First-time appearance')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "ActorAppearances", "table_info": {"columns": [{"name": "Title", "type": "TEXT"}, {"name": "Year", "type": "INTEGER"}, {"name": "Network", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Welcome to the Show", "2011", "SBS", "Himself", "Cameo; sitcom"], ["Moon Night 90", "2011", "Mnet", "Koo Jun-yup", "Fictional drama"], ["Padam Padam", "2011", "KBS", "Yang Kang-woo", "Cameo"], ["Strongest K-Pop Survival", "2012", "Channel A", "Himself", "Cameo"], ["Nail Shop Paris", "2013", "MBC Plus Media", "Jin", "Lead role"], ["Make a Woman Cry", "2015", "MBC", "Kang Hyun-seo", "Supporting role"], ["We Broke Up", "2015", "CJ E&M", "Himself", "Cameo; web drama"], ["Woman with a Suitcase", "2016", "MBC", "Cheondung", "Cameo (episode 5)"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Title", "Year", "Network", "Role", "Notes"], "add_description": "The name of this table is ActorAppearances, and the headers of this table are Title,Year,Network,Role,Notes.", "source": "fetaqa", "answer_md5": "[('fcdf02561ad367fb2aa27f1ccff32deb',)]"} +{"description": "The `Winners By Country` table is being updated by adding the values '3' for `Winner`, 'Spain' for `Country`, and '2005' for `Most Recent Win`.", "label": ["INSERT INTO `Winners By Country` (`Winner`, `Country`, `Most Recent Win`) VALUES ('3', 'Spain', '2005')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Winners By Country", "table_info": {"columns": [{"name": "Winner", "type": "INT"}, {"name": "Country", "type": "TEXT"}, {"name": "Most Recent Win", "type": "DATE"}], "rows": [["17", "United States", "1997"], ["14", "Russia", "2019"], ["4", "China", "2011"], ["2", "Poland", "2007"], ["2", "Canada", "1999"], ["1", "Czech Republic", "1998"], ["1", "Germany", "1995"], ["1", "Australia", "1992"], ["1", "New Zealand", "1990"], ["3", "France", "2014"], ["10", "Japan", "2016"], ["6", "South Africa", "2018"], ["8", "Mexico", "2009"], ["5", "Spain", "2017"], ["2", "Italy", "2006"], ["1", "Argentina", "2004"], ["1", "Brazil", "2002"], ["3", "Netherlands", "2019"], ["1", "Denmark", "2001"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Winner", "Country", "Most Recent Win"], "add_description": "The name of this table is Winners By Country, and the headers of this table are Winner,Country,Most Recent Win.", "source": "hybridqa", "answer_md5": "[('93d17a3d946c3fa612e3e949e7a725ee',)]"} +{"description": "Insert the information of the lead actress of a TV movie based on a true story into the table 'Actress Filmography', including the year, title, role, and notes.", "label": ["INSERT INTO `Actress Filmography` (Year, Title, Role, Notes) VALUES ('1975', 'TV Movie Name', 'Lead Actress', 'Based on a true story');"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Actress Filmography", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1958-59", "Young Doctor Malone", "Jill Malone", "TV series"], ["1959", "The Art Carney Special", "Emily Webb", "\"Our Town\""], ["1960", "Startime", "Rachel", "\"Jeff McCleod, the Last Reb\""], ["1961", "Way Out", "Bonnie Draco", "\"Dissolve to Black\""], ["1961", "Armstrong Circle Theatre", "Anna Halber", "\"A Chapter on Tyranny: Dateline Berlin\""], ["1961", "Festival", "Ondine", "\"Ondine\""], ["1962", "Festival", "Joan of Arc", "\"The Lark\""], ["1962", "The DuPont Show of the Week", "Kathy Allen", "\"The Movie Star\""], ["1962", "The Defenders", "Sandra Mason", "\"The Benefactor\""], ["1963", "The Defenders", "Theresa Sullivan", "\"The Star Spangled Ghetto\""], ["1966", "12 O'Clock High", "Lt. Irina Zavanoff", "\"Massacre\""], ["1967", "The Invaders", "Ellen Woods", "\"Nightmare\""], ["1967", "A Bell for Adano", "Tina", "TV film"], ["1968", "Here Comes the Bride", "Dr. Allyn Wright", "\"A Crying Need\""], ["1968", "The F.B.I.", "Margaret Kane", "\"The Hero\""], ["1972", "Bonanza", "Anna Kosovo", "\"Frenzy\""], ["1973", "Much Ado About Nothing", "Beatrice", "TV film"], ["1973", "The Return of Charlie Chan", "Irene Hadrachi", "TV film"], ["1974", "The American Parade", "Anne Bradstreet", "\"We the Women\""], ["1974", "Punch and Jody", "Margaret Howell Grant", "TV film"], ["1975", "ABC's Wide World of Entertainment", "Joan Harper", "\"Please Call It Murder\""], ["1977", "The Andros Targets", "Bonnie Stanik", "\"A Currency for Murder\""], ["1977", "Kojak", "Sonia", "\"Another Gypsy Queen\""], ["1978-80", "Another World", "Rosie", "TV series"], ["1981", "Secrets of Midland Heights", "Helen Dulles", "\"The Birthday Party\""], ["1981", "Great Performances", "Edith Wharton", "\"Edith Wharton: Looking Back\""], ["1981", "Nurse", "Dr. Carol Swanson", "\"My Life as a Woman\""], ["1983", "Ryan's Hope", "Una MacCurtain", "TV series"], ["1985-2010", "As the World Turns", "Emma Snyder", "TV series"], ["1986", "Mafia Princess", "Angelina Giancana", "TV film"], ["1991", "American Playhouse", "Mrs. Rosenbloom", "\"The Hollow Boy\""], ["1997-02", "Oz", "Mrs. Beecher", "\"Straight Life\", \"Works of Mercy\", \"Impotence\""], ["1999", "Law & Order", "Judge Childers", "\"Sideshow: Part 1\""], ["1960", "The Untouchables", "Maggie Storm", "\"The Maggie Storm Story\""], ["1970", "The Bold Ones: The Senator", "Miriam Daugherty", "\"The Day the Lion Died\""], ["1975", "The Blue Knight", "Gloria", "\"The Rose and the Gun\""], ["1979", "Baretta", "Liz Rickey", "\"The Left Hand of God\""], ["1980", "Lou Grant", "Katherine Gleason", "\"Ghosts\""], ["1985", "Hill Street Blues", "Lila Daniels", "\"Lucky Ducks\""], ["1988", "Matlock", "Marie Morgan", "\"The Ex\""], ["1993", "Diagnosis Murder", "Natalie Van Buren", "\"Vanishing Act\""], ["1997", "Profiler", "Sister Mary Grace", "\"The Root of All Evil\""], ["2002", "The Shield", "Janine", "\"Old Wounds\""]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Actress Filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('2e67780fd63db4e5276f9f4e9c8b77a4',)]"} +{"description": "The film Mission Impossible: Rogue Nation, released in 2015, features the actress Rebecca Ferguson playing the role of Ilsa Faust. No specific notes are given in the actress_filmography table.", "label": ["INSERT INTO actress_filmography (Year, Title, Role, Notes) VALUES ('2015', 'Mission Impossible: Rogue Nation', 'Ilsa Faust', '-')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "actress_filmography", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2008", "Odysseus: Voyage to the Underworld", "Penelope", "-"], ["2009", "The Devil's Ground", "Amy Singer", "-"], ["2009", "Watchmen", "Silhouette's Girlfriend", "-"], ["2009", "Happy to Be Here", "Barbara", "-"], ["2010", "The Metal Box", "Anna", "Short film"], ["2010", "The Twilight Saga: Eclipse", "Nettie", "-"], ["2010", "A Night for Dying Tigers", "Carly", "-"], ["2011", "The Fence", "Autumn", "Short film"], ["2011", "Rise of the Planet of the Apes", "Alyssa Williams", "-"], ["2012", "Kill for Me", "Natalie Ross", "-"], ["2012", "Indie Jonesing", "Gina", "-"], ["2012", "Leave Us Alone", "Sam", "Short film"], ["2013", "Crook", "Tricky", "-"], ["2014", "What an Idiot", "Grace", "-"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is actress_filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('a7a258457b4739b17d4326ef970f144a',)]"} +{"description": "Usain Bolt won a bronze medal in Track and Field at the Men's 4x100m Relay event on 19 August and it was inserted into the Olympic_Medalists table.", "label": ["INSERT INTO Olympic_Medalists (Medal, Name, Sport, Event, Date) VALUES ('Bronze', 'Usain Bolt', 'Track and Field', \"Men's 4x100m Relay\", '19 August')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Olympic_Medalists", "table_info": {"columns": [{"name": "Medal", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Sport", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["Gold", "Federica Pellegrini", "Swimming", "Women 's 400m Freestyle", "24 July"], ["Gold", "Federica Pellegrini", "Swimming", "Women 's 200m Freestyle", "27 July"], ["Gold", "Stefano Tempesti Amaurys Perez Niccolo Gitto Pietro Figlioli Alex Giorgetti Maurizio Felugo Niccolo Figari Valentino Gallo Christian Presciutti Deni Fiorentini Matteo Aicardi Arnaldo Deserti Giacomo Pastorino", "Water Polo", "Men 's Tournament", "30 July"], ["Silver", "Martina Grimaldi", "Open Water Swimming", "Women 's 10km", "19 July"], ["Silver", "Fabio Scozzoli", "Swimming", "Men 's 100m Breaststroke", "25 July"], ["Silver", "Fabio Scozzoli", "Swimming", "Men 's 50m Breaststroke", "27 July"], ["Silver", "Luca Dotto", "Swimming", "Men 's 50m Freestyle", "30 July"], ["Bronze", "Tania Cagnotto", "Diving", "Women 's 1m Springboard", "19 July"], ["Bronze", "Alice Franco", "Open Water Swimming", "Women 's 25km", "23 July"], ["Gold", "Lilly King", "Swimming", "Women's 100m Breaststroke", "25 July"], ["Silver", "Ryan Murphy", "Swimming", "Men's 200m Backstroke", "26 July"], ["Bronze", "Simone Biles", "Gymnastics", "Women's All-Around", "23 July"], ["Gold", "Katie Ledecky", "Swimming", "Women's 800m Freestyle", "31 July"], ["Silver", "Caeleb Dressel", "Swimming", "Men's 50m Freestyle", "31 July"], ["Bronze", "Noah Lyles", "Athletics", "Men's 200m", "28 July"], ["Gold", "Viktor Axelsen", "Badminton", "Men's Singles", "2 August"], ["Silver", "Chen Long", "Badminton", "Men's Singles", "2 August"], ["Bronze", "Ratchanok Intanon", "Badminton", "Women's Singles", "1 August"], ["Gold", "Emma McKeon", "Swimming", "Women's 100m Freestyle", "30 July"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Medal", "Name", "Sport", "Event", "Date"], "add_description": "The name of this table is Olympic_Medalists, and the headers of this table are Medal,Name,Sport,Event,Date.", "source": "hybridqa", "answer_md5": "[('2ac516ffbd50ad53e7997d6e24381df6',)]"} +{"description": "To add information about Osage Hills State Park to the State Parks Table, insert values for Park Name, County or Counties, Area in acres, Year Established, and Water Body(s) as 'Osage Hills State Park', 'Osage', '1, 100', '1936', ''.", "label": ["INSERT INTO `State Parks Table` (`Park Name`, `County or Counties`, `Area in acres`, `Year Established`, `Water Body ( s )`) VALUES ('Osage Hills State Park', 'Osage', '1, 100', '1936', '');"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "State Parks Table", "table_info": {"columns": [{"name": "Park Name", "type": "TEXT"}, {"name": "County or Counties", "type": "TEXT"}, {"name": "Area in acres", "type": "TEXT"}, {"name": "Year Established", "type": "INT"}, {"name": "Water Body ( s )", "type": "TEXT"}], "rows": [["Alabaster Caverns State Park", "Woodward", "200", "1956", ""], ["Arrowhead State Park", "Pittsburg", "2,200", "1963", "Lake Eufaula"], ["Beavers Bend State Park", "McCurtain", "1,300", "1935", "Mountain Fork River , Broken Bow Lake"], ["Bernice State Park", "Delaware", "88", "1970", "Grand Lake o ' the Cherokees"], ["Black Mesa State Park", "Cimarron", "349", "1959", "Lake Carl Etling"], ["Boiling Springs State Park", "Woodward", "820", "1935", ""], ["Cherokee Landing State Park", "Cherokee", "146", "1954", "Lake Tenkiller"], ["Cherokee State Park", "Mayes", "43", "1954", "Grand Lake o ' the Cherokees"], ["Clayton Lake State Park", "Pushmataha", "510", "1947", "Clayton Lake"], ["Disney/Little Blue State Park", "Mayes", "32", "1966", "Grand Lake"], ["Fort Cobb State Park", "Caddo", "1,872", "1960", ""], ["Foss State Park", "Washita", "1,749", "1961", "Foss Lake"], ["Gloss Mountain State Park", "Major", "640", "", ""], ["Great Plains State Park", "Kiowa", "187", "1977", "Tom Steed Lake"], ["Great Salt Plains State Park", "Alfalfa", "840", "1952", "Great Salt Plains Reservoir"], ["Greenleaf State Park", "Muskogee", "565", "1954", "Greenleaf Lake"], ["Honey Creek State Park", "Delaware", "30", "1954", "Grand Lake"], ["Hugo Lake State Park", "Choctaw", "289", "1974", "Hugo Lake"], ["Keystone State Park", "Tulsa", "714", "1966", "Keystone Lake"], ["Lake Eufaula State Park", "McIntosh", "2,853", "1963", "Lake Eufaula"], ["Lake Murray State Park", "Carter, Love, & Marshall", "12,496", "1933", "Lake Murray"], ["Osage Hills State Park", "Osage", "1,100", "1935", "Lake Osage"], ["Robbers Cave State Park", "Latimer & Le Flore", "8,246", "1935", "Robbers Cave"], ["Sequoyah State Park", "Cherokee", "19,200", "1963", "Fort Gibson Lake"], ["Roman Nose State Park", "Blaine", "1,555", "1937", "Roman Nose Lake"], ["Lake Texoma State Park", "Bryan", "1,875", "1949", "Lake Texoma"], ["Natural Falls State Park", "Delaware", "120", "1974", "Natural Falls"], ["Talimena State Park", "Le Flore", "320", "1935", "Talimena Scenic Drive"], ["Lake Wister State Park", "Le Flore", "3,428", "1953", "Lake Wister"], ["Chickasaw National Recreation Area", "Murray & Carter", "9,888", "1902", "Artesian Springs"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Park Name", "County or Counties", "Area in acres", "Year Established", "Water Body ( s )"], "add_description": "The name of this table is State Parks Table, and the headers of this table are Park Name,County or Counties,Area in acres,Year Established,Water Body ( s ).", "source": "hybridqa", "answer_md5": "[('68966f5f9021d49a11853cda07a3effa',)]"} +{"description": "Insert into table 'Athlete Results' with values '2012', 'Olympic Games', 'London, UK', 'Pole vault', '12th', '5.50 m'.", "label": ["INSERT INTO `Athlete Results` (Year, Competition, Venue, Position, Event, Notes) VALUES ('2012', 'Olympic Games', 'London, UK', '12th', 'Pole vault', '5.50 m')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Athlete Results", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Representing Uzbekistan", "Representing Uzbekistan", "Representing Uzbekistan", "Representing Uzbekistan", "Representing Uzbekistan", "Representing Uzbekistan"], ["2000", "World Junior Championships", "Santiago, Chile", "14th", "Decathlon", "6654 pts"], ["2001", "Asian Junior Championships", "Bandar Seri Begawan, Brunei", "2nd", "Decathlon", "6897 pts"], ["2002", "World Junior Championships", "Kingston, Jamaica", "1st", "Decathlon (junior)", "7693 pts"], ["2002", "Asian Junior Championships", "Bangkok, Thailand", "1st", "Pole vault", "5.20 m"], ["2005", "World Championships", "Helsinki, Finland", "\u2013", "Pole vault", "NM"], ["2005", "Asian Championships", "Incheon, South Korea", "4th", "Pole vault", "5.10 m"], ["2006", "Asian Games", "Doha, Qatar", "2nd", "Pole vault", "5.55 m"], ["2007", "World Championships", "Osaka, Japan", "\u2013", "Pole vault", "NM"], ["2008", "Asian Indoor Championships", "Doha, Qatar", "3rd", "Pole vault", "5.35 m"], ["2008", "World Indoor Championships", "Valencia, Spain", "14th (q)", "Pole vault", "5.45 m"], ["2008", "Olympic Games", "Beijing, China", "3rd (q)", "Pole vault", "5.65 m"], ["2009", "World Championships", "Berlin, Germany", "19th (q)", "Pole vault", "5.55 m"], ["2009", "Asian Indoor Games", "Hanoi, Vietnam", "1st", "Pole vault", "5.60 m"], ["2009", "Asian Championships", "Guangzhou, China", "4th", "Pole vault", "5.45 m"], ["2010", "Asian Games", "Guangzhou, China", "2nd", "Pole vault", "5.30 m"], ["2011", "Asian Championships", "Kobe, Japan", "\u2013", "Pole vault", "NM"], ["2013", "Asian Championships", "Pune, India", "3rd", "Decathlon", "7383 pts"], ["2014", "Asian Indoor Championships", "Hangzhou, China", "3rd", "Heptathlon", "5561 pts"], ["2014", "Asian Games", "Incheon, South Korea", "2nd", "Decathlon", "7879 pts"], ["2016", "Asian Indoor Championships", "Doha, Qatar", "4th", "Heptathlon", "5607 pts"], ["2016", "Olympic Games", "Rio de Janeiro, Brazil", "\u2013", "Decathlon", "DNF"], ["2003", "World Youth Championships", "Sherbrooke, Canada", "2nd", "Decathlon", "7221 pts"], ["2004", "Asian Junior Championships", "Seoul, South Korea", "2nd", "Pole vault", "5.10 m"], ["2006", "World Indoor Championships", "Moscow, Russia", "15th (q)", "Pole vault", "5.15 m"], ["2007", "Asian Indoor Championships", "Doha, Qatar", "2nd", "Heptathlon", "5438 pts"], ["2009", "World Athletics Final", "Thessaloniki, Greece", "\u2013", "Pole vault", "NM"], ["2011", "World Championships", "Daegu, South Korea", "\u2013", "Pole vault", "DNS"], ["2012", "Asian Indoor Championships", "Hangzhou, China", "2nd", "Pole vault", "5.45 m"], ["2013", "Asian Championships", "Pune, India", "1st", "Pole vault", "5.60 m"], ["2015", "World Championships", "Beijing, China", "\u2013", "Pole vault", "NM"], ["2017", "Asian Indoor Championships", "Ashgabat, Turkmenistan", "1st", "Pole vault", "5.70 m"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is Athlete Results, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('a22d1c7f3f5fa58bf0c4d23542746b30',)]"} +{"description": "The year 1999 saw the athlete complete in the World Championships held in Seville, Spain, where they placed second in the 400m event with a time of 49.67 and made notes in their performance log.", "label": ["INSERT INTO `Athletic Performances` (`Year`,`Competition`, `Venue`, `Position`, `Event`, `Notes`) VALUES ('1999', 'World Championships', 'Seville, Spain', '2nd', '400m', '49.67');"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Athletic Performances", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Representing Australia", "Representing Australia", "Representing Australia", "Representing Australia", "Representing Australia", "Representing Australia"], ["1990", "Commonwealth Games", "Auckland, New Zealand", "1st", "4 \u00d7 100 m relay", "43.87"], ["1990", "World Junior Championships", "Plovdiv, Bulgaria", "15th (sf)", "100m", "11.87 (wind: -1.3 m/s)"], ["1990", "World Junior Championships", "Plovdiv, Bulgaria", "5th", "200m", "23.61 (wind: +1.3 m/s)"], ["1990", "World Junior Championships", "Plovdiv, Bulgaria", "5th", "4 \u00d7 100 m relay", "45.01"], ["1992", "Summer Olympics", "Barcelona, Spain", "7th", "4 \u00d7 400 m relay", "3:26.42"], ["1992", "World Junior Championships", "Seoul, South Korea", "2nd", "200m", "23.25 (wind: +0.3 m/s)"], ["1992", "World Junior Championships", "Seoul, South Korea", "6th", "4 \u00d7 400 m relay", "3:36.28"], ["1994", "Commonwealth Games", "Victoria Canada", "1st", "200 m", "22.25"], ["1994", "Commonwealth Games", "Victoria Canada", "1st", "400 m", "50.38"], ["1994", "Commonwealth Games", "Victoria Canada", "2nd", "4 \u00d7 100 m relay", "43.43"], ["1994", "IAAF Grand Prix Final", "Paris, France", "2nd", "400 m", "50.04"], ["1995", "World Championships", "Gothenburg, Sweden", "4th", "400 m", "50.60"], ["1995", "World Championships", "Gothenburg, Sweden", "3rd", "4 \u00d7 400 m relay", "3:25.88"], ["1996", "Summer Olympics", "Atlanta, United States", "2nd", "400 m", "48.63"], ["1996", "IAAF Grand Prix Final", "Milan, Italy", "1st", "400 m", "49.60"], ["1997", "World Championships", "Athens, Greece", "1st", "400 m", "49.77"], ["1999", "World Championships", "Seville, Spain", "1st", "400 m", "49.67"], ["1999", "World Championships", "Seville, Spain", "6th", "4 \u00d7 400 m relay", "3:28.04"], ["1999", "World Indoor Championships", "Maebashi, Japan", "2nd", "4 \u00d7 400 m relay", "3:26.87"], ["2000", "Summer Olympics", "Sydney, Australia", "6th", "200 m", "22.53"], ["2000", "Summer Olympics", "Sydney, Australia", "1st", "400 m", "49.11"], ["2000", "Summer Olympics", "Sydney, Australia", "5th", "4 \u00d7 400 m relay", "3:23.81"], ["2002", "Commonwealth Games", "Manchester, Great Britain", "1st", "4 \u00d7 400 m relay", "3:25.63"], ["2003", "World Championships", "Paris, France", "3rd", "400 m", "49.28"], ["2004", "Summer Olympics", "Athens, Greece", "3rd", "400 m", "49.08"], ["2004", "Summer Olympics", "Athens, Greece", "5th", "4 \u00d7 400 m relay", "3:24.03"], ["2005", "World Championships", "Helsinki, Finland", "3rd", "4 \u00d7 400 m relay", "3:23.81"], ["2006", "Commonwealth Games", "Melbourne, Australia", "1st", "400 m", "50.30"], ["2007", "World Championships", "Osaka, Japan", "2nd", "4 \u00d7 400 m relay", "3:18.63"], ["2008", "Summer Olympics", "Beijing, China", "2nd", "4 \u00d7 400 m relay", "3:18.55"], ["2009", "World Championships", "Berlin, Germany", "7th", "4 \u00d7 400 m relay", "3:27.35"], ["2010", "Commonwealth Games", "Delhi, India", "1st", "4 \u00d7 400 m relay", "3:27.28"], ["2011", "World Championships", "Daegu, South Korea", "2nd", "4 \u00d7 400 m relay", "3:18.09"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is Athletic Performances, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('99d3db6995935090585f74f0bfe18e18',)]"} +{"description": "Insert data on the Serbian Election Results table with values for Party, Votes, %, Seats, and +/\u2013 including Democratic Party, 150000, 4.0, 10, and 0.", "label": ["INSERT INTO `Serbian Election Results` (`Party`, `Votes`, `%`, `Seats`, `+/\u2013`) VALUES ('Democratic Party', '150000', '4.0', '10', '0')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Serbian Election Results", "table_info": {"columns": [{"name": "Party", "type": "TEXT"}, {"name": "Votes", "type": "DECIMAL"}, {"name": "%", "type": "DECIMAL"}, {"name": "Seats", "type": "INT"}, {"name": "+/\u2013", "type": "TEXT"}], "rows": [["Serbia is Winning (SNS\u2013SDPS\u2013PUPS\u2013NS\u2013SPO\u2013PS\u2013PSS\u2013NSS\u2013SNP)", "1,823,147", "48.25", "131", "\u201339"], ["SPS\u2013JS\u2013ZS", "413,770", "10.95", "29", "\u20134"], ["Serbian Radical Party", "306,052", "8.10", "22", "+22"], ["Enough is Enough", "227,626", "6.02", "16", "+16"], ["For a Just Serbia (DS\u2013NS\u2013RS\u2013DSHV\u2013ZZS\u2013ZZ\u0160)", "227,589", "6.02", "16", "\u20135"], ["Dveri\u2013DSS", "190,530", "5.04", "13", "+13"], ["Alliance for a Better Serbia (LDP\u2013LSV\u2013SDS)", "189,564", "5.02", "13", "\u20132"], ["VMSZ\u2013VMDP", "56,620", "1.50", "4", "\u20132"], ["Serbia for All of Us (PLS\u2013PZP\u2013NUPS\u2013SDU)", "35,710", "0.94", "0", "New"], ["Bosniak Democratic Union of Sand\u017eak", "32,526", "0.86", "2", "+2"], ["Party of Democratic Action of Sand\u017eak", "30,092", "0.80", "2", "\u20131"], ["For A Free Serbia \u2013 Oathkeepers", "27,690", "0.73", "0", "New"], ["Green Party", "23,890", "0.63", "1", "New"], ["Out of spite \u2013 United for Serbia \u2013 National Alliance", "17,528", "0.46", "0", "New"], ["Party for Democratic Action", "16,262", "0.43", "1", "\u20131"], ["Russian Party", "13,777", "0.36", "0", "0"], ["Citizen's Group \u2013 For Serb Revival", "13,260", "0.35", "0", "New"], ["Serbo-Russian Movement", "10,016", "0.27", "0", "New"], ["Dialogue \u2013 Youth with a Stance", "7,744", "0.20", "0", "New"], ["Republican Party", "4,522", "0.12", "0", "New"], ["Invalid/blank votes", "111,008", "2.86", "\u2013", "\u2013"], ["Total", "3,778,923", "100", "250", "0"], ["Registered voters/turnout", "6,739,441", "56.07", "\u2013", "\u2013"], ["Source: RIK", "Source: RIK", "Source: RIK", "Source: RIK", "Source: RIK"], ["Party A", "500,000", "15.50", "25", "+5"], ["Party B", "250,000", "7.55", "10", "-2"], ["Party C", "150,000", "4.68", "6", "+3"], ["Party D", "100,000", "3.10", "4", "0"], ["Party E", "75,000", "2.33", "3", "+1"], ["Party F", "50,000", "1.55", "2", "-1"], ["Party G", "25,000", "0.78", "1", "0"], ["Party H", "10,000", "0.31", "0", "New"], ["Party I", "5,000", "0.16", "0", "New"], ["Party J", "2,500", "0.08", "0", "-1"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Party", "Votes", "%", "Seats", "+/\u2013"], "add_description": "The name of this table is Serbian Election Results, and the headers of this table are Party,Votes,%,Seats,+/\u2013.", "source": "fetaqa", "answer_md5": "[('185af2ea784b9f19b4b36c4ef3c8fbde',)]"} +{"description": "The 1952 British Grand Prix saw Tony Gaze finish 22nd in his HWM - Alta with a time of 2:02, trailing the winner by 12 seconds. The INSERT INTO query for this data would be: INSERT INTO 1952_British_Grand_Prix_0 (Pos, No, Driver, Constructor, Time, Gap) VALUES (22, 2, 'Tony Gaze', 'HWM - Alta', '2:02', '+12');", "label": ["INSERT INTO 1952_British_Grand_Prix_0 (Pos, No, Driver, Constructor, Time, Gap) VALUES (22, 2, 'Tony Gaze', 'HWM - Alta', '2:02', '+12');"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "1952_British_Grand_Prix_0", "table_info": {"columns": [{"name": "Pos", "type": "INTEGER"}, {"name": "No", "type": "INTEGER"}, {"name": "Driver", "type": "TEXT"}, {"name": "Constructor", "type": "TEXT"}, {"name": "Time", "type": "TEXT"}, {"name": "Gap", "type": "TEXT"}], "rows": [["1", "16", "Nino Farina", "Ferrari", "1:50", "-"], ["2", "15", "Alberto Ascari", "Ferrari", "1:50", "+ 0"], ["3", "17", "Piero Taruffi", "Ferrari", "1:53", "+ 3"], ["4", "24", "Robert Manzon", "Gordini", "1:55", "+ 5"], ["5", "4", "Ken Downing", "Connaught - Lea Francis", "1:56", "+ 6"], ["6", "8", "Reg Parnell", "Cooper - Bristol", "1:56", "+ 6"], ["7", "9", "Mike Hawthorn", "Cooper - Bristol", "1:56", "+ 6"], ["8", "6", "Dennis Poore", "Connaught - Lea Francis", "1:56", "+ 6"], ["9", "5", "Eric Thompson", "Connaught - Lea Francis", "1:57", "+ 7"], ["10", "26", "Prince Bira", "Gordini", "1:57", "+ 7"], ["11", "30", "Duncan Hamilton", "HWM - Alta", "1:57", "+ 7"], ["12", "1", "Graham Whitehead", "Alta", "1:58", "+ 8"], ["13", "11", "Alan Brown", "Cooper - Bristol", "1:58", "+ 8"], ["14", "29", "Peter Collins", "HWM - Alta", "1:58", "+ 8"], ["15", "19", "Rudi Fischer", "Ferrari", "1:58", "+ 8"], ["16", "12", "Stirling Moss", "ERA - Bristol", "1:59", "+ 9"], ["17", "3", "Kenneth McAlpine", "Connaught - Lea Francis", "2:00", "+ 10"], ["18", "10", "Eric Brandon", "Cooper - Bristol", "2:00", "+ 10"], ["19", "14", "Roy Salvadori", "Ferrari", "2:00", "+ 10"], ["20", "21", "Peter Whitehead", "Ferrari", "2:00", "+ 10"], ["21", "22", "Jean-Behra", "Maserati", "2:01", "+ 11"], ["22", "33", "Louis Rosier", "Maserati", "2:02", "+ 12"], ["23", "25", "Eugene Chaboud", "Lago-Talbot", "2:03", "+ 13"], ["24", "28", "Louis Chiron", "Maserati", "2:04", "+ 14"], ["25", "27", "Toulo de Graffenried", "Maserati", "2:05", "+ 15"], ["26", "18", "Pierre Levegh", "Talbot-Lago", "2:06", "+ 16"], ["27", "7", "Leslie Marr", "ERA - Bristol", "2:07", "+ 17"], ["28", "20", "Johnny Claes", "Simca Gordini", "2:08", "+ 18"], ["29", "32", "Yves Giraud Cabantous", "Maserati", "2:09", "+ 19"], ["30", "23", "Louis Rosier", "Lago-Talbot", "2:10", "+ 20"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Pos", "No", "Driver", "Constructor", "Time", "Gap"], "add_description": "The name of this table is 1952_British_Grand_Prix_0, and the headers of this table are Pos,No,Driver,Constructor,Time,Gap.", "source": "hybridqa", "answer_md5": "[('c32f463c1dbe9d58323d04ca601f7301',)]"} +{"description": "Insert 'Les Miserables' play, performed in 1990 at Palace Theatre in London West End, into `Actress Credits` table with the role of Fantine played by the actress and additional notes.", "label": ["INSERT INTO `Actress Credits` (`Year`, `Title`, `Role`, `Location`, `Notes`) VALUES ('1990', 'Les Miserables', 'Fantine', 'Palace Theatre', 'London West End')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Actress Credits", "table_info": {"columns": [{"name": "Year", "type": "YEAR"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1983", "Cats", "Cassandra", "N/A", "National Tour"], ["1984", "Cats", "Cassandra", "Winter Garden Theatre", "Broadway"], ["1985-86", "Song and Dance", "Woman in Blue", "Royale Theatre", "Broadway"], ["1988", "Carrie", "Chris", "Stratford-upon-Avon", "Royal Shakespeare Company"], ["1988", "Carrie", "Chris", "Virginia Theatre", "Broadway"], ["1989", "Jerome Robbins' Broadway", "Anita in West Side Story Peter Pan in Peter Pan Company Member in ...Forum", "Imperial Theatre", "Broadway"], ["1995", "Damn Yankees", "Lola", "Marquis Theatre", "Broadway (replacement)"], ["1995", "Company", "Kathy", "Criterion Center Stage Right", "Broadway"], ["1997-2018", "Chicago", "Roxie Hart", "Ambassador Theatre", "National tour and Broadway (on-and-off)"], ["2001-02", "Contact", "Wife", "Vivian Beaumont Theatre", "Broadway (replacement)"], ["2004", "Can-Can", "Claudine", "New York City Center", "Encores!"], ["2005", "Sweet Charity", "Charity Hope Valentine (standby)", "Minneapolis Chicago Boston", "Out-of-town tryout"], ["2005", "Sweet Charity", "Charity Hope Valentine (standby)", "Al Hirschfeld Theatre", "Broadway"], ["2006", "A Chorus Line", "Cassie", "San Francisco", "Out-of-town tryout"], ["2006-08", "A Chorus Line", "Cassie", "Gerald Schoenfeld Theatre", "Broadway"], ["2009", "Parade", "Mrs. Frances Phagan Sally Slaton", "Mark Taper Forum", "Los Angeles"], ["2012-13", "Pippin", "Fastrada", "American Repertory Theater", "Out-of-town tryout"], ["2013-15", "Pippin", "Fastrada", "Music Box Theatre", "Broadway"], ["2015", "Carousel", "Mrs. Mullin", "Lyric Opera of Chicago", "Chicago"], ["2000", "Chicago", "Velma Kelly", "Shubert Theatre", "National tour"], ["1996", "A Funny Thing Happened on the Way to the Forum", "Philia", "Lunt-Fontanne Theatre", "Broadway"], ["2008-09", "South Pacific", "Nellie Forbush", "Lincoln Center Theater", "Broadway"], ["2010", "Legally Blonde", "Elle Woods", "Palace Theatre", "West End"], ["2003", "Thoroughly Modern Millie", "Millie Dillmount", "Marquis Theatre", "Broadway"], ["2017", "Hello, Dolly!", "Irene Molloy", "Shubert Theatre", "Broadway"], ["2011", "Anything Goes", "Hope Harcourt", "Stephen Sondheim Theatre", "Broadway"], ["1998", "Rent", "Mimi Marquez", "Nederlander Theatre", "Broadway"], ["2018", "Mean Girls", "Cady Heron", "August Wilson Theatre", "Broadway"], ["2002", "Thoroughly Modern Millie", "Miss Dorothy Brown", "LaSalle Bank Theatre", "National tour"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Location", "Notes"], "add_description": "The name of this table is Actress Credits, and the headers of this table are Year,Title,Role,Location,Notes.", "source": "fetaqa", "answer_md5": "[('ba2be294999fb2d441ad66538bcc09aa',)]"} +{"description": "Insert 2015 EuroBasket statistics into Basketball Tournament Stats table with 8 games played, 9.1 points per game, 7.2 rebounds per game, and 1.9 assists per game.", "label": ["INSERT INTO `Basketball Tournament Stats` (`Tournament`, `Games played`, `Points per game`, `Rebounds per game`, `Assists per game`) VALUES ('2015 EuroBasket', '8', '9.1', '7.2', '1.9')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Basketball Tournament Stats", "table_info": {"columns": [{"name": "Tournament", "type": "TEXT"}, {"name": "Games played", "type": "TEXT"}, {"name": "Points per game", "type": "TEXT"}, {"name": "Rebounds per game", "type": "TEXT"}, {"name": "Assists per game", "type": "TEXT"}], "rows": [["2003 EuroBasket", "6", "4.7", "4.5", "0.7"], ["2005 EuroBasket", "7", "13.7", "5.3", "3.4"], ["2007 EuroBasket", "9", "9.3", "5.8", "1.2"], ["2009 EuroBasket", "8", "7.5", "4.2", "3.8"], ["2010 FIBA World Championship", "6", "8.5", "5.7", "3.7"], ["2011 EuroBasket", "11", "8.0", "4.7", "2.5"], ["2012 Olympics", "6", "7.7", "6.0", "4.3"], ["2021 NBA Finals", "6", "32.0", "8.5", "11.0"], ["2021 European Championship", "7", "15.3", "6.1", "7.2"], ["2022 FIBA World Cup", "8", "18.7", "10.3", "3.8"], ["2023 WNBA Finals", "5", "26.5", "4.7", "9.1"], ["2023 EuroBasket", "9", "12.5", "6.7", "4.3"], ["2024 Olympics", "7", "9.3", "7.2", "3.9"], ["2024 NBA Finals", "7", "28.4", "9.6", "5.2"], ["2025 EuroLeague", "6", "19.6", "3.5", "7.9"], ["2026 FIBA World Cup", "9", "16.2", "11.8", "4.5"], ["2027 EuroBasket", "8", "7.2", "8.3", "6.1"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Tournament", "Games played", "Points per game", "Rebounds per game", "Assists per game"], "add_description": "The name of this table is Basketball Tournament Stats, and the headers of this table are Tournament,Games played,Points per game,Rebounds per game,Assists per game.", "source": "wikisql", "answer_md5": "[('423a38360a4f78624783200c46f02edc',)]"} +{"description": "Insert data into the table 'Population by Age Group and Region in Russia' with values for '1,984', 'Mordvins in Mordovia', '9', '105', '481', '918', '1,347', '1,675', '1,871', '1,856', '1,926', '1,997', '2,355' and '2,726'.", "label": ["INSERT INTO `Population by Age Group and Region in Russia` VALUES ('1,984', 'Mordvins in Mordovia', '9', '105', '481', '918', '1,347', '1,675', '1,871', '1,856', '1,926', '1,997', '2,355', '2,726')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Population by Age Group and Region in Russia", "table_info": {"columns": [{"name": "C/W 15+", "type": "TEXT"}, {"name": "Oblast\\Age", "type": "TEXT"}, {"name": "15 to 17", "type": "TEXT"}, {"name": "18 to 19", "type": "TEXT"}, {"name": "20 to 24", "type": "TEXT"}, {"name": "25 to 29", "type": "TEXT"}, {"name": "30 to 34", "type": "TEXT"}, {"name": "35 to 39", "type": "TEXT"}, {"name": "40 to 44", "type": "TEXT"}, {"name": "45 to 49", "type": "TEXT"}, {"name": "50 to 54", "type": "TEXT"}, {"name": "55 to 59", "type": "TEXT"}, {"name": "60 to 64", "type": "TEXT"}, {"name": "65 to 69", "type": "TEXT"}], "rows": [["1,800", "Karelians in Rep. Karelia", "3", "100", "451", "969", "1,397", "1,731", "1,973", "1,953", "1,946", "1,974", "2,092", "2,417"], ["1,860", "Komis in Rep. Komi", "16", "108", "515", "1,034", "1,486", "1,799", "2,004", "2,176", "2,119", "2,124", "2,576", "2,871"], ["2,385", "Komis in Nenetskiy AO", "22", "250", "804", "1,358", "1,835", "2,163", "2,314", "2,481", "2,749", "2,707", "3,707", "3,853"], ["2,334", "Nenets in Nenet AO", "21", "198", "676", "1,463", "2,017", "2,481", "3,003", "3,091", "3,839", "3,315", "4,248", "4,027"], ["2,517", "Nenets in Yamal AO", "34", "198", "747", "1,909", "2,483", "3,315", "3,797", "3,883", "3,821", "4,361", "4,450", "4,719"], ["2,536", "Nenets in DNAO", "40", "176", "849", "1,588", "2,743", "3,316", "3,991", "4,766", "4,184", "4,805", "5,390", "5,500"], ["2,179", "Permyak in Kray of Perm", "17", "129", "636", "1,271", "1,705", "2,051", "2,244", "2,487", "2,506", "2,596", "3,142", "3,272"], ["2,326", "Permyak in KPAO", "15", "156", "720", "1,402", "1,826", "2,162", "2,398", "2,615", "2,742", "2,819", "3,336", "3,504"], ["1,452", "Tatars in Rep. Tatarstan", "12", "87", "430", "730", "1,020", "1,260", "1,408", "1,444", "1,406", "1,704", "1,848", "2,034"], ["2,121", "Mordvins in Mordovia Rep.", "31", "192", "560", "1,223", "1,722", "2,145", "2,361", "2,596", "2,618", "2,750", "3,068", "3,416"], ["1,976", "Udmurts in Udmurt Rep.", "20", "109", "512", "1,064", "1,475", "1,780", "1,926", "1,958", "2,119", "2,244", "2,555", "2,726"], ["2,213", "Bashkirs in Rep. Bashkortostan", "26", "179", "713", "1,355", "1,957", "2,497", "2,815", "3,139", "3,123", "3,287", "3,702", "4,004"], ["1,543", "Mari in Mari El Rep.", "9", "54", "232", "495", "722", "952", "1,051", "1,128", "1,110", "1,240", "1,362", "1,501"], ["2,078", "Khanty in Yugra AO", "28", "181", "620", "1,401", "1,903", "2,378", "2,957", "3,205", "3,176", "3,604", "3,787", "4,015"], ["1,789", "Chuvash in Chuvashia Rep.", "19", "102", "397", "827", "1,199", "1,532", "1,708", "1,794", "1,793", "1,883", "2,156", "2,334"], ["2,246", "Yakuts in Sakha Rep.", "32", "198", "693", "1,586", "2,280", "2,873", "3,426", "3,564", "3,805", "4,348", "4,485", "4,912"], ["1,405", "Tuvins in Tuva Rep.", "10", "76", "271", "510", "692", "864", "976", "1,057", "1,036", "1,155", "1,223", "1,363"], ["2,167", "Evenks in Krasnoyarskiy Kray", "25", "167", "538", "1,200", "1,725", "2,026", "2,213", "2,398", "2,634", "2,694", "3,094", "3,237"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["C/W 15+", "Oblast\\Age", "15 to 17", "18 to 19", "20 to 24", "25 to 29", "30 to 34", "35 to 39", "40 to 44", "45 to 49", "50 to 54", "55 to 59", "60 to 64", "65 to 69"], "add_description": "The name of this table is Population by Age Group and Region in Russia, and the headers of this table are C/W 15+,Oblast\\Age,15 to 17,18 to 19,20 to 24,25 to 29,30 to 34,35 to 39,40 to 44,45 to 49,50 to 54,55 to 59,60 to 64,65 to 69.", "source": "wikisql", "answer_md5": "[('c919b7a982ac9ef17027904ce1d4f846',)]"} +{"description": "The player Albert Pujols was picked 31st in the 2001 draft by the team St. Louis Cardinals to play first base.", "label": ["INSERT INTO PlayerPick (Pick, Player, Team, Position, Year) VALUES ('31', 'Albert Pujols', 'St. Louis Cardinals', '1B', '2001')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "PlayerPick", "table_info": {"columns": [{"name": "Pick", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Year", "type": "TEXT"}], "rows": [["13", "Rick Leach", "Detroit Tigers", "OF", "1979"], ["16", "Steve Howe", "Los Angeles Dodgers", "LHP", "1979"], ["25", "Steve Perry", "Los Angeles Dodgers", "RHP", "1979"], ["14", "Rich Stoll", "Montreal Expos", "RHP", "1983"], ["4", "Barry Larkin", "Cincinnati Reds", "SS", "1985"], ["8", "Jim Abbott", "California Angels", "LHP", "1988"], ["28", "David Parrish", "New York Yankees", "C", "2000"], ["7", "Derek Jeter", "New York Yankees", "SS", "2002"], ["34", "Nolan Ryan", "Houston Astros", "RHP", "1980"], ["9", "Ted Williams", "Boston Red Sox", "LF", "1946"], ["19", "Carl Yastrzemski", "Boston Red Sox", "LF", "1967"], ["5", "George Brett", "Kansas City Royals", "3B", "1985"], ["24", "Will Clark", "San Francisco Giants", "1B", "1989"], ["3", "Babe Ruth", "New York Yankees", "OF", "1927"], ["50", "Pedro Martinez", "Boston Red Sox", "RHP", "1999"], ["12", "Roberto Alomar", "Toronto Blue Jays", "2B", "1992"], ["21", "Ken Griffey Jr.", "Seattle Mariners", "CF", "1997"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Pick", "Player", "Team", "Position", "Year"], "add_description": "The name of this table is PlayerPick, and the headers of this table are Pick,Player,Team,Position,Year.", "source": "wikisql", "answer_md5": "[('00189c1adbb8342f0a9a73ab7b4079bf',)]"} +{"description": "Book titled 'Profiles in Courage' authored by John F. Kennedy, published by Harper & Brothers in 1956 with ISBN 978-0060955441 was inserted into the book_table.", "label": ["INSERT INTO book_table (Title, President, Publisher, Date, ISBN) VALUES ('Profiles in Courage', 'John F. Kennedy', 'Harper & Brothers', '1956', 'ISBN 978-0060955441')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "book_table", "table_info": {"columns": [{"name": "Title", "type": "TEXT"}, {"name": "President", "type": "TEXT"}, {"name": "Publisher", "type": "TEXT"}, {"name": "Date", "type": "DATE"}, {"name": "ISBN", "type": "TEXT"}], "rows": [["The Autobiography of Thomas Jefferson", "Thomas Jefferson", "", "1821", ""], ["Personal Memoirs of Ulysses S. Grant", "Ulysses S. Grant", "Charles L. Webster & Company", "1885-86", ""], ["The Rough Riders", "Theodore Roosevelt", "Charles Scribner 's Sons", "1899", ""], ["Mr. Citizen", "Harry S. Truman", "Independence Press", "1960", "ISBN 978-0830900954"], ["Crusade in Europe", "Dwight D. Eisenhower", "Doubleday", "1948", "ISBN 978-0-8018-5668-6"], ["Six Crises", "Richard Nixon", "Doubleday", "1962", "ISBN 978-0-385-00125-0"], ["Where 's the Rest of Me ?", "Ronald Reagan", "Duell , Sloan and Pearce", "1965", "ISBN 978-0-918294-16-6"], ["Why Not the Best ? : The First Fifty Years", "Jimmy Carter", "Broadman Press", "1975", "ISBN 978-0-8054-5582-3"], ["Turning Point : A Candidate , a State , and a Nation Come of Age", "Jimmy Carter", "Three Rivers Press", "1993", "ISBN 978-0-8129-2299-8"], ["An Hour Before Daylight : Memories of a Rural Boyhood", "Jimmy Carter", "Simon & Schuster", "2001", "ISBN 978-0-7432-1199-4"], ["Looking Forward", "George H. W. Bush", "Doubleday", "1987", "ISBN 978-0-385-14181-9"], ["A Charge to Keep", "George W. Bush", "William Morrow & Company", "1999", "ISBN 978-0-688-17441-5"], ["Dreams from My Father", "Barack Obama", "Times Books", "1995", "ISBN 978-1-4000-8277-3"], ["The Audacity of Hope", "Barack Obama", "Crown / Three Rivers Press", "2006", "ISBN 978-0-307-23769-9"], ["Trump : The Art of the Deal", "Donald Trump", "Random House", "1987", "ISBN 978-0-446-35325-0"], ["Trump : Surviving at the Top", "Donald Trump", "Random House", "1990", "ISBN 978-0-394-57597-1"], ["Trump : The Art of the Comeback", "Donald Trump", "Times Books", "1997", "ISBN 978-0812929645"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Title", "President", "Publisher", "Date", "ISBN"], "add_description": "The name of this table is book_table, and the headers of this table are Title,President,Publisher,Date,ISBN.", "source": "hybridqa", "answer_md5": "[('ed0c58e9d56612452623c5de483e5865',)]"} +{"description": "Simone Biles won a gold medal in Women's Artistic Individual All-Around gymnastics and was added to the Medalists table with her name, sport and event.", "label": ["INSERT INTO Medalists (Medal, Name, Sport, Event) VALUES ('Gold', 'Simone Biles', 'Gymnastics', \"Women's Artistic Individual All-Around\")"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Medalists", "table_info": {"columns": [{"name": "Medal", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Sport", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}], "rows": [["Gold", "Pamela Jelimo", "Athletics", "Women 's 800 m"], ["Gold", "Brimin Kipruto", "Athletics", "Men 's 3000 m steeplechase"], ["Gold", "Wilfred Bungei", "Athletics", "Men 's 800 m"], ["Gold", "Nancy Lagat", "Athletics", "Women 's 1500 m"], ["Gold", "Samuel Wanjiru", "Athletics", "Men 's marathon"], ["Gold", "Asbel Kiprop", "Athletics", "Men 's 1500 m"], ["Silver", "Janeth Jepkosgei", "Athletics", "Women 's 800 m"], ["Silver", "Catherine Ndereba", "Athletics", "Women 's marathon"], ["Silver", "Eunice Jepkorir", "Athletics", "Women 's 3000 m steeplechase"], ["Silver", "Eliud Kipchoge", "Athletics", "Men 's 5000 m"], ["Bronze", "Richard Mateelong", "Athletics", "Men 's 3000 m steeplechase"], ["Bronze", "Micah Kogo", "Athletics", "Men 's 10,000 m"], ["Bronze", "Alfred Kirwa Yego", "Athletics", "Men 's 800 m"], ["Bronze", "Edwin Cheruiyot Soi", "Athletics", "Men 's 5000 m"], ["Bronze", "Sylvia Kibet", "Athletics", "Women 's 5000 metres"], ["Bronze", "Linet Masai", "Athletics", "Women 's 10000 metres"], ["Gold", "Usain Bolt", "Athletics", "Men's 100m"], ["Bronze", "Simone Biles", "Gymnastics", "Women's Floor Exercise"], ["Silver", "Michael Phelps", "Swimming", "Men's 200m Butterfly"], ["Gold", "Serena Williams", "Tennis", "Women's Singles"], ["Bronze", "Katie Ledecky", "Swimming", "Women's 800m Freestyle"], ["Silver", "Mo Farah", "Athletics", "Men's 5000m"], ["Gold", "Gabby Douglas", "Gymnastics", "Women's All-Around"], ["Bronze", "Usain Bolt", "Athletics", "Men's 200m"], ["Silver", "Simone Manuel", "Swimming", "Women's 100m Freestyle"], ["Gold", "Michael Phelps", "Swimming", "Men's 200m Individual Medley"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Medal", "Name", "Sport", "Event"], "add_description": "The name of this table is Medalists, and the headers of this table are Medal,Name,Sport,Event.", "source": "hybridqa", "answer_md5": "[('966b9c128089478e523bf8860e06e9a2',)]"} +{"description": "Add 'Sydney Kingsford Smith International Airport' to 'Airport locations by country' with details including 'Australia' as the country, 'New South Wales' as the province/state, and 'Sydney' as the city.", "label": ["INSERT INTO `Airport locations by country` (`Country`, `Province / State`, `City`, `Airport`) VALUES ('Australia', 'New South Wales', 'Sydney', 'Sydney Kingsford Smith International Airport')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Airport locations by country", "table_info": {"columns": [{"name": "Country", "type": "TEXT"}, {"name": "Province / State", "type": "TEXT"}, {"name": "City", "type": "TEXT"}, {"name": "Airport", "type": "TEXT"}], "rows": [["Canada", "Alberta", "Calgary", "Calgary International Airport"], ["Canada", "Alberta", "Edmonton", "Edmonton International Airport"], ["Canada", "Alberta", "Fort McMurray", "Fort McMurray Airport"], ["Canada", "Alberta", "Grande Prairie", "Grande Prairie Airport"], ["Canada", "British Columbia", "Abbotsford", "Abbotsford International Airport"], ["Canada", "British Columbia", "Comox", "CFB Comox"], ["Canada", "British Columbia", "Fort St. John", "Fort St. John Airport"], ["Canada", "British Columbia", "Kamloops", "Kamloops Airport"], ["Canada", "British Columbia", "Kelowna", "Kelowna International Airport"], ["Canada", "British Columbia", "Nanaimo", "Nanaimo Airport"], ["Canada", "British Columbia", "Penticton", "Penticton Regional Airport"], ["Canada", "British Columbia", "Prince George", "Prince George Airport"], ["Canada", "British Columbia", "Terrace", "Northwest Regional Airport"], ["Canada", "British Columbia", "Vancouver", "Vancouver International Airport"], ["Canada", "British Columbia", "Victoria", "Victoria International Airport"], ["Canada", "Manitoba", "Brandon", "Brandon Municipal Airport"], ["Canada", "Manitoba", "Winnipeg", "Winnipeg James Armstrong Richardson International Airport"], ["Canada", "New Brunswick", "Fredericton", "Fredericton International Airport"], ["Canada", "New Brunswick", "Moncton", "Greater Moncton International Airport"], ["Canada", "Newfoundland and Labrador", "Gander", "Gander International Airport"], ["Canada", "Ontario", "Toronto", "Toronto Pearson International Airport"], ["Canada", "Ontario", "Ottawa", "Ottawa International Airport"], ["Canada", "Quebec", "Montreal", "Montreal-Pierre Elliott Trudeau International Airport"], ["Canada", "Quebec", "Quebec City", "Quebec City Jean Lesage International Airport"], ["Canada", "Saskatchewan", "Regina", "Regina International Airport"], ["Canada", "Saskatchewan", "Saskatoon", "Saskatoon John G. Diefenbaker International Airport"], ["Canada", "Nova Scotia", "Halifax", "Halifax Stanfield International Airport"], ["Canada", "Nova Scotia", "Sydney", "J.A. Douglas McCurdy Sydney Airport"], ["Canada", "Yukon", "Whitehorse", "Erik Nielsen Whitehorse International Airport"], ["Canada", "Northwest Territories", "Yellowknife", "Yellowknife Airport"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Country", "Province / State", "City", "Airport"], "add_description": "The name of this table is Airport locations by country, and the headers of this table are Country,Province / State,City,Airport.", "source": "hybridqa", "answer_md5": "[('888a679189a0d33ef966ff838dd28ce3',)]"} +{"description": "Add a new record to the 'Theatre Performances' table with values '2006' for Year, 'The History Boys' for Title, 'Dakin' for Role, and 'National Theatre' for Notes.", "label": ["INSERT INTO `Theatre Performances` (Year, Title, Role, Notes) VALUES ('2006', 'The History Boys', 'Dakin', 'National Theatre')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Theatre Performances", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1993", "Beautiful Thing", "Ste", "Bush Theatre"], ["1999", "Four Knights in Knaresborough", "Brito", "Tricycle Theatre"], ["2004", "Festen", "Christian", "Almeida Theatre"], ["2005", "Someone Who'll Watch Over Me", "Adam", "Ambassadors Theatre"], ["2009", "After Miss Julie", "John", "American Airlines Theatre"], ["2011", "Frankenstein", "Victor Frankenstein Frankenstein's Creature", "Royal National Theatre"], ["2000", "The Importance of Being Earnest", "Algernon", "West End Theatre"], ["1995", "Romeo and Juliet", "Tybalt", "Shakespeare Globe Theatre"], ["2012", "Les Miserables", "Marius", "Broadway Theatre"], ["2008", "Avenue Q", "Princeton", "New World Stages"], ["1997", "The Glass Menagerie", "Tom", "Old Vic Theatre"], ["2006", "The Phantom of the Opera", "Raoul", "Her Majesty Theatre"], ["2010", "Billy Elliot the Musical", "Billy Elliot", "Victoria Palace Theatre"], ["2003", "The Pillowman", "Katurian", "Royal National Theatre"], ["1992", "The Secret Garden", "Dickon", "West End Theatre"], ["2015", "Hamilton", "Alexander Hamilton", "Richard Rodgers Theatre"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Theatre Performances, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('dcc0c30fd770bb49c76fb3c2ec7ebc1e',)]"} +{"description": "A SQL query is used to insert data into the table 'Episode Events', including the columns Episode Number, Air Date, Event 1, Event 2, Event 3, and Event 4. The values being inserted are 17, 20 July 2008, Pendulum, The Wall, Hang Tough, and Powerball.", "label": ["INSERT INTO `Episode Events` (`Episode Number`, `Air Date`, `Event 1`, `Event 2`, `Event 3`, `Event 4`) VALUES ('17', '20 July 2008', 'Pendulum', 'The Wall', 'Hang Tough', 'Powerball')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Episode Events", "table_info": {"columns": [{"name": "Episode Number", "type": "TEXT"}, {"name": "Air Date", "type": "TEXT"}, {"name": "Event 1", "type": "TEXT"}, {"name": "Event 2", "type": "TEXT"}, {"name": "Event 3", "type": "TEXT"}, {"name": "Event 4", "type": "TEXT"}], "rows": [["1", "30 March 2008", "Gauntlet", "Duel", "Pyramid", "Pendulum"], ["2", "6 April 2008", "Hit and Run", "The Wall", "Sumo Ball", "Pyramid"], ["3", "13 April 2008", "Hang Tough", "Atlasphere", "Suspension Bridge", "Vertigo"], ["4", "20 April 2008", "Pendulum", "Gauntlet", "Hang Tough", "Powerball"], ["5", "27 April 2008", "Duel", "Vertigo", "Pyramid", "Hit and Run"], ["6", "4 May 2008", "Gauntlet", "Hit and Run", "Sumo Ball", "The Wall"], ["7", "11 May 2008", "Gauntlet", "Duel", "Pendulum", "Pyramid"], ["8", "18 May 2008", "Suspension Bridge", "Powerball", "Hang Tough", "Atlasphere"], ["9", "25 May 2008", "Pendulum", "Whiplash", "Gauntlet", "The Wall"], ["10", "1 June 2008", "Atlasphere", "Vertigo", "Suspension Bridge", "Pyramid"], ["11", "8 June 2008", "Gauntlet", "Hang Tough", "Powerball", "Sumo Ball"], ["12", "15 June 2008", "Hit and Run", "The Wall", "Duel", "Pyramid"], ["13", "22 June 2008", "Vertigo", "Suspension Bridge", "Powerball", "The Wall"], ["14", "29 June 2008", "Pendulum", "Gauntlet", "Duel", "Whiplash"], ["15", "6 July 2008", "Gauntlet", "Hang Tough", "Sumo Ball", "Pyramid"], ["16", "13 July 2008", "Duel", "Atlasphere", "Suspension Bridge", "Hit and Run"], ["17", "20 July 2008", "Powerball", "The Wall", "Gauntlet", "Pendulum"], ["18", "27 July 2008", "Hang Tough", "Sumo Ball", "The Wall", "Vertigo"], ["19", "3 August 2008", "Duel", "Pendulum", "Whiplash", "The Wall"], ["20", "10 August 2008", "Gauntlet", "Atlasphere", "Sumo Ball", "Hang Tough"], ["21", "17 August 2008", "Pyramid", "Duel", "Vertigo", "Powerball"], ["22", "24 August 2008", "Whiplash", "Hang Tough", "Suspension Bridge", "Pendulum"], ["23", "31 August 2008", "The Wall", "Gauntlet", "Hit and Run", "Sumo Ball"], ["24", "7 September 2008", "Atlasphere", "Powerball", "Pyramid", "Whiplash"], ["25", "14 September 2008", "Hang Tough", "Duel", "Vertigo", "Pendulum"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Episode Number", "Air Date", "Event 1", "Event 2", "Event 3", "Event 4"], "add_description": "The name of this table is Episode Events, and the headers of this table are Episode Number,Air Date,Event 1,Event 2,Event 3,Event 4.", "source": "wikisql", "answer_md5": "[('d613141f116779c12d02ff32a47ce463',)]"} +{"description": "The winner of the music talent show 'Colourblind' held on 29 July 2002 was Darius Danesh. He secured the first position and the third runner-up position was also awarded to him. These details have been added to the table 'Music Talent Show Winners and Runners-up' with the respective values of '1' and '1'.", "label": ["INSERT INTO `Music Talent Show Winners and Runners-up` VALUES ('Darius Danesh', '1', '3rd', 'Colourblind', '29 July 2002', '1')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Music Talent Show Winners and Runners-up", "table_info": {"columns": [{"name": "Artist", "type": "TEXT"}, {"name": "Series", "type": "INT"}, {"name": "Position in show", "type": "TEXT"}, {"name": "Song title", "type": "TEXT"}, {"name": "Release date", "type": "DATE"}, {"name": "UK peak chart position", "type": "INT"}], "rows": [["David Sneddon", "1", "Winner", "Stop Living the Lie", "13 January 2003", "1"], ["Sin\u00e9ad Quinn", "1", "Runner-up", "I Ca n't Break Down", "10 February 2003", "2"], ["Ainslie Henderson", "1", "4th", "Keep Me a Secret", "24 February 2003", "5"], ["Malachi Cush", "1", "5th", "Just Say You Love Me", "14 April 2003", "49"], ["David Sneddon", "1", "Winner", "Do n't Let Go", "21 April 2003", "3"], ["Sin\u00e9ad Quinn", "1", "Runner-up", "What You Need Is", "30 June 2003", "19"], ["David Sneddon", "1", "Winner", "Best of Order", "11 August 2003", "18"], ["Lemar", "1", "3rd", "Dance ( With U )", "18 August 2003", "2"], ["David Sneddon", "1", "Winner", "Baby Get Higher", "27 October 2003", "38"], ["Lemar", "1", "3rd", "50/50 / Lullaby", "17 November 2003", "5"], ["Alex Parks", "2", "Winner", "Maybe That 's What It Takes", "17 November 2003", "3"], ["Alistair Griffin", "2", "Runner-up", "Bring It On / My Lover 's Prayer", "29 December 2003", "5"], ["Lemar", "1", "3rd", "Another Day", "23 February 2004", "9"], ["Alex Parks", "2", "Winner", "Cry", "16 February 2004", "13"], ["Alistair Griffin", "2", "Runner-up", "You and Me ( Tonight )", "15 March 2004", "18"], ["James Fox", "2", "5th", "Hold Onto Our Love", "19 April 2004", "13"], ["Lemar", "1", "3rd", "If There 's Any Justice", "15 November 2004", "3"], ["Lemar", "1", "3rd", "Time to Grow", "28 March 2005", "9"], ["Lemar", "1", "3rd", "Do n't Give It Up", "1 August 2005", "21"], ["Alex Parks", "2", "Winner", "Honesty", "23 January 2006", "56"], ["Beyonc\u00e9", "4", "Winner", "Halo", "20 January 2009", "5"], ["Taylor Swift", "3", "1st", "Love Story", "12 September 2008", "2"], ["Ed Sheeran", "9", "3rd", "Galway Girl", "17 March 2017", "2"], ["Adele", "6", "Winner", "Rolling in the Deep", "16 January 2011", "2"], ["Sam Smith", "11", "Winner", "Stay With Me", "14 April 2014", "1"], ["Lady Gaga", "5", "Winner", "Bad Romance", "23 October 2009", "1"], ["Rihanna", "2", "Runner-up", "Umbrella", "25 May 2007", "1"], ["Justin Timberlake", "11", "4th", "Mirrors", "11 February 2013", "1"], ["Bruno Mars", "12", "Winner", "Just the Way You Are", "19 July 2010", "1"], ["Lana Del Rey", "18", "3rd", "Lust for Life", "19 April 2017", "27"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Artist", "Series", "Position in show", "Song title", "Release date", "UK peak chart position"], "add_description": "The name of this table is Music Talent Show Winners and Runners-up, and the headers of this table are Artist,Series,Position in show,Song title,Release date,UK peak chart position.", "source": "hybridqa", "answer_md5": "[('3e4f720fd8098b673c24367eb1ad7454',)]"} +{"description": "On 28 March 2021, 41,000 crowd witnessed Sydney Swans score 15.10 (100) against GWS Giants who scored 10.12 (72) at Sydney Cricket Ground venue.", "label": ["INSERT INTO `Match Results` (`Home team`, `Home team score`, `Away team`, `Away team score`, `Venue`, `Crowd`, `Date`) VALUES ('Sydney Swans', '15.10 (100)', 'GWS Giants', '10.12 (72)', 'Sydney Cricket Ground', '41,000', '28 March 2021');"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Match Results", "table_info": {"columns": [{"name": "Home team", "type": "TEXT"}, {"name": "Home team score", "type": "TEXT"}, {"name": "Away team", "type": "TEXT"}, {"name": "Away team score", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Crowd", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["Hawthorn", "7.14 (56)", "South Melbourne", "11.15 (81)", "Glenferrie Oval", "20,000", "15 April 1961"], ["Fitzroy", "6.10 (46)", "Melbourne", "10.15 (75)", "Brunswick Street Oval", "31,787", "15 April 1961"], ["Richmond", "11.8 (74)", "Footscray", "15.12 (102)", "Punt Road Oval", "20,000", "15 April 1961"], ["North Melbourne", "8.10 (58)", "Essendon", "6.13 (49)", "Arden Street Oval", "24,000", "15 April 1961"], ["Geelong", "13.18 (96)", "Collingwood", "8.9 (57)", "Kardinia Park", "23,973", "15 April 1961"], ["St Kilda", "5.8 (38)", "Carlton", "6.12 (48)", "Junction Oval", "30,400", "15 April 1961"], ["Hawthorn", "10.12 (72)", "Collingwood", "8.9 (57)", "MCG", "80,000", "21 May 1985"], ["Geelong", "12.15 (87)", "Essendon", "8.10 (58)", "GMHBA Stadium", "27,765", "18 June 2016"], ["Western Bulldogs", "16.14 (110)", "Adelaide", "13.13 (91)", "Etihad Stadium", "29,757", "2 July 2017"], ["Richmond", "8.12 (60)", "GWS Giants", "12.11 (83)", "MCG", "70,701", "17 September 2016"], ["Fremantle", "15.12 (102)", "Sydney", "13.10 (88)", "Optus Stadium", "43,056", "19 August 2018"], ["Brisbane Lions", "10.8 (68)", "Gold Coast Suns", "14.11 (95)", "The Gabba", "22,467", "16 July 2011"], ["Port Adelaide", "13.14 (92)", "Melbourne", "10.16 (76)", "Adelaide Oval", "41,775", "24 June 2018"], ["North Melbourne", "9.10 (64)", "Hawthorn", "12.14 (86)", "Marvel Stadium", "32,233", "13 April 2019"], ["Collingwood", "16.12 (108)", "St Kilda", "9.14 (68)", "MCG", "52,467", "18 May 2019"], ["West Coast", "10.15 (75)", "Carlton", "4.10 (34)", "Optus Stadium", "50,834", "1 June 2019"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Home team", "Home team score", "Away team", "Away team score", "Venue", "Crowd", "Date"], "add_description": "The name of this table is Match Results, and the headers of this table are Home team,Home team score,Away team,Away team score,Venue,Crowd,Date.", "source": "wikisql", "answer_md5": "[('fa90ca5d9272cc3dd64cc4d0bfbce999',)]"} +{"description": "The song 'Porto Sentido' by Rui Veloso won 1st place with 145 points in Draw 10 of the music contest, and was inserted into the database.", "label": ["INSERT INTO music_contest (Draw, Artist, Song, Points, Place) VALUES ('10', 'Rui Veloso', 'Porto Sentido', '145', '1st')"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "music_contest", "table_info": {"columns": [{"name": "Draw", "type": "INTEGER"}, {"name": "Artist", "type": "TEXT"}, {"name": "Song", "type": "TEXT"}, {"name": "Points", "type": "INTEGER"}, {"name": "Place", "type": "TEXT"}], "rows": [["1", "Gonzaga Coutinho", "Tema para um homem so", "102", "5th"], ["2", "Pedro Osorio S.A.R.L.", "Uma cancao comercial", "123", "3rd"], ["3", "Concha", "Qualquer dia", "quem diria", "78"], ["4", "Gabriela Schaaf", "Eu so quero", "132", "2nd"], ["5", "Toze Brito", "Novo canto Portugues", "110", "4th"], ["6", "Teresa Silva Carvalho", "Cantemos ate ser dia", "52", "9th"], ["7", "Florencia", "O comboio do Tua", "63", "8th"], ["8", "Manuel Jose Soares", "Quando chego a casa", "76", "7th"], ["9", "Manuela Bravo", "Sobe", "sobe", "balao sobe"], ["10", "Antonio Zambujo", "Lambreta", "89", "6th"], ["11", "Mariza", "Meu fado meu", "145", "1st"], ["12", "Dulce Pontes", "Cancao do Mar", "117", "2nd"], ["13", "Carlos do Carmo", "Lisboa Menina e Moca", "98", "4th"], ["14", "Ana Moura", "Dia de Folga", "81", "7th"], ["15", "Aurea", "Busy (For Me)", "67", "9th"], ["16", "Miguel Araujo", "Os Maridos das Outras", "120", "3rd"], ["17", "Rui Veloso", "Chico Fininho", "105", "5th"], ["18", "Gisela Joao", "Labirinto ou nao foi nada", "92", "6th"], ["19", "Raquel Tavares", "Nao Me Esperes De Volta", "79", "8th"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Draw", "Artist", "Song", "Points", "Place"], "add_description": "The name of this table is music_contest, and the headers of this table are Draw,Artist,Song,Points,Place.", "source": "sqa", "answer_md5": "[('8d2fd111c7e1c52a3c23cbf5257971b2',)]"} +{"description": "Add the following record to the 'Library Locations' table: Oregon City Library located at 606 John Adams Street in Oregon City, first opened in 1867 and currently opened in 2021.", "label": ["INSERT INTO `Library Locations` (`Branch`, `Address`, `Neighborhood`, `First branch opened`, `Current branch opened`) VALUES ('Oregon City Library', '606 John Adams Street', 'Oregon City', '1867', '2021')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Library Locations", "table_info": {"columns": [{"name": "Branch", "type": "TEXT"}, {"name": "Address", "type": "TEXT"}, {"name": "Neighborhood", "type": "TEXT"}, {"name": "First branch opened", "type": "INT"}, {"name": "Current branch opened", "type": "INT"}], "rows": [["Albina Library", "3605 N.E . 15th Avenue", "Irvington", "1906", "1999"], ["Belmont Library", "1038 S.E . C\u00e9sar E. Ch\u00e1vez Blvd", "Sunnyside", "1924", "1924"], ["Capitol Hill Library", "10723 S.W . Capitol Highway", "W. Portland Park", "1972", "1972"], ["Fairview-Columbia Library", "1520 N.E . Village Street", "Fairview", "2001", "2001"], ["Gregory Heights Library", "7921 N.E . Sandy Boulevard", "Roseway", "1938", "1966"], ["Gresham Library", "385 N.W . Miller Avenue", "Gresham", "1903", "1990"], ["Hillsdale Library", "1525 S.W . Sunset Boulevard", "Hillsdale", "1913", "2004"], ["Holgate Library", "7905 S.E . Holgate Blvd", "Foster-Powell", "1911", "1971"], ["Hollywood Library", "4040 N.E . Tillamook Street", "Hollywood", "1917", "2002"], ["Kenton Library", "8226 N. Denver Avenue", "Kenton", "1903", "2010"], ["Midland Library", "805 S.E . 122nd Avenue", "Hazelwood", "1958", "1996"], ["North Portland Library", "512 N. Killingsworth Street", "Humboldt", "1909", "1913"], ["Northwest Library", "2300 NW Thurman Street", "Northwest", "2001", "2001"], ["Rockwood Library", "17917 S.E . Stark Street", "Rockwood", "1963", "1963"], ["Sellwood-Moreland Library", "7860 S.E . 13th Avenue", "Sellwood", "1905", "2002"], ["St. Johns Library", "7510 N. Charleston Avenue", "St. Johns", "1913", "1913"], ["Troutdale Library", "2451 S.W . Cherry Park Road", "Troutdale", "2010", "2010"], ["Woodstock Library", "6008 SE 49th Avenue", "Woodstock", "1917", "2000"], ["Parkrose Library", "120th and Sandy Boulevard", "Parkrose", 1967, 1999], ["Multnomah Library", "205 NE Russell St", "Sullivan\u2019s Gulch", 1979, 1979], ["Oak Grove Library", "5013 SE 42nd Avenue", "Oak Grove", 1913, 2015], ["Peninsula Library", "8125 N. Emerald Avenue", "North Portland", 1936, 1969], ["Northwest Renaissance Community Library", "2320 NW Thurman St", "Northwest", 2000, 2000], ["Creston-Kenilworth Library", "3740 S.E . 39th Avenue", "Creston-Kenilworth", 1952, 2018], ["Alberta Library", "1106 NE Alberta St", "King", 1912, 2009], ["St. Johns Booksellers", "8622 N. Lombard St.", "St. Johns", 1985, 1985], ["Central Library", "801 SW 10th Ave", "Downtown", 1913, 1913], ["Hawthorne Library", "3524 SE Cesar E Chavez Blvd", "Richmond", 1913, 2016]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Branch", "Address", "Neighborhood", "First branch opened", "Current branch opened"], "add_description": "The name of this table is Library Locations, and the headers of this table are Branch,Address,Neighborhood,First branch opened,Current branch opened.", "source": "hybridqa", "answer_md5": "[('4ed4df8f12755af8057399b96beae74f',)]"} +{"description": "The movie Mad Max: Fury Road was directed by George Miller and starring Tom Hardy and Charlize Theron. The genre of the movie is action and additional information can be found on its official website and IMDb. The data was inserted into the Movie_Info table with the following values: Title = 'Mad Max: Fury Road', Director = 'George Miller', Cast = 'Tom Hardy, Charlize Theron', Genre = 'Action', Notes = 'Official site, IMDb'.", "label": ["INSERT INTO Movie_Info (Title, Director, Cast, Genre, Notes) VALUES ('Mad Max: Fury Road', 'George Miller', 'Tom Hardy, Charlize Theron', 'Action', 'Official site, IMDb');"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Movie_Info", "table_info": {"columns": [{"name": "Title", "type": "TEXT"}, {"name": "Director", "type": "TEXT"}, {"name": "Cast", "type": "TEXT"}, {"name": "Genre", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["4", "Tim Slade", "Sayaka Shoji , Niki Vasilakis", "Documentary", "IMDb"], ["All My Friends Are Leaving Brisbane", "Louise Alston", "Charlotte Gregg , Matt Zeremes", "Romantic Comedy", "IMDb"], ["Angela 's Decision", "Mat King", "Rhiannon Owen , Xavier Samuel", "Drama", "Official site , IMDb"], ["The Bet", "Mark Lee", "Matthew Newton , Aden Young", "Drama", "Official site , IMDb"], ["Black Water", "David Nerlich , Andrew Traucki", "Diana Glenn , Maeve Dermody", "Horror", "Official site , IMDb"], ["Boxing Day", "Kriv Stenders", "Richard Green , Tammy Anderson", "Drama", "IMDb"], ["Bra Boys", "Mat King", "Russell Crowe", "Documentary", "IMDb"], ["Burke and Wills", "Oliver Torr and Matthew Zeremes", "Oliver Torr and Matthew Zeremes", "Drama", "Official site , IMDb"], ["Clubland", "Cherie Nowlan", "Khan Chittenden , Emma Booth", "Drama", "IMDb"], ["Corroboree", "Ben Hackworth", "Conor O'Hanlon , Rebecca Frith", "Mystery", "IMDb"], ["Crocodile Dreaming", "Darlene Johnson", "David Gulpilil , Jamie Gulpilil , Tom E. Lewis", "Short drama", "IMDb"], ["Curtin", "Jessica Hobbs", "William McInnes , Noni Hazlehurst", "Drama", "IMDb"], ["December Boys", "Rod Hardy", "Daniel Radcliffe , Teresa Palmer", "Drama", "Official site , IMDb"], ["Dr. Plonk", "Rolf de Heer", "Nigel Lunghi , Magda Szubanski", "Comedy", "IMDb"], ["The Final Winter", "Brian Andrews", "Matthew Nable , Matthew Johns", "Drama", "Official site , IMDb"], ["Forbidden Lie $", "Anna Broinowski", "Norma Khouri", "Documentary", "Official site , IMDb"], ["Gabriel", "Shane Abbess", "Andy Whitfield , Dwaine Stevenson", "Supernatural action", "Official site , IMDb"], ["Gone", "Ringan Ledwidge", "Shaun Evans , Scott Mechlowicz", "Thriller", "IMDb"], ["Hammer Bay", "Ben Briand", "Guy Edmonds , Jacki Weaver", "Drama", "IMDb"], ["The Home Song Stories", "Tony Ayres", "Joan Chen , Joel Lok , Qi Yuwu", "Drama", "IMDb"], ["In Search of Lost Time", "Jane Smith", "John Doe , Sarah Johnson", "Romance", "IMDb"], ["The Secret Garden", "Tom Brown", "Emma Thompson , Colin Firth", "Drama", "Official site , IMDb"], ["The End of the Affair", "Lucy White", "Keira Knightley , Ralph Fiennes", "Romance", "IMDb"], ["The Great Gatsby", "Sam Jones", "Leonardo DiCaprio , Carey Mulligan", "Drama", "IMDb"], ["The Talented Mr. Ripley", "Michael Green", "Jude Law , Matt Damon", "Thriller", "Official site , IMDb"], ["Love and Other Disasters", "Anna Lee", "Brittany Murphy , Matthew Rhys", "Romantic Comedy", "IMDb"], ["The Book Thief", "Sophie Brown", "Sophie N\u00e9lisse , Geoffrey Rush", "Drama", "IMDb"], ["The Hunger Games", "Carla Santos", "Jennifer Lawrence , Josh Hutcherson", "Action", "IMDb"], ["La La Land", "Justin Tranter", "Emma Stone , Ryan Gosling", "Musical", "IMDb"], ["The Revenant", "David Lee", "Leonardo DiCaprio , Tom Hardy", "Drama", "IMDb"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Title", "Director", "Cast", "Genre", "Notes"], "add_description": "The name of this table is Movie_Info, and the headers of this table are Title,Director,Cast,Genre,Notes.", "source": "hybridqa", "answer_md5": "[('e4e72271d8faf27dab4f97f55b821858',)]"} +{"description": "In 2023, the athlete won the first place in the Half Marathon event at the Commonwealth Games held in Birmingham, United Kingdom.", "label": ["INSERT INTO athletic_achievements(Year, Competition, Venue, Position, Event, Notes) VALUES('2023', 'Commonwealth Games', 'Birmingham, United Kingdom', '1st', 'Half Marathon', '')"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "athletic_achievements", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Representing Canada", "Representing Canada", "Representing Canada", "Representing Canada", "Representing Canada", "Representing Canada"], ["2013", "Jeux de la Francophonie", "Nice, France", "4th", "10,000 m", "33:31.02"], ["2013", "Rock \u2018n\u2019 Roll San Jose Half Marathon", "San Jose, United States", "1st", "Half Marathon", "1:14:39"], ["2015", "Pan American Games", "Toronto, Canada", "7th", "10,000 m", "33:20.14"], ["2015", "World Championships", "Beijing, China", "23rd", "10,000 m", "32:59.20"], ["2016", "Olympic Games", "Rio de Janeiro, Brazil", "22nd", "10,000 m", "31:53.14"], ["2017", "World Championships", "London, United Kingdom", "16th", "10,000 m", "31:55.47"], ["2018", "Commonwealth Games", "Gold Coast, Australia", "5th", "10,000 m", "31:50.18"], ["2019", "Boston Marathon", "Boston, United States", "3rd", "Marathon", "2:23:47"], ["2020", "World Half Marathon Championships", "Gdynia, Poland", "8th", "Half Marathon", "1:06:18"], ["2018", "Chicago Marathon", "Chicago, United States", "7th", "Marathon", "2:26:12"], ["2017", "Ottawa 10k", "Ottawa, Canada", "1st", "10k", "31:41"], ["2016", "Pan American Cross Country Cup", "Vargas, Venezuela", "2nd", "Cross Country", "29:34"], ["2015", "Toronto Waterfront 10k", "Toronto, Canada", "2nd", "10k", "32:05"], ["2014", "Victoria International Half Marathon", "Victoria, Canada", "1st", "Half Marathon", "1:11:23"], ["2013", "Canadian Cross Country Championships", "Kingston, Canada", "3rd", "Cross Country", "28:40"], ["2012", "NCAA Division 1 Cross Country Championships", "Louisville, United States", "6th", "Cross Country", "19:34"], ["2011", "Canadian Track and Field Championships", "Calgary, Canada", "1st", "10,000 m", "32:33.09"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is athletic_achievements, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('ab5eade5b02dbab781dc86ef7955187f',)]"} +{"description": "The sports_venues table will have a new record with Venue as 'Boxing Gym', Sports as 'Boxing', and Capacity as '1,500'.", "label": ["INSERT INTO sports_venues (Venue, Sports, Capacity) VALUES ('Boxing Gym', 'Boxing', '1,500')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "sports_venues", "table_info": {"columns": [{"name": "Venue", "type": "TEXT"}, {"name": "Sports", "type": "TEXT"}, {"name": "Capacity", "type": "INT"}], "rows": [["Juan Pablo Duarte Olympic Center", "Basketball", "9,000"], ["Softball Stadium", "Softball", "5,000"], ["Olympic Velodrome - Juan Pablo Duarte Olympic Center", "Cycling ( track )", "2,000"], ["Olympic Stadium", "Athletics Ceremonies Football", "35,000"], ["Judo Pavilion", "Fencing Judo", "2,000"], ["Aquatics Center - Juan Pablo Duarte Olympic Center", "Diving Swimming Synchronized swimming Water polo", "4,000"], ["Combat Pavilion", "Karate Taekwondo Wrestling", "2,500"], ["Volleyball Pavilion", "Volleyball", "5,000"], ["Road cycling circuit", "Cycling ( road )", "10,000"], ["Racquetball Pavilion", "Racquetball", "600"], ["Olympic Stadium Basque Pelota", "Basque pelota", "400"], ["Mega Tennis Arena", "Tennis", "15,000"], ["Ice Hockey Venue", "Ice Hockey", "12,000"], ["Gymnastics Center", "Gymnastics", "7,500"], ["Weightlifting Gym", "Weightlifting", "2,500"], ["Soccer Stadium", "Football", "50,000"], ["Rugby Field", "Rugby", "18,000"], ["Boxing Arena", "Boxing", "6,000"], ["Shooting Range", "Shooting", "3,000"], ["Table Tennis Pavilion", "Table Tennis", "3,500"], ["Equestrian Center", "Equestrian", "9,000"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Venue", "Sports", "Capacity"], "add_description": "The name of this table is sports_venues, and the headers of this table are Venue,Sports,Capacity.", "source": "hybridqa", "answer_md5": "[('e9862595a746d8039771276930b74645',)]"} +{"description": "A transfer was made in 2018 for Andr\u00e9s Iniesta to Vissel Kobe for a fee of $30 million, and the details were recorded in the transfers table by inserting the values '8', 'MF', 'Andr\u00e9s Iniesta', 'Vissel Kobe', 'Transfer fee: $30 million', and 'In 2018'.", "label": ["INSERT INTO transfers (No, Pos, Player, `Transferred to`, `Fee/Notes`, Date) VALUES ('8', 'MF', 'Andr\u00e9s Iniesta', 'Vissel Kobe', 'Transfer fee: $30 million', 'In 2018');"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "transfers", "table_info": {"columns": [{"name": "No", "type": "INT"}, {"name": "Pos", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Transferred to", "type": "TEXT"}, {"name": "Fee/Notes", "type": "TEXT"}, {"name": "Date", "type": "DATE"}], "rows": [["99", "FW", "Jaime Moreno", "Retired", "Free transfer", "24 October 2010"], ["15", "FW", "Danny Allsopp", "Melbourne Victory", "Free transfer", "15 November 2010"], ["16", "DF", "Jordan Graye", "Portland Timbers", "Acquired through MLS Expansion Draft", "15 November 2010"], ["16", "MF", "Rodney Wallace", "Portland Timbers", "Traded for 2011 SuperDraft pick", "24 November 2010"], ["4", "DF", "Juan Pe\u00f1a", "Retired", "Released", "2 December 2010"], ["15", "DF", "Barry Rice", "Akron Summit Assault", "Released", "2 December 2010"], ["11", "DF", "Carlos Varela", "Servette", "Released", "2 December 2010"], ["24", "MF", "Brandon Barklage", "D.C. United", "Free transfer", "6 December 2010"], ["23", "GK", "Troy Perkins", "Portland Timbers", "Part of Steve Cronin deal", "17 December 2010"], ["7", "FW", "Adam Cristman", "Los Angeles Galaxy", "Traded for Supplemental Draft picks", "11 January 2011"], ["2", "DF", "Julius James", "Columbus Crew", "Waived", "17 February 2011"], ["20", "GK", "Pat Onstad", "Retired", "Free transfer", "31 May 2011"], ["10", "MF", "Dax McCarty", "New York Red Bulls", "Traded for Dwayne De Rosario", "27 June 2011"], ["30", "MF", "Junior Carreiro", "", "Waived", "29 June 2011"], ["27", "MF", "Fred", "Melbourne Heart", "Free transfer", "21 July 2011"], ["21", "GK", "Joe Smith", "Seattle Sounders", "Traded for allocation money", "12 March 2012"], ["3", "DF", "Mark Johnson", "Vancouver Whitecaps", "Signed from college", "18 April 2012"], ["19", "MF", "Sarah Lee", "", "Waived", "5 September 2012"], ["18", "FW", "Alex Kim", "LA Galaxy", "Homegrown player", "22 October 2012"], ["6", "DF", "Kim Lee", "Chicago Fire", "Free transfer", "2 December 2012"], ["33", "MF", "Chris Scott", "Orlando City", "Signed from USL Pro", "14 February 2013"], ["9", "FW", "John Johnson", "Houston Dynamo", "Expansion Draft", "16 April 2013"], ["1", "GK", "Michael Brown", "New England Revolution", "Traded for player to be named later", "9 June 2013"], ["22", "MF", "Emily Rodriguez", "", "Retired", "7 September 2013"], ["12", "DF", "David Martinez", "Colorado Rapids", "Acquired through Re-Entry Draft", "21 December 2013"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["No", "Pos", "Player", "Transferred to", "Fee/Notes", "Date"], "add_description": "The name of this table is transfers, and the headers of this table are No,Pos,Player,Transferred to,Fee/Notes,Date.", "source": "hybridqa", "answer_md5": "[('0ce50a75936b75e1febab616b3735565',)]"} +{"description": "The Schottentour tram line, colored yellow, has a length of 11.2km (7mi) and passes through 20 stations. It is being added to the public transportation lines table.", "label": ["INSERT INTO public_transportation_lines(Line, Colour, Route, Length, Stations) VALUES('Tram 47', 'yellow', 'Schottentour', '11.2km (7mi)', '20')"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "public_transportation_lines", "table_info": {"columns": [{"name": "Line", "type": "TEXT"}, {"name": "Colour", "type": "TEXT"}, {"name": "Route", "type": "TEXT"}, {"name": "Length", "type": "TEXT"}, {"name": "Stations", "type": "TEXT"}], "rows": [["U 1", "red", "Reumannplatz \u2013 Leopoldau", "14.6km (9.1mi)", "19"], ["U 2", "purple", "Karlsplatz \u2013 Seestadt", "16.7km (10.4mi)", "20"], ["U 3", "orange", "Ottakring \u2013 Simmering", "13.5km (8.4mi)", "21"], ["U 4", "green", "H\u00fctteldorf \u2013 Heiligenstadt", "16.5km (10.3mi)", "20"], ["U 6", "brown", "Siebenhirten \u2013 Floridsdorf", "17.4km (10.8mi)", "24"], ["U 5", "yellow", "Westbahnhof \u2013 Leopoldau", "13.9km (8.6mi)", "18"], ["U 7", "blue", "Hauptbahnhof \u2013 Floridsdorf", "15.5km (9.6mi)", "23"], ["U 8", "pink", "Josefst\u00e4dter Stra\u00dfe \u2013 Simmering", "13.2km (8.2mi)", "20"], ["U 9", "gray", "Oberlaa \u2013 Alser Stra\u00dfe", "11.3km (7.0mi)", "16"], ["U 10", "turquoise", "Praterstern \u2013 Reumannplatz", "14.4km (8.9mi)", "18"], ["U 11", "violet", "Margareteng\u00fcrtel \u2013 Floridsdorf", "18.2km (11.3mi)", "21"], ["U 12", "beige", "Hietzing \u2013 Kaiserm\u00fchlen", "16.8km (10.4mi)", "22"], ["U 13", "maroon", "Meidling \u2013 Donaumarina", "12.9km (8.0mi)", "17"], ["U 14", "silver", "Westbahnhof \u2013 Alser Stra\u00dfe", "12.1km (7.5mi)", "16"], ["U 15", "gold", "Naschmarkt \u2013 Floridsdorf", "15.1km (9.4mi)", "19"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Line", "Colour", "Route", "Length", "Stations"], "add_description": "The name of this table is public_transportation_lines, and the headers of this table are Line,Colour,Route,Length,Stations.", "source": "wikisql", "answer_md5": "[('88a9c6cf6f3c4b46dc74145d42b1f053',)]"} +{"description": "Add the data of population, capital, and other villages and towns for Dieppe Bay in Saint Kitts to the 'Population by Settlements in Nevis and Saint Kitts' table with a population of 1,500, with the capital being Dieppe Bay Town and Saddlers, and the other villages and towns being Tabernacle, Harris, Parson, and Belle View.", "label": ["INSERT INTO `Population by Settlements in Nevis and Saint Kitts` (Name,Population,Capital,`Other villages and towns`) VALUES ('Dieppe Bay , Saint Kitts', '1,500', 'Dieppe Bay Town and Saddlers', 'Tabernacle, Harris, Parson, Belle View')"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Population by Settlements in Nevis and Saint Kitts", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Population", "type": "INT"}, {"name": "Capital", "type": "TEXT"}, {"name": "Other villages and towns", "type": "TEXT"}], "rows": [["Saint Thomas Lowland , Nevis", "2,035", "Cotton Ground", "Westbury Barnes Ghaut Jessup Stuart 's"], ["Saint John Figtree , Nevis", "2,922", "Figtree", "Bath Church Ground Brown Hill Brown 's Pasture Pembroke Bush Hill St. Peter 's Hill Cole Hill"], ["Saint George Gingerland , Nevis", "2,568", "Market Shop", "Chicken Stone Taylors Pasture Zetlands Hull Ground Rawlins Village Crook 's Ground Rices Buck 's Hill Sheriffs Holmes Hill Fenton Hill Stony Hill Webb 's Ground Harris Zion New River"], ["Saint Paul Charlestown , Nevis", "1,820", "Charlestown", "Craddocks Road"], ["Saint James Windward , Nevis", "1,836", "Newcastle", "Rawlins Pasture Fountain Scarborough Camps Hick 's Brick Kiln White Hall Butlers ( Butler 's ) Barnaby Mt . Lily Spring Hill Eden Browne"], ["Saint George Basseterre , Saint Kitts", "13,220", "Basseterre", "Bird Rock Frigate Bay"], ["Trinity Palmetto Point , Saint Kitts", "1,692", "Palmetto Point", "Mattingley Camps West Farm Boyds Conphipps Challengers Stone Fort"], ["Saint Thomas Middle Island , Saint Kitts", "2,332", "Middle Island", "Franklands Old Road Town Verchilds Lamberts Conyers Godwin 's Ghaut Half Way Tree New Guinea"], ["Saint Anne Sandy Point , Saint Kitts", "3,140", "Sandy Point Town", "Fig Tree La Vall\u00e9e Sir Gillee 's"], ["Saint Paul Capesterre , Saint Kitts", "2,460", "Saint Paul Capesterre", "Cranston Newton Ground Belmont Estate"], ["Saint John Capesterre , Saint Kitts", "3,181", "Dieppe Bay Town and Saddlers", "Parson 's Harriss ' Belle View Tabernacle"], ["Christ Church Nichola Town , Saint Kitts", "2,059", "Nichola Town", "Mansion Borryeux Molyneux Phillips '"], ["Saint Mary Cayon , Saint Kitts", "3,374", "Cayon", "Lodge Ottley 's Little Italy Spooner 's Keys"], ["Saint Peter Basseterre . Saint Kitts", "3,472", "Monkey Hill", "New Road Saint Peter 's Stapleton Parry 's Ogee 's Morgan Heights La Fontaine Conaree"], ["Saint Anne Sandy Point , Saint Kitts", "2,925", "Sandy Point Town", "Stone Fort Tabernacle Belle View"], ["Saint Thomas Lowland , Nevis", "1,145", "Cotton Ground", "Rawlins Village Jessup Mc Knight's"], ["Saint Paul Charlestown , Nevis", "2,156", "Charlestown", "Booby Blanchisseuse"], ["Trinity Palmetto Point , Saint Kitts", "1,920", "Palmetto Point", "Challengers Stone Fort Phillips"], ["Saint James Windward , Nevis", "2,559", "Newcastle", "Rawlins Pasture Donovans Eden Browne"], ["Saint George Gingerland , Nevis", "3,091", "Market Shop", "Chicken Stone Taylors Rice's"], ["Christ Church Nichola Town , Saint Kitts", "1,678", "Nichola Town", "Lodge Sandy Point Town Mansion"], ["Saint Thomas Middle Island , Saint Kitts", "1,936", "Middle Island", "Franklands Old Road Town Morgan Heights"], ["Saint John Figtree , Nevis", "1,793", "Figtree", "Bath Browns Pasture Cole Hill"], ["Saint Anne Sandy Point , Saint Kitts", "2,785", "Sandy Point Town", "Fig Tree La Vall\u00e9e Sir Gillee's Spooner's Keys"]]}}, "evaluation": "", "example": "", "type": ["INSERT"], "heads": ["Name", "Population", "Capital", "Other villages and towns"], "add_description": "The name of this table is Population by Settlements in Nevis and Saint Kitts, and the headers of this table are Name,Population,Capital,Other villages and towns.", "source": "hybridqa", "answer_md5": "[('d8f1c09a2e40cadedab52f45c0adc4b0',)]"} +{"description": "Modify the car racing schedule by updating the race of Grand Prix of Atlanta to be classified as Formula 1 and take place at the Atlanta Motor Speedway.", "label": ["UPDATE car_racing_schedule SET Class='Formula 1', Circuit='Atlanta Motor Speedway' WHERE Race='Grand Prix of Atlanta'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "car_racing_schedule", "table_info": {"columns": [{"name": "Race", "type": "TEXT"}, {"name": "Length", "type": "TEXT"}, {"name": "Class", "type": "TEXT"}, {"name": "Circuit", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["Rolex 24 at Daytona", "24 Hours", "All", "Daytona International Speedway", "February 5 February 6"], ["Contac 12 Hours of Sebring", "12 Hours", "All", "Sebring International Raceway", "March 19"], ["Grand Prix of Atlanta", "1 Hour", "GT", "Road Atlanta", "April 17"], ["Grand Prix of Atlanta", "2 Hours", "WSC", "Road Atlanta", "April 17"], ["The New England Dodge Dealers Grand Prix", "1 Hour", "GT", "Lime Rock Park", "May 30"], ["The New England Dodge Dealers Grand Prix", "2 Hours", "WSC", "Lime Rock Park", "May 30"], ["The Glen Continental", "3 Hours", "All", "Watkins Glen International", "June 26"], ["Indy Grand Prix", "1 Hour", "GT", "Indianapolis Raceway Park", "July 10"], ["Indy Grand Prix", "2 Hours", "WSC", "Indianapolis Raceway Park", "July 10"], ["Monterey Sports Car Grand Prix", "1 Hour", "GT", "Laguna Seca Raceway", "July 24"], ["Monterey Sports Car Grand Prix", "2 Hours", "WSC", "Laguna Seca Raceway", "July 24"], ["Grand Prix of Portland", "1 Hour", "GT", "Portland International Raceway", "August 7"], ["Grand Prix of Portland", "2 Hours", "WSC", "Portland International Raceway", "August 7"], ["Exxon World Sports Car Championships", "1 Hour", "GT", "Phoenix International Raceway", "October 1"], ["Exxon World Sports Car Championships", "2 Hours", "WSC", "Phoenix International Raceway", "October 1"], ["Rolex 24 at Daytona", "24 Hours", "All", "Daytona International Speedway", "February 5 February 6"], ["Contac 12 Hours of Sebring", "12 Hours", "All", "Sebring International Raceway", "March 19"], ["Grand Prix of Atlanta", "1 Hour", "GT", "Road Atlanta", "April 17"], ["Grand Prix of Atlanta", "2 Hours", "WSC", "Road Atlanta", "April 17"], ["The New England Dodge Dealers Grand Prix", "1 Hour", "GT", "Lime Rock Park", "May 30"], ["The New England Dodge Dealers Grand Prix", "2 Hours", "WSC", "Lime Rock Park", "May 30"], ["The Glen Continental", "3 Hours", "All", "Watkins Glen International", "June 26"], ["Indy Grand Prix", "1 Hour", "GT", "Indianapolis Raceway Park", "July 10"], ["Indy Grand Prix", "2 Hours", "WSC", "Indianapolis Raceway Park", "July 10"], ["Monterey Sports Car Grand Prix", "1 Hour", "GT", "Laguna Seca Raceway", "July 24"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Race", "Length", "Class", "Circuit", "Date"], "add_description": "The name of this table is car_racing_schedule, and the headers of this table are Race,Length,Class,Circuit,Date.", "source": "wikisql", "answer_md5": "[('fa81a61f9a648475594128fa51bfa80d',)]"} +{"description": "Change the Notes for the athlete_high_jump_records of the World Championships in 2009 to '2.40 m'.", "label": ["UPDATE athlete_high_jump_records SET Notes='2.40 m' WHERE Year='2009' AND Competition='World Championships'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "athlete_high_jump_records", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Representing Jamaica", "Representing Jamaica", "Representing Jamaica", "Representing Jamaica", "Representing Jamaica", "Representing Jamaica"], ["1999", "CARIFTA Games (U17)", "Fort-de-France, Martinique", "1st", "high jump", "2.03 m"], ["2000", "CARIFTA Games (U20)", "St. George's, Grenada, Grenada", "1st", "high jump", "2.12 m"], ["2000", "CAC Junior Championships (U20)", "San Juan, Puerto Rico", "1st", "high jump", "2.15 m"], ["2000", "World Junior Championships", "Santiago, Chile", "2nd", "high jump", "2.24 m"], ["2002", "CARIFTA Games (U20)", "Nassau, Bahamas", "2nd", "high jump", "2.16 m"], ["2002", "CAC Junior Championships (U20)", "Bridgetown, Barbados", "1st", "high jump", "2.23 m"], ["2002", "World Junior Championships", "Kingston, Jamaica", "3rd", "high jump", "2.21 m"], ["2002", "Commonwealth Games", "Manchester, Great Britain", "5th", "high jump", "2.20 m"], ["2003", "World Indoor Championships", "Birmingham, Great Britain", "\u2013", "high jump", "NM"], ["2003", "Pan American Games", "Santo Domingo, Dominican Republic", "1st", "high jump", "2.34 m"], ["2003", "World Championships", "Paris, France", "5th", "high jump", "2.29 m"], ["2004", "World Indoor Championships", "Budapest, Hungary", "3rd", "high jump", "2.25 m"], ["Representing Great Britain", "Representing Great Britain", "Representing Great Britain", "Representing Great Britain", "Representing Great Britain", "Representing Great Britain"], ["2006", "European Championships", "Gothenburg, Sweden", "17th (q)", "high jump", "2.19 m"], ["2007", "World Championships", "Osaka, Japan", "27th (q)", "high jump", "2.19 m"], ["2008", "Olympic Games", "Beijing, China", "2nd", "high jump", "2.34 m"], ["Representing Jamaica", "Representing Jamaica", "Representing Jamaica", "Representing Jamaica", "Representing Jamaica", "Representing Jamaica"], ["2005", "CAA Championships", "Nassau, Bahamas", "1st", "high jump", "2.28 m"], ["2006", "World Indoor Championships", "Moscow, Russia", "6th", "high jump", "2.19 m"], ["2007", "Pan American Games", "Rio de Janeiro, Brazil", "3rd", "high jump", "2.30 m"], ["2007", "World Championships", "Osaka, Japan", "7th", "high jump", "2.29 m"], ["2008", "IAAF World Athletics Final", "Stuttgart, Germany", "4th", "high jump", "2.26 m"], ["2008", "Athletics at the Central American and Caribbean Games", "Cali, Colombia", "1st", "high jump", "2.36 m"], ["2009", "World Championships", "Berlin, Germany", "2nd", "high jump", "2.32 m"], ["2010", "Commonwealth Games", "Delhi, India", "1st", "high jump", "2.30 m"], ["2011", "World Championships", "Daegu, South Korea", "1st", "high jump", "2.33 m"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is athlete_high_jump_records, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('11ab74ec2b9d48efb1d380d50149f6ae',)]"} +{"description": "Change the status of the University of Santo Tomas to Catholic in the Institutions table.", "label": ["UPDATE Institutions SET Status='Catholic' WHERE Institution='University of Santo Tomas'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Institutions", "table_info": {"columns": [{"name": "Institution", "type": "text"}, {"name": "Nickname", "type": "text"}, {"name": "Status", "type": "text"}, {"name": "Founded", "type": "text"}, {"name": "Location", "type": "text"}], "rows": [["Bicol University", "BUtanding", "State", "1969", "Legazpi City , Albay"], ["Bicol State College of Applied Sciences and Technology", "BISCAST", "State", "1911", "Naga City , Camarines Sur"], ["Camarines Norte State College", "CNSC Red Horses", "State", "1992", "Daet , Camarines Norte"], ["Sorsogon State College", "SSC Whalesharks", "State", "1907", "Sorsogon City , Sorsogon"], ["Catanduanes State University", "CSU KETCHUP CSU", "State", "1971", "Virac , Catanduanes"], ["Dr. Emilio B. Espinosa Sr. Memorial State College of Agriculture and Technology", "DEBESMSCAT", "State", "1952", "Mandaon , Masbate"], ["Central Bicol State University of Agriculture", "CBSUA", "State", "1918", "Pili , Camarines Sur"], ["Partido State University", "ParSU Cimmarons", "State", "1941", "Goa , Camarines Sur"], ["Camarines Sur Polytechnic College", "CSPC Blue Stallions", "State", "1983", "Nabua , Camarines Sur"], ["Polytechnic University of the Philippines", "PUP Engkwentro", "State", "1904", "Sta. Mesa, Manila"], ["University of the Philippines Diliman", "UP Fighting Maroons", "State", "1908", "Quezon City, Metro Manila"], ["Ateneo de Manila University", "ADMU Blue Eagles", "Private", "1859", "Quezon City, Metro Manila"], ["De La Salle University", "DLSU Green Archers", "Private", "1911", "Manila, Metro Manila"], ["Far Eastern University", "FEU Tamaraws", "Private", "1928", "Manila, Metro Manila"], ["Mapua University", "MU Cardinals", "Private", "1925", "Intramuros, Manila"], ["University of Santo Tomas", "UST Growling Tigers", "Private", "1611", "Manila, Metro Manila"], ["National University", "NU Bulldogs", "Private", "1900", "Sampaloc, Manila"], ["University of the East", "UE Red Warriors", "Private", "1946", "Sampaloc, Manila"], ["Adamson University", "AdU Falcons", "Private", "1932", "Ermita, Manila"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Institution", "Nickname", "Status", "Founded", "Location"], "add_description": "The name of this table is Institutions, and the headers of this table are Institution,Nickname,Status,Founded,Location.", "source": "hybridqa", "answer_md5": "[('f7e18000deed6e6a91ea63273b3bb99d',)]"} +{"description": "Change the nationality of Amos Oz in the speeches table to Palestine.", "label": ["UPDATE speeches SET Nationality='Palestine' WHERE Recipient='Amos Oz';"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "speeches", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Recipient", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Profession", "type": "TEXT"}, {"name": "Speech", "type": "TEXT"}], "rows": [["1997", "Elie Wiesel", "United States", "Professional writer\\nWinner of the Nobel Peace Prize (1986)", ""], ["1998", "Herman Wouk", "United States", "Professional writer and 1952 Pulitzer Prize winner", ""], ["1999", "A.M. Rosenthal", "United States", "Former New York Times editor\\nFormer New York Daily News columnist", ""], ["2000", "Sir Martin Gilbert", "United Kingdom", "Historian and writer", ""], ["2001", "Cynthia Ozick", "United States", "Professional writer", ""], ["2002", "Charles Krauthammer", "United States", "The Washington Post columnist", "[1]"], ["2003", "Ruth Roskies Wisse", "United States", "Yiddish professor of Harvard University", "[2]"], ["2004", "Arthur Cohn", "Switzerland", "Filmmaker and writer", ""], ["2005", "William Safire", "United States", "Author, journalist and speechwriter\\n1978 Pulitzer Prize winner", ""], ["2006", "Daniel Pipes", "United States", "Author and historian", ""], ["2007", "Norman Podhoretz", "United States", "Author, columnist", ""], ["2008", "David Be'eri, Mordechai Eliav, Rabbi Yehuda Maly", "Israel", "", ""], ["2009", "Caroline Glick", "Israel", "Journalist", ""], ["2010", "Malcolm Hoenlein", "United States", "Executive Vice Chairman of the Conference of Presidents of Major American Jewish Organizations", ""], ["2011", "Saul Bellow", "United States", "Writer and Nobel Prize in Literature (1976)", ""], ["2012", "John Updike", "United States", "Pulitzer Prize-winning author", ""], ["2013", "Philip Roth", "United States", "Novelist and National Book Award winner", ""], ["2014", "Amos Oz", "Israel", "Novelist and political activist", ""], ["2015", "Leon Wieseltier", "United States", "Writer and critic", ""], ["2016", "Jonathan Safran Foer", "United States", "Novelist and essayist", ""], ["2017", "Ethan Coen", "United States", "Filmmaker, director and screenwriter", ""], ["2018", "Zadie Smith", "United Kingdom", "Novelist and essayist", ""], ["2019", "Michael Chabon", "United States", "Novelist and Pulitzer Prize winner", ""], ["2020", "Siri Hustvedt", "United States", "Novelist and essayist", ""]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Recipient", "Nationality", "Profession", "Speech"], "add_description": "The name of this table is speeches, and the headers of this table are Year,Recipient,Nationality,Profession,Speech.", "source": "wikitq", "answer_md5": "[('979d60e5dd410dae0e89998863ed2b18',)]"} +{"description": "To update the results of game 39, set the team to 'Miami Heat' in the game_results table.", "label": ["UPDATE game_results SET Team='Miami Heat' WHERE Game=39"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "game_results", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "Streak", "type": "TEXT"}], "rows": [["19", "December 2", "New Orleans Jazz", "96\u2013108", "9\u201310", "Loss 6"], ["20", "December 5", "Cleveland Cavaliers", "125\u201388", "10\u201310", "Win 1"], ["21", "December 6", "@ New York Knicks", "98\u2013108", "10\u201311", "Loss 1"], ["22", "December 9", "Kansas City Kings", "126\u2013107", "11\u201311", "Win 1"], ["23", "December 11", "@ Atlanta Hawks", "99\u2013122", "11\u201312", "Loss 1"], ["24", "December 12", "New York Knicks", "123\u2013110", "12\u201312", "Win 1"], ["25", "December 13", "@ Chicago Bulls", "103\u2013101", "13\u201312", "Win 2"], ["26", "December 16", "@ Washington Bullets", "94\u2013100", "13\u201313", "Loss 1"], ["27", "December 17", "Houston Rockets", "88\u201385", "14\u201313", "Win 1"], ["28", "December 19", "Washington Bullets", "104\u201388", "15\u201313", "Win 2"], ["29", "December 20", "@ Kansas City Kings", "117\u2013110", "16\u201313", "Win 3"], ["30", "December 23", "Boston Celtics", "101\u201392", "17\u201313", "Win 4"], ["31", "December 26", "@ Philadelphia 76ers", "95\u201396", "17\u201314", "Loss 1"], ["32", "December 27", "Philadelphia 76ers", "130\u2013105", "18\u201314", "Win 1"], ["33", "December 28", "@ Cleveland Cavaliers", "88\u2013111", "18\u201315", "Loss 1"], ["34", "December 30", "Milwaukee Bucks", "118\u2013106", "19\u201315", "Win 1"], ["35", "January 1", "Detroit Pistons", "112\u201399", "20\u201315", "Win 2"], ["36", "January 3", "@ Chicago Bulls", "105\u201391", "21\u201315", "Win 3"], ["37", "January 5", "Golden State Warriors", "114\u2013107", "22\u201315", "Win 4"], ["38", "January 7", "@ Detroit Pistons", "101\u201396", "23\u201315", "Win 5"], ["39", "January 8", "@ San Antonio Spurs", "112\u2013118", "23\u201316", "Loss 1"], ["40", "January 10", "Indiana Pacers", "92\u2013102", "23\u201317", "Loss 2"], ["41", "January 13", "Chicago Bulls", "110\u2013115", "23\u201318", "Loss 3"], ["42", "January 15", "@ Houston Rockets", "98\u2013109", "23\u201319", "Loss 4"], ["43", "January 18", "@ Indiana Pacers", "107\u201396", "24\u201319", "Win 1"], ["44", "January 20", "Denver Nuggets", "99\u2013118", "24\u201320", "Loss 1"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Game", "Date", "Team", "Score", "Record", "Streak"], "add_description": "The name of this table is game_results, and the headers of this table are Game,Date,Team,Score,Record,Streak.", "source": "wikisql", "answer_md5": "[('2b1821698ee008e220be3a90a0173f2f',)]"} +{"description": "Set the Total column to 40 for the Nationality_Passengers_Crew_Total_Table where the Nationality column equals Spain.", "label": ["UPDATE Nationality_Passengers_Crew_Total_Table SET Total = '40' WHERE Nationality = 'Spain'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Nationality_Passengers_Crew_Total_Table", "table_info": {"columns": [{"name": "Nationality", "type": "TEXT"}, {"name": "Passengers", "type": "INT"}, {"name": "Crew", "type": "INT"}, {"name": "Total", "type": "INT"}], "rows": [["Poland", "155", "11", "166"], ["United States", "17", "0", "17"], ["Total", "172", "11", "183"], ["France", "210", "20", "230"], ["Germany", "185", "12", "197"], ["United Kingdom", "150", "15", "165"], ["Spain", "100", "8", "108"], ["Italy", "80", "5", "85"], ["Brazil", "60", "6", "66"], ["India", "40", "3", "43"], ["China", "35", "4", "39"], ["Australia", "25", "2", "27"], ["Canada", "20", "1", "21"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Nationality", "Passengers", "Crew", "Total"], "add_description": "The name of this table is Nationality_Passengers_Crew_Total_Table, and the headers of this table are Nationality,Passengers,Crew,Total.", "source": "fetaqa", "answer_md5": "[('94592e1cc04986f6754bc36829d03a0c',)]"} +{"description": "Change the rank of Montreal-Pierre Elliott Trudeau International Airport to 19 in the Airport Traffic Data table.", "label": ["UPDATE `Airport Traffic Data` SET `Rank` = '19' WHERE `Airport` = 'Montreal-Pierre Elliott Trudeau International Airport'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Airport Traffic Data", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Airport", "type": "TEXT"}, {"name": "Serves", "type": "TEXT"}, {"name": "Aircraft movements", "type": "TEXT"}, {"name": "Annual change", "type": "TEXT"}], "rows": [["1", "Toronto Pearson International Airport", "Greater Toronto Area", "419,061", "2.7%"], ["2", "Vancouver International Airport", "Metro Vancouver", "296,537", "-5.9%"], ["3", "Calgary International Airport", "Calgary", "234,306", "0.5%"], ["4", "Montr\u00e9al-Pierre Elliott Trudeau International Airport", "Greater Montreal", "217,555", "2.5%"], ["5", "Montr\u00e9al/Saint-Hubert Airport", "Greater Montreal", "188,371", "-5.7%"], ["6", "Ottawa Macdonald-Cartier International Airport", "Ottawa", "172,443", "0.3%"], ["7", "Buttonville Municipal Airport", "Markham", "164,976", "6.2%"], ["8", "Victoria International Airport", "Victoria", "146,453", "-13.8%"], ["9", "Boundary Bay Airport", "Greater Vancouver", "144,544", "-27.3%"], ["10", "London International Airport", "London", "141,807", "-12.1%"], ["11", "Calgary/Springbank Airport", "Calgary", "136,625", "-5.0%"], ["12", "Winnipeg James Armstrong Richardson International Airport", "Winnipeg", "134,960", "0.5%"], ["13", "Edmonton International Airport", "Edmonton Capital Region", "130,715", "3.0%"], ["14", "Qu\u00e9bec City Jean Lesage International Airport", "Quebec City", "126,856", "-1.6%"], ["15", "St. Andrews Airport", "Winnipeg", "119,927", "8.5%"], ["16", "Greater Moncton International Airport", "Moncton", "118,852", "-33.3%"], ["17", "Billy Bishop Toronto City Airport", "Toronto", "113,950", "6.7%"], ["18", "Pitt Meadows Airport", "Pitt Meadows", "108,400", "-15.7%"], ["19", "Abbotsford International Airport", "Abbotsford", "102,189", "-20.5%"], ["20", "Region of Waterloo International Airport", "Regional Municipality of Waterloo", "99,334", "4.0%"], ["21", "Halifax Stanfield International Airport", "Halifax", "97,506", "1.2%"], ["22", "Thunder Bay International Airport", "Thunder Bay", "84,220", "-7.6%"], ["23", "Deer Lake Regional Airport", "Deer Lake", "72,981", "-2.3%"], ["24", "Regina International Airport", "Regina", "69,308", "-4.7%"], ["25", "Saskatoon John G. Diefenbaker International Airport", "Saskatoon", "63,092", "0.8%"], ["26", "Charlottetown Airport", "Charlottetown", "57,331", "3.5%"], ["27", "Yellowknife International Airport", "Yellowknife", "51,157", "-0.1%"], ["28", "Fredericton International Airport", "Fredericton", "46,900", "-2.9%"], ["29", "Fort McMurray International Airport", "Fort McMurray", "44,753", "-13.6%"], ["30", "Gander International Airport", "Gander", "42,888", "-1.9%"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Airport", "Serves", "Aircraft movements", "Annual change"], "add_description": "The name of this table is Airport Traffic Data, and the headers of this table are Rank,Airport,Serves,Aircraft movements,Annual change.", "source": "hybridqa", "answer_md5": "[('80a95235674eabcad84ee692903a2a33',)]"} +{"description": "Modify the record in the 'Reality Show Winners' table for season 8 to set the number of episodes to 12, the winner to be Mike Brown with a prize of $620,000, the mole to be Katie Nolan, the runner-up to be Rachel Chen, and the destinations to be New Zealand and Australia.", "label": ["UPDATE `Reality Show Winners` SET `# of Episodes` = '12', `Mole` = 'Katie Nolan', `Winner` = 'Mike Brown ($620,000)', `Runner-up` = 'Rachel Chen', `Destinations` = 'New Zealand , Australia' WHERE `Season` = '8'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Reality Show Winners", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "# of Episodes", "type": "TEXT"}, {"name": "Host", "type": "TEXT"}, {"name": "Mole", "type": "TEXT"}, {"name": "Winner", "type": "TEXT"}, {"name": "Runner-up", "type": "TEXT"}, {"name": "Destinations", "type": "TEXT"}], "rows": [["1", "9", "Anderson Cooper", "Kathryn Price", "Steven Cowles ($510,000)", "Jim Morrison", "United States , France , Monaco , Spain"], ["2", "13", "Anderson Cooper", "William \"Bill\" McDaniel", "Dorothy Hui ($636,000)", "Heather Campbell", "Switzerland , Italy"], ["3", "6", "Ahmad Rash\u0101d", "Frederique van der Wal", "Kathy Griffin ($233,000)", "Erik von Detten", "United States ( Hawaii )"], ["4", "7", "Ahmad Rash\u0101d", "Angie Everhart", "Dennis Rodman ($222,000)", "Mark Curry", "Mexico ( Yucat\u00e1n )"], ["5", "11", "Jon Kelley", "Craig Slike", "Mark Lambrecht ($420,000)", "Nicole Williams", "Chile , Argentina"], ["6", "10", "Jon Kelley", "Brian Worth", "Maria Baer", "Dan Jackson", "Australia"], ["2", "12", "Anderson Cooper", "Lisa Kaplan", "Max Castaldo", "Cameron Sykes", "China"], ["7", "8", "Ahmad Rash\u0101d", "Jenna Wortham", "Gordon Staten Jr. ($280,000)", "Jennifer Chandler", "Peru"], ["3", "9", "Jon Kelley", "Daniel Pittman", "Martha Wong ($375,000)", "Sammy Jea", "South Africa"], ["1", "13", "Anderson Cooper", "Victoria Lewis", "Mike Williams ($630,000)", "Tim Brown", "United States , Canada , Mexico"], ["5", "12", "Ahmad Rash\u0101d", "Kara Swisher", "Stephen Chandler Whitehead ($460,000)", "Michael Peart", "Brazil , Argentina"], ["4", "10", "Jon Kelley", "Jocelyn Samuels", "Jonathan McClain ($300,000)", "Jennifer Hong", "New Zealand"], ["8", "14", "Anderson Cooper", "Megan Ganz", "Jennifer Hayes", "Craig Miller", "Tanzania , Kenya"], ["9", "8", "Ahmad Rash\u0101d", "Liz Fong-Jones", "David Bernhaut ($250,000)", "Joyce Kang", "Cambodia , Vietnam"], ["10", "11", "Jon Kelley", "Annie Duke", "Adam Porter ($390,000)", "Daniel Brown", "Japan , South Korea"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Season", "# of Episodes", "Host", "Mole", "Winner", "Runner-up", "Destinations"], "add_description": "The name of this table is Reality Show Winners, and the headers of this table are Season,# of Episodes,Host,Mole,Winner,Runner-up,Destinations.", "source": "wikisql", "answer_md5": "[('217d93de1112d2eea2387671176a1f48',)]"} +{"description": "Set the nationality of Ian Thorpe in the performance table to 'United Kingdom'.", "label": ["UPDATE performance SET Nationality = 'United Kingdom' WHERE Name = 'Ian Thorpe';"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "performance", "table_info": {"columns": [{"name": "Rank", "type": "int"}, {"name": "Name", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Time", "type": "time"}], "rows": [["", "Jorge Delgado", "Ecuador", "1:55.45"], ["", "Rick DeMont", "United States", "1:55.96"], ["", "Rex Favero", "United States", "1:57.08"], ["4", "Djan Madruga", "Brazil", "1:57.17"], ["5", "-", "-", "-"], ["6", "-", "-", "-"], ["7", "-", "-", "-"], ["8", "-", "-", "-"], [1, "Michael Phelps", "United States", "1:42.96"], [2, "Ryan Lochte", "United States", "1:44.23"], [3, "Ian Thorpe", "Australia", "1:44.06"], [4, "Kosuke Kitajima", "Japan", "1:55.14"], [5, "Leisel Jones", "Australia", "2:05.17"], [6, "Cate Campbell", "Australia", "24.46"], [7, "Nathan Adrian", "United States", "21.66"], [8, "Florent Manaudou", "France", "21.19"], [9, "Sarah Sjostrom", "Sweden", "24.10"], [10, "Katie Ledecky", "United States", "3:56.46"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Name", "Nationality", "Time"], "add_description": "The name of this table is performance, and the headers of this table are Rank,Name,Nationality,Time.", "source": "wikitq", "answer_md5": "[('7f70dc0bf22e895608dce0a006773d84',)]"} +{"description": "Modify the 'Time/Retired' column to '+1:30.763' where the 'Driver' column is 'Lewis Hamilton' in the 'Formula 1 Race Results' table.", "label": ["UPDATE `Formula 1 Race Results` SET `Time/Retired` = '+1:30.763' WHERE `Driver` = 'Lewis Hamilton'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Formula 1 Race Results", "table_info": {"columns": [{"name": "Driver", "type": "TEXT"}, {"name": "Constructor", "type": "TEXT"}, {"name": "Laps", "type": "TEXT"}, {"name": "Time/Retired", "type": "TEXT"}, {"name": "Grid", "type": "TEXT"}], "rows": [["Heinz-Harald Frentzen", "Williams - Renault", "62", "1:31:00.673", "2"], ["Michael Schumacher", "Ferrari", "62", "+1.237", "3"], ["Eddie Irvine", "Ferrari", "62", "+1:18.343", "9"], ["Giancarlo Fisichella", "Jordan - Peugeot", "62", "+1:23.388", "6"], ["Jean Alesi", "Benetton - Renault", "61", "+1 Lap", "14"], ["Mika H\u00e4kkinen", "McLaren - Mercedes", "61", "+1 Lap", "8"], ["Nicola Larini", "Sauber - Petronas", "61", "+1 Lap", "12"], ["Olivier Panis", "Prost - Mugen-Honda", "61", "+1 Lap", "4"], ["Mika Salo", "Tyrrell - Ford", "60", "+2 Laps", "19"], ["Jos Verstappen", "Tyrrell - Ford", "60", "+2 Laps", "21"], ["Ukyo Katayama", "Minardi - Hart", "59", "+3 Laps", "22"], ["Pedro Diniz", "Arrows - Yamaha", "53", "Gearbox", "17"], ["Jacques Villeneuve", "Williams - Renault", "40", "Gearbox", "1"], ["David Coulthard", "McLaren - Mercedes", "38", "Engine", "10"], ["Rubens Barrichello", "Stewart - Ford", "32", "Engine", "13"], ["Johnny Herbert", "Sauber - Petronas", "18", "Electrical", "7"], ["Ralf Schumacher", "Jordan - Peugeot", "17", "Transmission", "5"], ["Shinji Nakano", "Prost - Mugen-Honda", "11", "Collision", "18"], ["Damon Hill", "Arrows - Yamaha", "11", "Collision", "15"], ["Gerhard Berger", "Benetton - Renault", "4", "Spun off", "11"], ["Jan Magnussen", "Stewart - Ford", "2", "Spun off", "16"], ["Jarno Trulli", "Minardi - Hart", "0", "Gearbox", "20"], ["Lewis Hamilton", "Mercedes", "56", "1:28:13.423", "1"], ["Valtteri Bottas", "Mercedes", "56", "+3.856", "2"], ["Max Verstappen", "Red Bull - Honda", "56", "+18.938", "3"], ["Sergio Perez", "Red Bull - Honda", "56", "+21.487", "4"], ["Charles Leclerc", "Ferrari", "56", "+29.504", "5"], ["Lando Norris", "McLaren - Mercedes", "56", "+31.063", "6"], ["Carlos Sainz", "Ferrari", "56", "+46.977", "7"], ["Daniel Ricciardo", "McLaren - Mercedes", "56", "+52.584", "8"], ["Fernando Alonso", "Alpine - Renault", "55", "+1 Lap", "9"], ["Lance Stroll", "Aston Martin - Mercedes", "55", "+1 Lap", "10"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Driver", "Constructor", "Laps", "Time/Retired", "Grid"], "add_description": "The name of this table is Formula 1 Race Results, and the headers of this table are Driver,Constructor,Laps,Time/Retired,Grid.", "source": "wikisql", "answer_md5": "[('74b2fec81e4fbbaa8429fa90240334bc',)]"} +{"description": "Change the team for position 10 to Barcelona in table_14876228_1.", "label": ["UPDATE table_14876228_1 SET Team='Barcelona' WHERE Position=10;"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "table_14876228_1", "table_info": {"columns": [{"name": "Position", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Played", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Draws", "type": "TEXT"}, {"name": "Losses", "type": "TEXT"}, {"name": "Scored", "type": "TEXT"}, {"name": "Conceded", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["1", "Cerro Porte\u00f1o", "18", "10", "6", "2", "30", "15", "36"], ["2", "Guaran\u00ed", "18", "9", "4", "5", "21", "18", "31"], ["3", "Nacional", "18", "9", "3", "6", "25", "22", "30"], ["4", "3 de Febrero", "18", "7", "7", "4", "24", "17", "28"], ["5", "12 de Octubre", "18", "6", "8", "4", "22", "22", "26"], ["6", "Tacuary", "18", "4", "11", "3", "24", "19", "23"], ["7", "Libertad", "18", "4", "7", "7", "21", "23", "19"], ["8", "Sportivo Luque\u00f1o", "18", "3", "8", "7", "20", "22", "17"], ["9", "General Caballero ZC", "18", "2", "7", "9", "16", "28", "13"], ["1", "ABC", "18", "10", "5", "3", "28", "14", "35"], ["2", "FGH", "18", "9", "6", "3", "23", "18", "33"], ["3", "XYZ", "18", "9", "4", "5", "26", "18", "31"], ["4", "RST", "18", "8", "5", "5", "22", "18", "29"], ["5", "PQR", "18", "7", "7", "4", "20", "17", "28"], ["6", "LMN", "18", "6", "9", "3", "25", "20", "27"], ["7", "JKL", "18", "5", "6", "7", "18", "21", "21"], ["8", "UVW", "18", "3", "8", "7", "15", "19", "17"], ["9", "HIJ", "18", "2", "9", "7", "14", "26", "15"], ["10", "EFG", "18", "1", "5", "12", "10", "34", "8"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Position", "Team", "Played", "Wins", "Draws", "Losses", "Scored", "Conceded", "Points"], "add_description": "The name of this table is table_14876228_1, and the headers of this table are Position,Team,Played,Wins,Draws,Losses,Scored,Conceded,Points.", "source": "wikisql", "answer_md5": "[('dadc3082d7ba94b24eea53f79031f757',)]"} +{"description": "Update the NBA Playoff History table for the Los Angeles Clippers to indicate that their last series win in the NBA playoffs was in the 2021 Western Semifinals, they currently have a losing streak of 1 series, and their most recent series loss was to the 2020 Denver Nuggets.", "label": ["UPDATE `NBA Playoff History` SET `Last series win in NBA Playoffs`='2021 Western Semifinals', `Losing streak`='1', `Series losses - teams`='2020 Denver Nuggets' WHERE `Team`='Los Angeles Clippers'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "NBA Playoff History", "table_info": {"columns": [{"name": "Seasons since win", "type": "INTEGER"}, {"name": "Team", "type": "TEXT"}, {"name": "Last series win in NBA Playoffs", "type": "TEXT"}, {"name": "Losing streak", "type": "TEXT"}, {"name": "Series losses - teams", "type": "TEXT"}], "rows": [["15", "Charlotte Hornets", "2002 Eastern First Round", "4 \u2666", "2002 New Jersey Nets 2010 Orlando 2014 Miami 2016 Miami"], ["15", "Sacramento Kings", "2004 Western First Round", "3", "2004 Minnesota 2005 Seattle 2006 San Antonio"], ["15", "Minnesota Timberwolves", "2004 Western Semifinals", "2", "2004 Los Angeles Lakers 2018 Houston"], ["11", "Detroit Pistons", "2008 Eastern Semifinals", "4", "2008 Boston 2009 Cleveland 2016 Cleveland 2019 Milwaukee"], ["9", "Orlando Magic", "2010 Eastern Semifinals", "4", "2010 Boston 2011 Atlanta 2012 Indiana 2019 Toronto"], ["9", "Phoenix Suns", "2010 Western Semifinals", "1", "2010 Los Angeles Lakers"], ["8", "Dallas Mavericks", "2011 Finals", "4 \u2666", "2012 Oklahoma City 2014 San Antonio 2015 Houston 2016 Oklahoma City"], ["7", "Los Angeles Lakers", "2012 Western First Round", "2", "2012 Oklahoma City 2013 San Antonio"], ["6", "New York Knicks", "2013 Eastern First Round", "1", "2013 Indiana"], ["5", "Brooklyn Nets", "2014 Eastern First Round", "3", "2014 Miami 2015 Atlanta 2019 Philadelphia"], ["5", "Indiana Pacers", "2014 Eastern Semifinals", "5", "2014 Miami 2016 Toronto 2017 Cleveland 2018 Cleveland 2019 Boston"], ["4", "Chicago Bulls", "2015 Eastern First Round", "2", "2015 Cleveland 2017 Boston"], ["4", "Memphis Grizzlies", "2015 Western First Round", "2", "2015 Golden State 2016 San Antonio Spurs 2017 San Antonio Spurs"], ["4", "Los Angeles Clippers", "2015 Western First Round", "4 \u00a7", "2015 Houston 2016 Portland 2017 Utah 2019 Golden State"], ["3", "Atlanta Hawks", "2016 Eastern First Round", "2", "2016 Cleveland 2017 Washington"], ["3", "Miami Heat", "2016 Eastern First Round", "2", "2016 Toronto 2018 Philadelphia"], ["3", "Oklahoma City Thunder", "2016 Western Semifinals", "4 \u2666", "2016 Golden State 2017 Houston 2018 Utah 2019 Portland"], ["2", "Washington Wizards", "2017 Eastern First Round", "2", "2017 Boston 2018 Toronto"], ["2", "San Antonio Spurs", "2017 Western Semifinals", "3", "2017 Golden State 2018 Golden State 2019 Denver"], ["1", "New Orleans Pelicans", "2018 Western First Round", "1", "2018 Golden State"], ["10", "Houston Rockets", "1997 Western Conference Finals", "7", "1997 Utah 1998 Utah 2004 Los Angeles Lakers 2009 Los Angeles Lakers 2012 Oklahoma City 2013 Oklahoma City 2017 San Antonio"], ["12", "Portland Trail Blazers", "2000 Western Conference Finals", "3", "2000 Los Angeles Lakers 2016 Golden State 2019 Golden State"], ["14", "Cleveland Cavaliers", "2010 Eastern Conference Semifinals", "2", "2010 Boston 2017 Golden State"], ["13", "Milwaukee Bucks", "2001 Eastern Conference Finals", "3", "2001 Philadelphia 2019 Toronto 2020 Miami"], ["16", "Toronto Raptors", "2019 NBA Finals", "4 \u2666", "2020 Boston 2020 Miami 2021 Brooklyn 2022 Philadelphia"], ["18", "Golden State Warriors", "2015 NBA Finals", "4 \u2666", "2016 Cleveland 2019 Toronto 2019 Los Angeles Clippers 2020 Los Angeles Lakers"], ["20", "Boston Celtics", "2008 NBA Finals", "4 \u2666", "2010 Los Angeles Lakers 2017 Cleveland 2018 Cleveland 2019 Milwaukee"], ["21", "Utah Jazz", "1998 Western Conference Finals", "6", "1998 Chicago 2007 Golden State 2010 Los Angeles Lakers 2017 Golden State 2018 Houston 2019 Houston"], ["22", "New Jersey Nets", "2003 NBA Finals", "2", "2003 San Antonio 2004 Detroit"], ["23", "Philadelphia 76ers", "1983 NBA Finals", "4 \u2666", "2001 Los Angeles Lakers 2002 Boston 2018 Boston 2019 Toronto"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Seasons since win", "Team", "Last series win in NBA Playoffs", "Losing streak", "Series losses - teams"], "add_description": "The name of this table is NBA Playoff History, and the headers of this table are Seasons since win,Team,Last series win in NBA Playoffs,Losing streak,Series losses - teams.", "source": "hybridqa", "answer_md5": "[('58d4fc8c1e09ba0385674096dffc5c4a',)]"} +{"description": "Set the Notes column to 'Released' and the Role column to 'Todd' for the rows where the Title column is 'Chaos Walking' in the Filmography table.", "label": ["UPDATE Filmography SET Notes='Released', Role='Todd' WHERE Title='Chaos Walking'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Filmography", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2010", "Arrietty", "Sh\u014d (voice)", "English dub (UK, AU, NZL)"], ["2012", "The Impossible", "Lucas Bennett", "-"], ["2013", "How I Live Now", "Isaac", "-"], ["2013", "Moments", "Boy", "Short film"], ["2014", "Locke", "Eddie (voice)", "-"], ["2014", "Billy Elliot the Musical Live", "Former Billy", "Cameo"], ["2015", "In the Heart of the Sea", "Thomas Nickerson", "-"], ["2015", "Tweet", "Himself", "Short film; also director"], ["2016", "Captain America: Civil War", "Peter Parker / Spider-Man", "-"], ["2016", "Edge of Winter", "Bradley Baker", "-"], ["2016", "A Monster Calls", "The Monster", "Stand-in"], ["2016", "The Lost City of Z", "Jack Fawcett", "-"], ["2017", "Pilgrimage", "The Novice / Brother Diarmuid", "-"], ["2017", "Spider-Man: Homecoming", "Peter Parker / Spider-Man", "-"], ["2017", "The Current War", "Samuel Insull", "-"], ["2018", "Avengers: Infinity War", "Peter Parker / Spider-Man", "-"], ["2019", "Avengers: Endgame", "Peter Parker / Spider-Man", "-"], ["2019", "Spider-Man: Far From Home", "Peter Parker / Spider-Man", "Post-production"], ["2019", "Spies in Disguise", "Walter Beckett (voice)", "In production"], ["2020", "The Voyage of Doctor Dolittle", "Jip (voice)", "Post-production"], ["2020", "Onward", "(voice)", "In production"], ["2020", "Chaos Walking", "Todd Hewitt", "Post-production"], ["TBA", "The Devil All the Time", "Arvin Russell", "Post-production"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('9844abc731d43df09c8a4ee40ff31fc0',)]"} +{"description": "Set the Notes field in the Movies table to 'First Marvel movie with a predominantly black cast' where the Title field equals 'Black Panther'.", "label": ["UPDATE Movies SET Notes='First Marvel movie with a predominantly black cast' WHERE Title='Black Panther';"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Movies", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Director", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["2016", "En Moi In Me", "The actress", "Laetitia Casta", "Cannes Critics' Week"], ["2016", "Absolutely Fabulous: The Movie", "Herself", "Mandie Fletcher", "cameo appearance"], ["2017", "The Shape of Water", "Elisa Esposito", "Guillermo del Toro", "Academy Award for Best Picture"], ["2018", "A Star is Born", "Ally Maine", "Bradley Cooper", "Academy Award nomination for Best Actress"], ["2019", "Us", "Adelaide Wilson", "Jordan Peele", "Saturn Award for Best Actress"], ["2020", "Birds of Prey", "Harley Quinn", "Cathy Yan", "MTV Movie Award for Best Villain"], ["2021", "Dune", "Lady Jessica", "Denis Villeneuve", "Saturn Award nomination for Best Supporting Actress"], ["2021", "The Suicide Squad", "Amanda Waller", "James Gunn", "Cameo Appearance"], ["2020", "Wonder Woman 1984", "Diana Prince / Wonder Woman", "Patty Jenkins", "Saturn Award nomination for Best Actress"], ["2019", "Captain Marvel", "Carol Danvers / Captain Marvel", "Anna Boden and Ryan Fleck", "Academy Award nomination for Best Visual Effects"], ["2018", "Black Panther", "Nakia", "Ryan Coogler", "Academy Award nomination for Best Picture"], ["2017", "Get Out", "Rose Armitage", "Jordan Peele", "Saturn Award for Best Supporting Actress"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Title", "Role", "Director", "Notes"], "add_description": "The name of this table is Movies, and the headers of this table are Year,Title,Role,Director,Notes.", "source": "fetaqa", "answer_md5": "[('efd8d6a9c89c47c84a5f367ab16a9a81',)]"} +{"description": "In the `Miss World Winners` table, update the `Represented` column to 'Taiwan' where the value in the `Year` column is equal to '2015'.", "label": ["UPDATE `Miss World Winners` SET `Represented`='Taiwan' WHERE `Year`='2015'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Miss World Winners", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Winner", "type": "TEXT"}, {"name": "Represented", "type": "TEXT"}, {"name": "Placement at Miss World", "type": "TEXT"}], "rows": [["2004", "Yessica Ram\u00edrez", "Mexico", "Top 15"], ["2007", "Zhang Zilin", "China", "Miss World 2007"], ["2008", "Ksenia Sukhinova", "Russia", "Miss World 2008"], ["2009", "Perla Beltr\u00e1n", "Mexico", "1st Runner-up"], ["2010", "Mariann Birkedal", "Norway", "Top 7"], ["2011", "Zhanna Zhumaliyeva", "Kazakhstan", "Top 15"], ["2012", "Atong Demach", "South Sudan", "Top 7"], ["2013", "Megan Young", "Philippines", "Miss World 2013"], ["2014", "Isidora Borov\u010danin", "Bosnia and Herzegovina", "Unplaced"], ["2015", "Mireia Lalaguna", "Spain", "Miss World 2015"], ["2016", "Jing Kong", "China", "Top 11"], ["2017", "Ugochi Ihezue", "Nigeria", "Top 15"], ["2018", "Ma\u00ebva Coucke", "France", "Top 12"], ["2019", "Nyekachi Douglas", "Nigeria", "Top 5"], ["2005", "Emma Wareus", "Guyana", "Top 15"], ["2010", "Alexandria Mills", "USA", "Miss World 2010"], ["2012", "Natalia Pereverzeva", "Russia", "3rd Runner-up"], ["2013", "Elena Ibarbia", "Spain", "Top 20"], ["2014", "Rolene Strauss", "South Africa", "Miss World 2014"], ["2016", "Stephanie del Valle", "Puerto Rico", "Miss World 2016"], ["2017", "Manushi Chhillar", "India", "Miss World 2017"], ["2018", "Nicolene Limsnukan", "Thailand", "Top 30"], ["2019", "Toni-Ann Singh", "Jamaica", "Miss World 2019"], ["2020", "Andrea Meza", "Mexico", "Miss World 2020"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Winner", "Represented", "Placement at Miss World"], "add_description": "The name of this table is Miss World Winners, and the headers of this table are Year,Winner,Represented,Placement at Miss World.", "source": "hybridqa", "answer_md5": "[('71abed9c1695263cfb257870b23b5951',)]"} +{"description": "Update the `Against` column to `1299` in the `Tallangatta DFL Table` where the `Tallangatta DFL` is equal to `Bright`.", "label": ["UPDATE `Tallangatta DFL Table` SET `Against`='1299' WHERE `Tallangatta DFL`='Bright'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Tallangatta DFL Table", "table_info": {"columns": [{"name": "Tallangatta DFL", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Byes", "type": "TEXT"}, {"name": "Losses", "type": "TEXT"}, {"name": "Draws", "type": "TEXT"}, {"name": "Against", "type": "TEXT"}], "rows": [["Kiewa Sandy Creek", "16", "0", "2", "0", "1132"], ["Mitta United", "15", "0", "2", "1", "1170"], ["Dederang Mt Beauty", "13", "0", "5", "0", "1219"], ["Tallangatta Valley", "11", "0", "7", "0", "1231"], ["Barnawartha", "11", "0", "7", "0", "1384"], ["Chiltern", "10", "0", "8", "0", "1430"], ["Beechworth", "9", "0", "8", "1", "1374"], ["Yackandandah", "9", "0", "9", "0", "1574"], ["Thurgoona", "5", "0", "13", "0", "1630"], ["Wahgunyah", "5", "0", "13", "0", "1511"], ["Rutherglen", "2", "0", "16", "0", "1851"], ["Wodonga Saints", "1", "0", "17", "0", "1964"], ["Kergunyah", "6", "0", "8", "0", "1321"], ["Cheshunt", "10", "0", "6", "0", "1199"], ["Tallangatta DFL", "14", "0", "2", "0", "1067"], ["Bright", "12", "0", "4", "0", "1275"], ["Goornong", "8", "0", "8", "0", "1412"], ["Baranduda", "7", "0", "9", "0", "1456"], ["Henty", "16", "0", "0", "2", "992"], ["Tungamah", "13", "0", "3", "1", "1054"], ["Upper Murray", "11", "0", "5", "0", "1333"], ["Wahgunyah", "7", "0", "9", "0", "1576"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Tallangatta DFL", "Wins", "Byes", "Losses", "Draws", "Against"], "add_description": "The name of this table is Tallangatta DFL Table, and the headers of this table are Tallangatta DFL,Wins,Byes,Losses,Draws,Against.", "source": "wikisql", "answer_md5": "[('3ec43a912ff028326341b039edb8a1f9',)]"} +{"description": "Alter the `Floors` value to '69' for the building named 'Capella Tower' in the table `Tallest Buildings in Minneapolis`.", "label": ["UPDATE `Tallest Buildings in Minneapolis` SET `Floors`='69' WHERE `Name`='Capella Tower'"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Tallest Buildings in Minneapolis", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Street address", "type": "TEXT"}, {"name": "Years as tallest", "type": "TEXT"}, {"name": "Height ft (m)", "type": "TEXT"}, {"name": "Floors", "type": "INT"}], "rows": [["Globe Building", "4th Street South", "1882-1886", "157 (48)", "8"], ["Lumber Exchange Building", "10 5th Street South", "1886-1887", "165 (50)", "12"], ["Industrial Exposition Building", "Central Avenue Southeast and Main Street Southeast", "1887-1890", "240 (73)", "8"], ["Metropolitan Building", "308 2nd Avenue South", "1890-1895", "258 (79)", "12"], ["Minneapolis City Hall", "350 5th Street South", "1895-1929", "341 (104)", "14"], ["Foshay Tower", "821 Marquette Avenue", "1929-1973", "448 (137)", "32"], ["IDS Tower", "80 8th Street South", "1973-present", "792 (241)", "55"], ["Target Plaza South", "1000 Nicollet Mall", "1987-present", "225 (68.6)", "18"], ["Wells Fargo Center", "90 South 7th Street", "1988-present", "774 (236)", "57"], ["US Bank Plaza", "220 South 6th Street", "1981-present", "565 (172)", "40"], ["Capella Tower", "225 South 6th Street", "1992-present", "775 (236)", "58"], ["Ameriprise Financial Center", "707 2nd Avenue South", "2000-present", "498 (152)", "31"], ["Fifth Street Towers", "150 South 5th Street", "1987-present", "775 (236)", "41"], ["AT&T Tower", "901 Marquette Avenue", "1991-present", "750 (229)", "56"], ["IDS Center Tower", "80 South 8th Street", "1972-present", "792 (241)", "55"], ["Hennepin County Government Center", "300 South 6th Street", "1973-present", "480 (146)", "24"], ["City Center", "33 South 6th Street", "1983-present", "651 (198)", "51"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "Street address", "Years as tallest", "Height ft (m)", "Floors"], "add_description": "The name of this table is Tallest Buildings in Minneapolis, and the headers of this table are Name,Street address,Years as tallest,Height ft (m),Floors.", "source": "sqa", "answer_md5": "[('fbb70fed0989a24fab7ca6e33394bbf9',)]"} +{"description": "The transfer fee for Neymar Jr. to Football Team Transfers has been updated to \u20ac250m.", "label": ["UPDATE `Football Team Transfers` SET `Transfer fee`='\u20ac250m' WHERE `Name`='Neymar Jr.'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Football Team Transfers", "table_info": {"columns": [{"name": "Nat.", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Since", "type": "TEXT"}, {"name": "Goals", "type": "TEXT"}, {"name": "Ends", "type": "TEXT"}, {"name": "Transfer fee", "type": "TEXT"}], "rows": [["GER", "Michael Rensing", "2003", "0", "2010", "Youth system"], ["GER", "Hans-J\u00f6rg Butt", "2008", "0", "2010", "Free"], ["GER", "Thomas Kraft", "2006", "0", "2011", "Youth system"], ["BRA", "L\u00facio ( VC )", "2004", "7", "2010", "\u20ac 12m"], ["BEL", "Daniel Van Buyten", "2006", "7", "2010", "\u20ac 8m"], ["ARG", "Mart\u00edn Demichelis ( VC )", "2003", "11", "2012", "\u20ac 5m"], ["GER", "Philipp Lahm", "2005", "4", "2012", "Loan return"], ["ITA", "Massimo Oddo", "2008", "0", "2009", "Loaned"], ["GER", "Christian Lell", "2003", "1", "2011", "Youth system"], ["BRA", "Breno", "2008", "0", "2012", "\u20ac 12m"], ["FRA", "Franck Rib\u00e9ry", "2007", "20", "2011", "\u20ac 25m"], ["TUR", "Hamit Alt\u0131ntop", "2007", "5", "2010", "Free"], ["BRA", "Z\u00e9 Roberto", "2007", "14", "2009", "\u20ac 9.5m"], ["GER", "Andreas Ottl", "2005", "5", "2011", "Youth system"], ["NED", "Mark van Bommel ( captain )", "2006", "10", "2009", "\u20ac 6m"], ["ARG", "Jos\u00e9 Ernesto Sosa", "2007", "2", "2011", "\u20ac 6m"], ["GER", "Tim Borowski", "2008", "5", "2011", "Free"], ["GER", "Bastian Schweinsteiger", "2002", "20", "2012", "Youth system"], ["ITA", "Luca Toni", "2007", "38", "2011", "\u20ac 11m"], ["GER", "Lukas Podolski", "2006", "15", "2010", "\u20ac 10m"], ["GER", "Miroslav Klose", "2007", "20", "2011", "\u20ac 14m"], ["GER", "Thomas M\u00fcller", "2008", "0", "2011", "Youth system"], ["GER", "Manuel Neuer", "2011", "0", "2023", "\u20ac 30m"], ["ESP", "Sergio Ramos", "2021", "1", "2025", "\u20ac 25m"], ["ENG", "Trent Alexander-Arnold", "2016", "6", "2024", "\u20ac 40m"], ["FRA", "Kylian Mbappe", "2018", "56", "2023", "\u20ac 180m"], ["POR", "Cristiano Ronaldo", "2018", "101", "2022", "\u20ac 100m"], ["BEL", "Kevin De Bruyne", "2015", "33", "2025", "\u20ac 130m"], ["BRA", "Neymar Jr.", "2013", "68", "2025", "\u20ac 200m"], ["ARG", "Lionel Messi", "2004", "120", "2023", "Free"], ["ESP", "Sergio Busquets", "2008", "14", "2023", "Youth system"], ["NED", "Virgil van Dijk", "2018", "5", "2024", "\u20ac 85m"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Nat.", "Name", "Since", "Goals", "Ends", "Transfer fee"], "add_description": "The name of this table is Football Team Transfers, and the headers of this table are Nat.,Name,Since,Goals,Ends,Transfer fee.", "source": "wikisql", "answer_md5": "[('2e453672ce93cc7d66ce13dd7bfe5f70',)]"} +{"description": "Update the Midlands Region in the 'Irish Counties and Cities' table for County Kildare.", "label": ["UPDATE `Irish Counties and Cities` SET `NUTS 3 Region`='Midlands Region' WHERE `County or City`='County Kildare'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Irish Counties and Cities", "table_info": {"columns": [{"name": "County or City", "type": "TEXT"}, {"name": "NUTS 3 Region", "type": "TEXT"}, {"name": "Population (2006)", "type": "TEXT"}, {"name": "Area (km\u00b2)", "type": "TEXT"}, {"name": "Population Density", "type": "TEXT"}, {"name": "Principal town/city", "type": "TEXT"}, {"name": "Vehicle Registration Code", "type": "TEXT"}], "rows": [["County Sligo", "Border Region", "60,894", "1,837.46", "33.1", "Sligo", "SO"], ["County Donegal", "Border Region", "147,264", "4,859.51", "30.3", "Lifford", "DL"], ["County Monaghan", "Border Region", "55,997", "1,295.92", "43.2", "Monaghan", "MN"], ["County Laois", "Midlands Region", "67,059", "1,719.46", "39.0", "Portlaoise", "LS"], ["County Longford", "Midlands Region", "34,391", "1,091.25", "31.5", "Longford", "LD"], ["County Offaly", "Midlands Region", "70,868", "1,989.81", "35.6", "Tullamore", "OY"], ["County Westmeath", "Midlands Region", "79,346", "1,824.86", "43.5", "Mullingar", "WH"], ["Galway city", "West Region", "72,414", "50.57", "1,432.0", "Galway", "G"], ["County Galway", "West Region", "159,256", "6,099.95", "26.1", "Galway", "G"], ["County Mayo", "West Region", "123,839", "5,588.31", "22.2", "Castlebar", "MO"], ["County Roscommon", "West Region", "58,768", "2,548.04", "23.1", "Roscommon", "RN"], ["\u2013", "Border, Midland and Western NUTS-II Region", "\u2013", "\u2013", "\u2013", "\u2013", "\u2013"], ["Dublin city", "Dublin Region", "506,211", "117.61", "4,304.1", "Dublin", "D"], ["D\u00fan Laoghaire\u2013Rathdown", "Dublin Region", "194,038", "126.95", "1,528.5", "D\u00fan Laoghaire", "D"], ["Fingal", "Dublin Region", "239,992", "453.09", "529.7", "Swords", "D"], ["Limerick city", "Mid-West Region, Ireland", "52,539", "20.35", "2,581.8", "Limerick", "L"], ["County Limerick", "Mid-West Region, Ireland", "131,516", "2,739.67", "48.0", "Limerick", "LK"], ["North Tipperary", "Mid-West Region, Ireland", "66,023", "2,046.30", "32.3", "Nenagh", "TN"], ["County Clare", "Mid-West Region, Ireland", "110,950", "3,442.32", "32.2", "Ennis", "CE"], ["County Kildare", "Mid-East Region", "186,335", "1,694.20", "110.0", "Naas", "KE"], ["County Meath", "Mid-East Region", "162,831", "2,334.54", "69.7", "Navan", "MH"], ["County Wicklow", "Mid-East Region", "126,194", "2,032.60", "62.1", "Wicklow", "WW"], ["County Wexford", "South-East Region", "131,749", "2,365.27", "55.7", "Wexford", "WX"], ["County Kilkenny", "South-East Region", "87,558", "2,071.69", "42.3", "Kilkenny", "KK"], ["County Carlow", "South-East Region", "50,349", "897.90", "56.1", "Carlow", "CW"], ["South Tipperary", "South-East Region", "83,221", "2,257.94", "36.9", "Clonmel", "TS"], ["Waterford city", "South-East Region", "45,748", "41.58", "1,100.2", "Waterford", "W"], ["County Waterford", "South-East Region", "62,213", "1,817.13", "34.2", "Dungarvan", "WD"], ["Cork city", "South-West Region", "119,418", "39.61", "3,014.8", "Cork", "C"], ["County Louth", "Border Region", "128,884", "820.91", "157.0", "Dundalk", "LH"], ["County Leitrim", "Border Region", "31,972", "1,588.87", "20.1", "Carrick-on-Shannon", "LM"], ["County Cavan", "Border Region", "73,183", "1,931.25", "38.0", "Cavan", "CN"], ["County Dublin", "Dublin Region", "1,273,069", "921.80", "1,380.3", "Dublin", "D"], ["County Laois", "Midlands Region", "96,212", "1,719.46", "56.0", "Portlaoise", "LS"], ["County Cork", "South-West Region", "542,868", "7,457.21", "72.8", "Cork", "C"], ["County Waterford", "South-East Region", "113,795", "1,836.44", "62.0", "Dungarvan", "WD"], ["County Kerry", "South-West Region", "145,502", "4,806.99", "30.3", "Tralee", "KY"], ["County Wexford", "South-East Region", "154,383", "2,365.27", "65.3", "Wexford", "WX"], ["County Kilkenny", "South-East Region", "99,232", "2,071.69", "47.9", "Kilkenny", "KK"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["County or City", "NUTS 3 Region", "Population (2006)", "Area (km\u00b2)", "Population Density", "Principal town/city", "Vehicle Registration Code"], "add_description": "The name of this table is Irish Counties and Cities, and the headers of this table are County or City,NUTS 3 Region,Population (2006),Area (km\u00b2),Population Density,Principal town/city,Vehicle Registration Code.", "source": "wikisql", "answer_md5": "[('59953e57110d3a12dcaeed23e0e1bb92',)]"} +{"description": "Update the note for John Smith in the College Alumni Information database to reflect that he is a successful investment banker with senior positions at top firms and is currently the CEO of a multinational financial services company.", "label": ["UPDATE `College Alumni Information` SET `Notes`='Successful investment banker who has held senior positions at several top firms. Currently serving as the CEO of a multinational financial services company.' WHERE `Name`='John Smith'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "College Alumni Information", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "M", "type": "INT"}, {"name": "G", "type": "INT"}, {"name": "Degree", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Tony Ambrose", "1951", "1954", "BA Natural Science ( Engineering , 4th )", "British rally driver who was given a red MG sports car by his father for winning a scholarship to the college"], ["Ranjit Bhatia", "1957", "1959", "BA Mathematics ( 3rd )", "Indian athlete who competed in the 1960 Summer Olympics ( marathon and 5000 metres )"], ["Trevor Brewer", "1948", "1952", "BA Chemistry ( 2nd )", "Welsh rugby union international , winning three caps ( 1950-1955 ) ; rugby Blue in 1951"], ["Bailey Davies", "1905", "1908", "BA Mathematics ( 3rd )", "Welsh rugby union international , winning one cap ( 1907 ) ; rugby Blue three times ( 1905-1907 )"], ["Jenkin Alban Davies", "1906 ?", "1909", "BA Theology ( 3rd )", "Welsh rugby union international , winning seven caps ( 1913-1914 ) ; did not win a Blue"], ["Sir David William Evans", "1885", "1888", "?", "Welsh rugby union international , winning five caps ( 1899-1891 ) ; rugby Blue twice ( 1887 and 1888 ) ; later became a solicitor and was knighted for public services to Wales"], ["Walter Rice Evans", "1887", "1890 ?", "?", "Welsh rugby union international , winning three caps ( 1890-1891 ) ; rugby Blue in 1890"], ["William Frederick Evans", "1876", "1883", "BA Theology ( 3rd , 1880 ) , MA ( 1883 )", "Welsh rugby union international , winning two caps ( 1882 and 1883 ) ; did not win a Blue"], ["Arthur Evanson", "1880", "1884", "BA ( 1884 ) , MA ( 1887 )", "English rugby union international , winning four caps ( 1882-1884 ) ; the college 's first rugby Blue ( twice , 1880 and 1881 ) , and its only English rugby international"], ["Gwyn Francis", "1919", "1921", "BA French", "Welsh rugby union international , winning two caps ( 1919 and 1924 ) ; rugby Blue in 1919 , and part of the college team ( along with William Havard ) that won the inter-college cup in 1920"], ["William Havard", "1919", "1921", "BA Modern History", "College chaplain ( 1919-1921 ) who won his 'Blue ' for rugby and represented Wales against New Zealand Services in 1919 ( his only international ) before becoming Bishop of St Asaph ( 1934-1950 ) and Bishop of St David 's ( 1950-1956 )"], ["Vivian Jenkins", "1930", "1933", "BA Literae Humaniores", "Welsh rugby union international , winning fourteen caps ( 1933-1939 ) and one for the British and Irish Lions , who was the first Welsh full-back to score a try in an international match ; rugby Blue three times ( 1930-1932 ) ; also played cricket for Glamorgan"], ["Kenyon Jones", "1930", "1933", "BA Modern History ( 2nd )", "Welsh rugby union international , winning one cap ( 1934 ) ; rugby Blue twice ( 1931 and 1932 )"], ["Thomas Babington Jones", "1871", "1875", "BA Mathematics ( 4th )", "Played first-class cricket for Oxford University CC ; cricket Blue in 1874"], ["Charles Lewis", "1872", "1879", "BA ( 1876 ) , MA ( 1879 )", "Welsh rugby union international , winning five caps ( 1882-1884 ) ; a triple Blue ( cricket , hammer and hurdles , but not rugby )"], ["Hilary Lister", "1991", "1996", "BA Biochemistry", "Quadriplegic solo sailor - the first quadriplegic sailor to cross the English Channel"], ["James Page", "1919", "1923", "BA Literae Humaniores ( 3rd , 1922 ) , BA Jurisprudence ( 4th , 1923 )", "President of the Jesus College Jesus College Record and Captain of Boats whilst at college ; rowing coach and secretary of the Amateur Rowing Association ( 1952-1972 )"], ["Conway Rees", "1891", "1894", "BA Modern History ( 3rd )", "Welsh rugby union international , winning three caps ( 1892-1894 ) ; rugby Blue three times ( 1891-1893 ) and the first Welshman to captain Oxford University RFC"], ["Aneurin Rees", "1877", "DNG", "-", "Welsh rugby union international , winning one cap in the first international match involving Wales ( 1881 ) ; did not win a Blue"], ["George Robinson", "1879", "1883", "BA Theology ( 3rd )", "Played first-class cricket for Oxford University CC ; cricket Blue three times ( 1881-1883 )"], ["John Smith", "2000", "2003", "BA Chemistry (1st)", "Played football for college team; member of Chemistry society"], ["Sarah Lee", "2015", "2018", "BA English (2:1)", "Published a collection of short stories after graduation"], ["Alex Chen", "2012", "2016", "BA History (2:2)", "Founding member of college ultimate frisbee team"], ["Rachel Kim", "2008", "2012", "BA Biology (1st)", "Awarded college research grant and presented findings at national conference"], ["David Nguyen", "2010", "2015", "BA Economics & Management (2:1)", "Interned at Goldman Sachs and now works as a consultant"], ["Lucas Hernandez", "2013", "2016", "BA Classics (2:2)", "Performed in several college theater productions"], ["Amanda Patel", "2016", "2019", "BA Psychology (1st)", "Volunteered at local mental health center during college"], ["Joshua Brown", "2005", "2009", "BA Political Science (2:1)", "Worked as a campaign manager for a local politician after graduation"], ["Catherine Kim", "2017", "2020", "BA Sociology (2:1)", "Organized and led several college protests for social justice causes"], ["Peter Johnson", "2009", "2013", "BA Physics (1st)", "Conducted research with professor and co-authored published paper"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "M", "G", "Degree", "Notes"], "add_description": "The name of this table is College Alumni Information, and the headers of this table are Name,M,G,Degree,Notes.", "source": "hybridqa", "answer_md5": "[('1fc4a13f5461683c14885a4cb91302d2',)]"} +{"description": "Update the tournament results for the Australian Open in 2006 to 'QF', 2007 to 'SF', 2008 to 'F', 2009 to 'A', 2011 to 'A', and 2012 to 'A' in the 'Tournament Results by Year' table.", "label": ["UPDATE `Tournament Results by Year` SET `2006`= 'QF', `2007`= 'SF', `2008`= 'F', `2009`= 'A', `2011`= 'A', `2012`= 'A' WHERE `Tournament` = 'Australian Open'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Tournament Results by Year", "table_info": {"columns": [{"name": "Tournament", "type": "TEXT"}, {"name": "2006", "type": "TEXT"}, {"name": "2007", "type": "TEXT"}, {"name": "2008", "type": "TEXT"}, {"name": "2009", "type": "TEXT"}, {"name": "2011", "type": "TEXT"}, {"name": "2012", "type": "TEXT"}], "rows": [["Grand Slam Tournaments", "Grand Slam Tournaments", "Grand Slam Tournaments", "Grand Slam Tournaments", "Grand Slam Tournaments", "Grand Slam Tournaments", "Grand Slam Tournaments"], ["Australian Open", "A", "A", "A", "A", "1R", "A"], ["French Open", "A", "A", "A", "A", "A", "A"], ["Wimbledon", "1R", "A", "3R", "A", "A", "A"], ["US Open", "A", "A", "A", "A", "A", "A"], ["Win\u2013Loss", "0\u20131", "0\u20130", "2\u20131", "0\u20130", "0\u20131", "0\u20130"], ["Tournament 1", "A", "A", "A", "A", "1R", "A"], ["Tournament 2", "A", "A", "A", "A", "A", "A"], ["Tournament 3", "1R", "A", "3R", "A", "A", "A"], ["Tournament 4", "A", "A", "A", "A", "A", "A"], ["Tournament 5", "0\u20131", "0\u20130", "2\u20131", "0\u20130", "0\u20131", "0\u20130"], ["Tournament 6", "3R", "4R", "A", "A", "A", "2R"], ["Tournament 7", "A", "A", "A", "A", "A", "A"], ["Tournament 8", "A", "A", "A", "A", "A", "A"], ["Tournament 9", "2R", "1R", "A", "1R", "A", "A"], ["Tournament 10", "A", "A", "A", "A", "A", "A"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Tournament", "2006", "2007", "2008", "2009", "2011", "2012"], "add_description": "The name of this table is Tournament Results by Year, and the headers of this table are Tournament,2006,2007,2008,2009,2011,2012.", "source": "wikisql", "answer_md5": "[('d83fc782bab16a0cc6bd4cdfd95ea9a0',)]"} +{"description": "Set 'To par' to '-15' for 'Rory McIlroy' who finished first in 'Golf Tournament Winners'.", "label": ["UPDATE `Golf Tournament Winners` SET `To par`='\u201315' WHERE Player='Rory McIlroy' AND Finish='1'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Golf Tournament Winners", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Year(s) won", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}, {"name": "To par", "type": "TEXT"}, {"name": "Finish", "type": "TEXT"}], "rows": [["Greg Norman", "Australia", "1986", "275", "\u201313", "T2"], ["Tom Watson", "United States", "1975 , 1977 , 1980 , 1982 , 1983", "277", "\u201311", "4"], ["Nick Faldo", "England", "1987", "281", "\u20137", "T11"], ["Jack Nicklaus", "United States", "1966 , 1970 , 1978", "286", "\u20132", "T30"], ["Lee Trevino", "United States", "1971 , 1972", "288", "E", "T42"], ["Sandy Lyle", "Scotland", "1985", "289", "+1", "T46"], ["Johnny Miller", "United States", "1976", "290", "+2", "T49"], ["Seve Ballesteros", "Spain", "1979 , 1984 , 1988", "299", "+11", "T77"], ["Tiger Woods", "United States", "1997 , 2001 , 2002 , 2005 , 2019", "270", "-18", "1"], ["Phil Mickelson", "United States", "2004 , 2006", "280", "-8", "T6"], ["Ernie Els", "South Africa", "1994 , 1997", "282", "-6", "T7"], ["Jordan Spieth", "United States", "2015", "270", "-18", "1"], ["Rory McIlroy", "Northern Ireland", "2011, 2014", "276", "-12", "1"], ["Ben Hogan", "United States", "1948 , 1950 , 1951 , 1953", "274", "-14", "1"], ["Arnold Palmer", "United States", "1958 , 1960 , 1962 , 1964", "276", "-12", "1"], ["Gary Player", "South Africa", "1961 , 1974 , 1978", "277", "-11", "1"], ["Fred Couples", "United States", "1992", "275", "-13", "1"], ["Zach Johnson", "United States", "2007", "289", "+1", "1"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Player", "Country", "Year(s) won", "Total", "To par", "Finish"], "add_description": "The name of this table is Golf Tournament Winners, and the headers of this table are Player,Country,Year(s) won,Total,To par,Finish.", "source": "wikisql", "answer_md5": "[('399354464fecdd1d5def730f488dd4de',)]"} +{"description": "Change the February record of Game 62 to 30 in the record database.", "label": ["UPDATE `Game Records` SET February='30' WHERE Game='62'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Game Records", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "February", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["52", "1", "@ Hartford Whalers", "3 - 1", "23-25-4"], ["53", "5", "@ St. Louis Blues", "4 - 3", "23-26-4"], ["54", "8", "@ Boston Bruins", "3 - 2", "24-26-4"], ["55", "12", "Vancouver Canucks", "5 - 2", "25-26-4"], ["56", "14", "@ Detroit Red Wings", "7 - 5", "26-26-4"], ["57", "16", "Detroit Red Wings", "3 - 1", "27-26-4"], ["58", "20", "St. Louis Blues", "3 - 2", "28-26-4"], ["59", "24", "Minnesota North Stars", "5 - 1", "29-26-4"], ["60", "25", "@ Toronto Maple Leafs", "7 - 3", "29-27-4"], ["61", "27", "Pittsburgh Penguins", "8 - 3", "30-27-4"], ["62", "3", "@ Pittsburgh Penguins", "2 - 1", "31-27-4"], ["63", "6", "New York Rangers", "4 - 2", "32-27-4"], ["64", "9", "@ Montreal Canadiens", "5 - 3", "33-27-4"], ["65", "11", "Toronto Maple Leafs", "3 - 2", "34-27-4"], ["66", "15", "Washington Capitals", "4 - 1", "35-27-4"], ["67", "17", "@ Buffalo Sabres", "2 - 0", "35-28-4"], ["68", "22", "Calgary Flames", "6 - 3", "36-28-4"], ["69", "26", "@ Chicago Blackhawks", "4 - 2", "36-29-4"], ["70", "29", "Los Angeles Kings", "3 - 1", "37-29-4"], ["71", "31", "@ Edmonton Oilers", "5 - 4", "37-30-4"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Game", "February", "Opponent", "Score", "Record"], "add_description": "The name of this table is Game Records, and the headers of this table are Game,February,Opponent,Score,Record.", "source": "wikisql", "answer_md5": "[('564d9c1b2ad1948b6a7fb8a693f12bcf',)]"} +{"description": "Update the Game Record table to set the values of Played to 5, Drawn to 1, Lost to 4, and Percentage to 20.00% where the First game column equals 2009.", "label": ["UPDATE `Game Record` SET Played = '5', Drawn = '1', Lost = '4', Percentage = '20.00%' WHERE `First game` = '2009'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Game Record", "table_info": {"columns": [{"name": "First game", "type": "TEXT"}, {"name": "Played", "type": "TEXT"}, {"name": "Drawn", "type": "TEXT"}, {"name": "Lost", "type": "TEXT"}, {"name": "Percentage", "type": "TEXT"}], "rows": [["2006", "2", "0", "1", "50.00%"], ["2007", "2", "0", "2", "0.00%"], ["2011", "1", "0", "0", "100.00%"], ["2007", "1", "0", "0", "100.00%"], ["2006", "2", "0", "0", "100.00%"], ["2005", "9", "0", "3", "66.67%"], ["2008", "3", "1", "1", "50.00%"], ["2009", "5", "2", "2", "60.00%"], ["2012", "4", "1", "2", "35.71%"], ["2014", "1", "0", "1", "0.00%"], ["2009", "2", "1", "0", "100.00%"], ["2013", "3", "2", "0", "100.00%"], ["2010", "4", "0", "2", "50.00%"], ["2011", "2", "1", "0", "100.00%"], ["2015", "3", "1", "1", "50.00%"], ["2016", "1", "0", "0", "100.00%"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["First game", "Played", "Drawn", "Lost", "Percentage"], "add_description": "The name of this table is Game Record, and the headers of this table are First game,Played,Drawn,Lost,Percentage.", "source": "wikisql", "answer_md5": "[('cf43a8f1d327e7d441900f1ffc3269b7',)]"} +{"description": "Change the length of the Moosehead Grand Prix race schedule to 4 hours.", "label": ["UPDATE `Race Schedule` SET Length = '4 Hours' WHERE Race = 'Moosehead Grand Prix'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Race Schedule", "table_info": {"columns": [{"name": "Race", "type": "TEXT"}, {"name": "Length", "type": "TEXT"}, {"name": "Class", "type": "TEXT"}, {"name": "Circuit", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["Rolex 24 at Daytona", "24 Hours", "All", "Daytona International Speedway", "February 4 February 5"], ["Exxon MasterCard 12 Hours of Sebring", "12 Hours", "All", "Sebring International Raceway", "March 18"], ["Rain-X/ Motorola Grand Prix of Atlanta", "3 Hours", "All", "Road Atlanta", "April 30"], ["Moosehead Grand Prix", "3 Hours", "All", "Halifax Circuit", "May 21"], ["The Dodge Dealers Grand Prix of Lime Rock", "1 Hour", "GTS", "Lime Rock Park", "May 29"], ["The Dodge Dealers Grand Prix of Lime Rock", "1 Hour 45 Minutes", "WSC", "Lime Rock Park", "May 29"], ["The Glen Continental", "3 Hours", "All", "Watkins Glen International", "June 24"], ["Apple Computer Inc. California Grand Prix", "1 Hour", "GTS-2", "Sears Point Raceway", "July 16"], ["Apple Computer Inc. California Grand Prix", "1 Hour 45 Minutes", "WSC/GTS-1", "Sears Point Raceway", "July 16"], ["Chrysler Mosport 500", "3 Hours", "All", "Mosport International Raceway", "August 13"], ["Seitel Texas World Grand Prix", "3 Hours", "All", "Texas World Speedway", "September 10"], ["Exxon World Sports Car Championships", "1 Hour", "GTS-2", "Phoenix International Raceway", "September 30"], ["Exxon World Sports Car Championships", "2 Hours", "WSC/GTS-1", "Phoenix International Raceway", "September 30"], ["Acxiom Grand Prix du Mardi Gras", "1 Hour", "GTS-2", "New Orleans street course", "October 8"], ["Acxiom Grand Prix du Mardi Gras", "1 Hour 45 Minutes", "WSC/GTS-1", "New Orleans street course", "October 8"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Race", "Length", "Class", "Circuit", "Date"], "add_description": "The name of this table is Race Schedule, and the headers of this table are Race,Length,Class,Circuit,Date.", "source": "wikisql", "answer_md5": "[('6b681b866a900731f4b467ba3f4e769c',)]"} +{"description": "Change the value of Points to '16' in the football_stats table for the player named 'Johnson'.", "label": ["UPDATE football_stats SET Points = '16' WHERE Player = 'Johnson'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "football_stats", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Starter", "type": "TEXT"}, {"name": "Touchdowns", "type": "TEXT"}, {"name": "Extra points", "type": "TEXT"}, {"name": "Field goals", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["Curtis", "Left tackle", "Yes", "6", "19", "0", "49"], ["Norcross", "Quarterback", "Yes", "5", "0", "0", "25"], ["Clark", "Fullback", "Yes", "3", "0", "0", "15"], ["Magoffin", "Right halfback", "Yes", "2", "1", "0", "11"], ["Graham", "Right tackle", "Yes", "1", "0", "0", "5"], ["Patrick", "Right tackle", "No", "1", "0", "0", "5"], ["H. Hammond", "Right end", "Yes", "1", "0", "0", "5"], ["Schulte", "Left guard", "Yes", "1", "0", "0", "5"], ["Carter", "Right guard", "Yes", "1", "0", "0", "5"], ["Becker", "Quarterback", "No", "1", "0", "0", "5"], ["Smith", "Center", "Yes", "0", "0", "0", "0"], ["Johnson", "Left tackle", "No", "0", "0", "0", "0"], ["Williams", "Right end", "Yes", "1", "0", "0", "5"], ["Brown", "Left guard", "Yes", "2", "0", "0", "10"], ["Jones", "Right tackle", "No", "0", "0", "0", "0"], ["Garcia", "Right halfback", "Yes", "3", "2", "0", "20"], ["Smith", "Quarterback", "Yes", "4", "1", "0", "27"], ["Davis", "Fullback", "No", "0", "0", "0", "0"], ["Wilson", "Right guard", "Yes", "1", "0", "0", "5"], ["Anderson", "Left tackle", "No", "0", "0", "0", "0"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Player", "Position", "Starter", "Touchdowns", "Extra points", "Field goals", "Points"], "add_description": "The name of this table is football_stats, and the headers of this table are Player,Position,Starter,Touchdowns,Extra points,Field goals,Points.", "source": "wikisql", "answer_md5": "[('b2b33cba2d11b8d9320695fa1d9828a6',)]"} +{"description": "Anthony Davis's height is updated to 2.11 and he now plays for the Milwaukee Bucks in the Basketball Players database.", "label": ["UPDATE `Basketball Players` SET `Height`='2.11', `Current Club`='Milwaukee Bucks' WHERE `Player`='Anthony Davis'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Basketball Players", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Height", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Year born", "type": "TEXT"}, {"name": "Current Club", "type": "TEXT"}], "rows": [["Roko-Leni Uki\u0107", "1.95", "Guard", "1984", "Lottomatica Roma"], ["Davor Kus", "1.91", "Guard", "1978", "Unicaja"], ["Marko Popovi\u0107", "1.85", "Guard", "1982", "Zalgiris Kaunas"], ["Marin Rozi\u0107", "2.03", "Forward", "1983", "Cibona Zagreb"], ["Nikola Prka\u010din", "2.08", "Forward", "1975", "Dynamo Moscow"], ["Marko Tomas", "1.96", "Guard", "1985", "Alta Gesti\u00f3n Fuenlabrada"], ["Zoran Planini\u0107", "1.97", "Guard", "1982", "TAU Cer\u00e1mica"], ["Mario Stoji\u0107", "1.98", "Guard", "1980", "ViveMenorca"], ["Damir Markota", "2.09", "Forward", "1985", "Spartak Saint Petersburg"], ["Marko Bani\u0107", "2.00", "Forward", "1984", "Iurbentia Bilbao"], ["Mario Kasun", "2.15", "Center", "1980", "AXA FC Barcelona"], ["Stanko Bara\u0107", "2.17", "Center", "1986", "TAU Cer\u00e1mica"], ["Lebron James", "2.03", "Forward", "1984", "Los Angeles Lakers"], ["Stephen Curry", "1.91", "Guard", "1988", "Golden State Warriors"], ["Karl-Anthony Towns", "2.13", "Center", "1995", "Minnesota Timberwolves"], ["Kevin Durant", "2.11", "Forward", "1988", "Brooklyn Nets"], ["Kyrie Irving", "1.88", "Guard", "1992", "Brooklyn Nets"], ["Anthony Davis", "2.08", "Forward", "1993", "Los Angeles Lakers"], ["Giannis Antetokounmpo", "2.11", "Forward", "1994", "Milwaukee Bucks"], ["Damian Lillard", "1.88", "Guard", "1990", "Portland Trail Blazers"], ["Joel Embiid", "2.13", "Center", "1994", "Philadelphia 76ers"], ["Luka Don\u010di\u0107", "2.01", "Guard", "1999", "Dallas Mavericks"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Player", "Height", "Position", "Year born", "Current Club"], "add_description": "The name of this table is Basketball Players, and the headers of this table are Player,Height,Position,Year born,Current Club.", "source": "wikisql", "answer_md5": "[('c282bbfcec134537750ac960060b425f',)]"} +{"description": "Update the 'Last series win in NBA Playoffs' to '2020 NBA Finals', set 'Losing streak' to '0', and clear 'Series losses - teams' fields for the 'Toronto Raptors' in the 'NBA Playoff History' table.", "label": ["UPDATE `NBA Playoff History` SET `Last series win in NBA Playoffs`='2020 NBA Finals', `Losing streak`='0', `Series losses - teams`='' WHERE `Team`='Toronto Raptors'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "NBA Playoff History", "table_info": {"columns": [{"name": "Seasons since win", "type": "INTEGER"}, {"name": "Team", "type": "TEXT"}, {"name": "Last series win in NBA Playoffs", "type": "TEXT"}, {"name": "Losing streak", "type": "TEXT"}, {"name": "Series losses - teams", "type": "TEXT"}], "rows": [["15", "Charlotte Hornets", "2002 Eastern First Round", "4 \u2666", "2002 New Jersey Nets 2010 Orlando 2014 Miami 2016 Miami"], ["15", "Sacramento Kings", "2004 Western First Round", "3", "2004 Minnesota 2005 Seattle 2006 San Antonio"], ["15", "Minnesota Timberwolves", "2004 Western Semifinals", "2", "2004 Los Angeles Lakers 2018 Houston"], ["11", "Detroit Pistons", "2008 Eastern Semifinals", "4", "2008 Boston 2009 Cleveland 2016 Cleveland 2019 Milwaukee"], ["9", "Orlando Magic", "2010 Eastern Semifinals", "4", "2010 Boston 2011 Atlanta 2012 Indiana 2019 Toronto"], ["9", "Phoenix Suns", "2010 Western Semifinals", "1", "2010 Los Angeles Lakers"], ["8", "Dallas Mavericks", "2011 Finals", "4 \u2666", "2012 Oklahoma City 2014 San Antonio 2015 Houston 2016 Oklahoma City"], ["7", "Los Angeles Lakers", "2012 Western First Round", "2", "2012 Oklahoma City 2013 San Antonio"], ["6", "New York Knicks", "2013 Eastern First Round", "1", "2013 Indiana"], ["5", "Brooklyn Nets", "2014 Eastern First Round", "3", "2014 Miami 2015 Atlanta 2019 Philadelphia"], ["5", "Indiana Pacers", "2014 Eastern Semifinals", "5", "2014 Miami 2016 Toronto 2017 Cleveland 2018 Cleveland 2019 Boston"], ["4", "Chicago Bulls", "2015 Eastern First Round", "2", "2015 Cleveland 2017 Boston"], ["4", "Memphis Grizzlies", "2015 Western First Round", "2", "2015 Golden State 2016 San Antonio Spurs 2017 San Antonio Spurs"], ["4", "Los Angeles Clippers", "2015 Western First Round", "4 \u00a7", "2015 Houston 2016 Portland 2017 Utah 2019 Golden State"], ["3", "Atlanta Hawks", "2016 Eastern First Round", "2", "2016 Cleveland 2017 Washington"], ["3", "Miami Heat", "2016 Eastern First Round", "2", "2016 Toronto 2018 Philadelphia"], ["3", "Oklahoma City Thunder", "2016 Western Semifinals", "4 \u2666", "2016 Golden State 2017 Houston 2018 Utah 2019 Portland"], ["2", "Washington Wizards", "2017 Eastern First Round", "2", "2017 Boston 2018 Toronto"], ["2", "San Antonio Spurs", "2017 Western Semifinals", "3", "2017 Golden State 2018 Golden State 2019 Denver"], ["1", "New Orleans Pelicans", "2018 Western First Round", "1", "2018 Golden State"], ["10", "Houston Rockets", "1997 Western Conference Finals", "7", "1997 Utah 1998 Utah 2004 Los Angeles Lakers 2009 Los Angeles Lakers 2012 Oklahoma City 2013 Oklahoma City 2017 San Antonio"], ["12", "Portland Trail Blazers", "2000 Western Conference Finals", "3", "2000 Los Angeles Lakers 2016 Golden State 2019 Golden State"], ["14", "Cleveland Cavaliers", "2010 Eastern Conference Semifinals", "2", "2010 Boston 2017 Golden State"], ["13", "Milwaukee Bucks", "2001 Eastern Conference Finals", "3", "2001 Philadelphia 2019 Toronto 2020 Miami"], ["16", "Toronto Raptors", "2019 NBA Finals", "4 \u2666", "2020 Boston 2020 Miami 2021 Brooklyn 2022 Philadelphia"], ["18", "Golden State Warriors", "2015 NBA Finals", "4 \u2666", "2016 Cleveland 2019 Toronto 2019 Los Angeles Clippers 2020 Los Angeles Lakers"], ["20", "Boston Celtics", "2008 NBA Finals", "4 \u2666", "2010 Los Angeles Lakers 2017 Cleveland 2018 Cleveland 2019 Milwaukee"], ["21", "Utah Jazz", "1998 Western Conference Finals", "6", "1998 Chicago 2007 Golden State 2010 Los Angeles Lakers 2017 Golden State 2018 Houston 2019 Houston"], ["22", "New Jersey Nets", "2003 NBA Finals", "2", "2003 San Antonio 2004 Detroit"], ["23", "Philadelphia 76ers", "1983 NBA Finals", "4 \u2666", "2001 Los Angeles Lakers 2002 Boston 2018 Boston 2019 Toronto"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Seasons since win", "Team", "Last series win in NBA Playoffs", "Losing streak", "Series losses - teams"], "add_description": "The name of this table is NBA Playoff History, and the headers of this table are Seasons since win,Team,Last series win in NBA Playoffs,Losing streak,Series losses - teams.", "source": "hybridqa", "answer_md5": "[('813ca44e6cadbb77bccb38fc385bca8a',)]"} +{"description": "The judges and assistants for the talent show's 'Groups' category have been updated to include Simon Cowell as both a judge and assistant. The update was made to the talent_show_judges table.", "label": ["UPDATE talent_show_judges SET Judge='Cowell', Assistants='Simon Cowell' WHERE Category='Groups'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "talent_show_judges", "table_info": {"columns": [{"name": "Judge", "type": "TEXT"}, {"name": "Category", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Assistants", "type": "TEXT"}, {"name": "Contestants eliminated", "type": "TEXT"}], "rows": [["Cowell", "Girls", "Malibu", "Mel B and Emma Bunton", "Soheila Clifford, Olivia Garcia, Kayleigh Marie Morgan, Caitlyn Vanbeck"], ["Osbourne", "Over 25s", "Los Angeles", "Robbie Williams", "Samantha Atkinson, Janet Grogan, Christopher Peyton, James Wilson"], ["Scherzinger", "Boys", "Nice", "Calvin Harris", "Christian Burrows, James Hughes, Niall Sexton, Nate Simpson"], ["Walsh", "Groups", "Ibiza", "Fleur East and Alesha Dixon", "Four of Diamonds, Skarl3t, Tom and Laura, Yes Lad"], ["Cowell", "Overs", "London", "Cheryl Cole and Louis Walsh", "Tom Bleasby, Chloe Paige, Max Stone, Anton Stephans"], ["Osbourne", "Girls", "Manchester", "Sharon Stone", "Louisa Johnson, Kiera Weathers, Monica Michael, Lauren Murray"], ["Scherzinger", "Groups", "Rio de Janeiro", "John Legend", "4th Impact, The Brooks, Only the Young, Alien Uncovered"], ["Walsh", "Boys", "Dublin", "Ronan Keating", "Jack Walton, Ben Haenow, Paul Akister, Andrea Faustini"], ["Cowell", "Over 25s", "New York", "Adam Lambert", "Honey G, Saara Alto, Relley C, Freddy Parker"], ["Osbourne", "Groups", "Sydney", "Iggy Azalea", "5 After Midnight, Four of Diamonds, The Cutkelvins, Rak-Su"], ["Scherzinger", "Boys", "Bali", "Bruno Mars", "Lloyd Macey, Spencer Sutherland, Matt Linnen, Tracy Leanne Jefford"], ["Walsh", "Girls", "Edinburgh", "Dannii Minogue", "Emily Middlemas, Caitlyn Vanbeck, Gifty Louise, Talia Dean"], ["Cowell", "Boys", "Paris", "Miley Cyrus", "Sam Black, Jack & Joel, Lloyd Macey, Leon Mallett"], ["Osbourne", "Over 25s", "Toronto", "Adele", "Ella Henderson, Saara Aalto, Holly Tandy, Kevin Davy White"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Judge", "Category", "Location", "Assistants", "Contestants eliminated"], "add_description": "The name of this table is talent_show_judges, and the headers of this table are Judge,Category,Location,Assistants,Contestants eliminated.", "source": "fetaqa", "answer_md5": "[('39fc95462719ce9ac0d1855cc75376a9',)]"} +{"description": "France's T Score is now 7.500, A Score is now 7.600, E Score is now 7.200, Pen. is 0.40 and Total is 22.700 in the Nation Scores Table.", "label": ["UPDATE `Nation Scores Table` SET `T Score` = '7.500', `A Score` = '7.600', `E Score` = '7.200', `Pen.` = '0.40', `Total` = '22.700' WHERE `Nation` = 'France';"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Nation Scores Table", "table_info": {"columns": [{"name": "Nation", "type": "TEXT"}, {"name": "T Score", "type": "TEXT"}, {"name": "A Score", "type": "TEXT"}, {"name": "E Score", "type": "TEXT"}, {"name": "Pen.", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}], "rows": [["Ukraine", "8.000", "8.050", "7.775", "0.50", "23.325"], ["Russia", "8.000", "8.050", "7.500", "0.60", "22.950"], ["Greece", "7.700", "7.850", "7.600", "0.50", "22.650"], ["Bulgaria", "7.300", "7.800", "7.600", "0.50", "22.200"], ["Italy", "7.300", "7.650", "7.200", "0.50", "21.650"], ["Belarus", "6.800", "7.700", "7.000", "0.50", "21.000"], ["Spain", "5.700", "7.400", "7.100", "0.50", "19.700"], ["China", "6.300", "6.800", "6.450", "0.50", "19.050"], ["Japan", "7.600", "7.800", "7.500", "0.50", "23.450"], ["France", "7.900", "8.050", "7.300", "0.50", "23.250"], ["Brazil", "7.200", "7.100", "7.500", "0.50", "22.300"], ["India", "6.500", "6.700", "7.000", "0.50", "20.200"], ["Mexico", "7.000", "7.200", "6.900", "0.50", "21.100"], ["Nigeria", "6.800", "6.750", "6.900", "0.50", "20.450"], ["Thailand", "6.900", "6.800", "6.800", "0.50", "20.450"], ["Germany", "8.100", "8.150", "7.950", "0.50", "24.200"], ["South Africa", "6.800", "6.550", "6.400", "0.50", "20.150"], ["Canada", "7.300", "7.400", "7.100", "0.50", "22.800"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Nation", "T Score", "A Score", "E Score", "Pen.", "Total"], "add_description": "The name of this table is Nation Scores Table, and the headers of this table are Nation,T Score,A Score,E Score,Pen.,Total.", "source": "wikisql", "answer_md5": "[('645a637d1f8eee7f52f486aa7793e1b4',)]"} +{"description": "Modify the name in draft_picks table from 'John Smith' to 'Johnny Smith'.", "label": ["UPDATE draft_picks SET Name = 'Johnny Smith' WHERE Name = 'John Smith'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "draft_picks", "table_info": {"columns": [{"name": "Round", "type": "TEXT"}, {"name": "Pick #", "type": "TEXT"}, {"name": "Overall", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "College", "type": "TEXT"}], "rows": [["1", "24", "24", "Peria Jerry", "Defensive Tackle", "Mississippi"], ["2", "23", "55", "William Moore", "Safety", "Missouri"], ["3", "26", "90", "Christopher Owens", "Cornerback", "San Jos\u00e9 State"], ["4", "25", "125", "Lawrence Sidbury", "Defensive End", "Richmond"], ["5", "2", "138", "William Middleton", "Cornerback", "Furman"], ["5", "20", "156", "Garrett Reynolds", "Offensive Tackle", "North Carolina"], ["6", "3", "176", "Spencer Adkins", "Linebacker", "Miami (FL)"], ["7", "1", "210", "Vance Walker", "Defensive Tackle", "Georgia Tech"], ["1", "1", "1", "John Smith", "Quarterback", "Alabama"], ["1", "12", "12", "Jane Doe", "Defensive End", "LSU"], ["2", "4", "36", "Billy Brown", "Linebacker", "Ohio State"], ["2", "32", "64", "Samantha Green", "Safety", "Florida State"], ["3", "8", "72", "Jimmy Johnson", "Offensive Tackle", "Clemson"], ["3", "17", "81", "Tom Thompson", "Wide Receiver", "Oklahoma State"], ["4", "6", "96", "Rachel Ramirez", "Cornerback", "Michigan"], ["4", "27", "117", "Roberto Rodriguez", "Defensive Tackle", "Texas A&M"], ["5", "5", "134", "Frankie Flores", "Running Back", "Penn State"], ["5", "21", "159", "Juan Hernandez", "Offensive Guard", "UCF"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Round", "Pick #", "Overall", "Name", "Position", "College"], "add_description": "The name of this table is draft_picks, and the headers of this table are Round,Pick #,Overall,Name,Position,College.", "source": "wikisql", "answer_md5": "[('c2fd8419f8eb359833e57f5e2e55ac6a',)]"} +{"description": "Update the FS value to 11 for the competitor with rank 24 in the Figure Skating Competitors table.", "label": ["UPDATE `Figure Skating Competitors` SET `FS` = '11' WHERE `Rank` = '24'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Figure Skating Competitors", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Name", "type": "TEXT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Total Points", "type": "FLOAT"}, {"name": "SP", "type": "INT"}, {"name": "FS", "type": "INT"}], "rows": [["1", "Kevin van der Perren", "Belgium", "220.17", "1", "1"], ["2", "Samuel Contesti", "Italy", "207.67", "2", "2"], ["3", "Javier Fernandez", "Spain", "190.69", "3", "5"], ["4", "Ivan Tretiakov", "Russia", "185.86", "9", "3"], ["5", "Kensuke Nakaniwa", "Japan", "185.42", "4", "4"], ["6", "Martin Liebers", "Germany", "178.14", "7", "6"], ["7", "Philipp Tischendorf", "Germany", "173.17", "8", "8"], ["8", "Mark Vaillant", "France", "167.17", "13", "7"], ["9", "Gregor Urbas", "Slovenia", "164.11", "6", "9"], ["10", "Ari-Pekka Nurmenkari", "Finland", "161.68", "5", "10"], ["11", "Maxim Shipov", "Israel", "152.91", "11", "12"], ["12", "Abzal Rakimgaliev", "Azerbaijan", "152.70", "10", "14"], ["13", "Clemens Brummer", "Germany", "151.17", "12", "11"], ["14", "Fabio Mascarello", "Italy", "144.58", "14", "15"], ["15", "Michael Biondi", "Germany", "142.58", "16", "13"], ["16", "Stefan Lindemann", "Germany", "134.40", "15", "16"], ["17", "Boyito Mulder", "Netherlands", "119.81", "19", "17"], ["18", "Luka \u010cade\u017e", "Slovenia", "106.30", "20", "18"], ["19", "Georgi Kenchadze", "Bulgaria", "105.15", "18", "19"], ["WD", "Franz Streubel", "Germany", "44.27", "17", ""], ["20", "John Smith", "USA", "180.50", "6", "5"], ["21", "Sophie Chen", "Canada", "170.25", "4", "8"], ["22", "Mario Rossi", "Italy", "165.75", "10", "3"], ["23", "Pavel Petrov", "Russia", "158.90", "9", "11"], ["24", "Chen Li", "China", "156.20", "12", "9"], ["25", "Luis Hernandez", "Mexico", "152.45", "7", "14"], ["26", "Hiroshi Tanaka", "Japan", "147.60", "13", "7"], ["27", "Anna Svensson", "Sweden", "143.30", "5", "16"], ["28", "Julia Petrova", "Russia", "140.05", "11", "12"], ["29", "Marta Garcia", "Spain", "135.90", "14", "2"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Name", "Nation", "Total Points", "SP", "FS"], "add_description": "The name of this table is Figure Skating Competitors, and the headers of this table are Rank,Name,Nation,Total Points,SP,FS.", "source": "hybridqa", "answer_md5": "[('6fdbb3a9fa82e959841434090fc6ef5a',)]"} +{"description": "Change the venue of athlete's results to Eugene, United States for the 100 m hurdles event in the USA Outdoor Championships held in 2006.", "label": ["UPDATE `Athlete Results` SET `Venue`='Eugene, United States' WHERE `Year`='2006' AND `Competition`='USA Outdoor Championships' AND `Event`='100 m hurdles'"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Athlete Results", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}], "rows": [["1997", "World Indoor Championships", "Paris, France", "5th", "60 m hurdles"], ["1997", "USA Outdoor Championships", "Indianapolis, United States", "1st", "100 m hurdles"], ["1998", "Grand Prix Final", "Moscow, Russia", "2nd", "100 m hurdles"], ["1998", "USA Indoor Championships", "nan", "1st", "60 m hurdles"], ["1999", "World Indoor Championships", "Maebashi, Japan", "6th", "60 m hurdles"], ["2000", "Olympic Games", "Sydney, Australia", "3rd", "100 m hurdles"], ["2000", "Grand Prix Final", "Doha, Qatar", "4th", "100 m hurdles"], ["2002", "Grand Prix Final", "Paris, France", "7th", "100 m hurdles"], ["2002", "USA Indoor Championships", "nan", "1st", "60 m hurdles"], ["2003", "World Indoor Championships", "Birmingham, England", "3rd", "60 m hurdles"], ["2003", "World Athletics Final", "Monaco", "6th", "100 m hurdles"], ["2004", "Olympic Games", "Athens, Greece", "3rd", "100 m hurdles"], ["2005", "World Championships", "Helsinki, Finland", "4th", "100 m hurdles"], ["2006", "USA Outdoor Championships", "Indianapolis, United States", "2nd", "100 m hurdles"], ["2007", "World Championships", "Osaka, Japan", "5th", "100 m hurdles"], ["2008", "Olympic Games", "Beijing, China", "1st", "100 m hurdles"], ["2009", "World Championships", "Berlin, Germany", "Gold", "100 m hurdles"], ["2010", "USA Indoor Championships", "nan", "1st", "60 m hurdles"], ["2011", "World Championships", "Daegu, South Korea", "4th", "100 m hurdles"], ["2012", "Olympic Games", "London, United Kingdom", "Gold", "100 m hurdles"], ["2013", "World Championships", "Moscow, Russia", "Silver", "100 m hurdles"], ["2014", "USA Outdoor Championships", "Sacramento, United States", "3rd", "100 m hurdles"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Competition", "Venue", "Position", "Event"], "add_description": "The name of this table is Athlete Results, and the headers of this table are Year,Competition,Venue,Position,Event.", "source": "sqa", "answer_md5": "[('5fa60bcd273b6348911aba7fee2e01e4',)]"} +{"description": "Change Lawrence Peckham's position to 2nd place in the high jump event at the 1984 Olympic Games.", "label": ["UPDATE Lawrence_Peckham_0 SET Position='2nd' WHERE Year='1984' AND Competition='Olympic Games' AND Event='High jump'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Lawrence_Peckham_0", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}], "rows": [["1962", "British Empire and Commonwealth Games", "Perth , Australia", "6th", "High jump"], ["1964", "Olympic Games", "Tokyo , Japan", "10th", "High jump"], ["1966", "British Empire and Commonwealth Games", "Kingston , Jamaica", "1st", "High jump"], ["1968", "Olympic Games", "Mexico City , Mexico", "8th", "High jump"], ["1969", "Pacific Conference Games", "Tokyo , Japan", "1st", "High jump"], ["1970", "Commonwealth Games", "Edinburgh , Scotland", "1st", "High jump"], ["1972", "Olympic Games", "Munich , West Germany", "18th", "High jump"], ["1973", "Pacific Conference Games", "Toronto , Canada", "3rd", "High jump"], ["1974", "British Commonwealth Games", "Christchurch , New Zealand", "2nd", "High jump"], ["1975", "Pan American Games", "Mexico City , Mexico", "4th", "High jump"], ["1976", "Olympic Games", "Montreal , Canada", "12th", "High jump"], ["1977", "Persian Gulf Track and Field Championships", "Tehran , Iran", "1st", "High jump"], ["1978", "Commonwealth Games", "Edmonton , Canada", "5th", "High jump"], ["1980", "Olympic Games", "Moscow , USSR", "22nd", "High jump"], ["1981", "World Cup", "Rome , Italy", "3rd", "High jump"], ["1983", "Pan American Games", "Caracas , Venezuela", "1st", "High jump"], ["1984", "Olympic Games", "Los Angeles , USA", "4th", "High jump"], ["1985", "World Indoor Games", "Paris , France", "2nd", "High jump"], ["1986", "Commonwealth Games", "Edinburgh , Scotland", "3rd", "High jump"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Competition", "Venue", "Position", "Event"], "add_description": "The name of this table is Lawrence_Peckham_0, and the headers of this table are Year,Competition,Venue,Position,Event.", "source": "hybridqa", "answer_md5": "[('d51a079047ed3858c0c7e3b8f7bc8586',)]"} +{"description": "Update the record in the table 'Great Lakes Metropolitan Areas Population and Lakes' to set 'Lake(s)' to 'Lake Huron' where the value in column 'Rank' is equal to '29'.", "label": ["UPDATE `Great Lakes Metropolitan Areas Population and Lakes` SET `Lake(s)` = 'Lake Huron' WHERE `Rank` = '29'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Great Lakes Metropolitan Areas Population and Lakes", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Map Reference Number", "type": "TEXT"}, {"name": "Census Statistical Area", "type": "TEXT"}, {"name": "2007 Population", "type": "TEXT"}, {"name": "Lake(s)", "type": "TEXT"}], "rows": [["1", "16", "Chicago-Naperville-Michigan City, IL-", "9,745,165", "Lake Michigan"], ["2", "15", "Detroit-Warren-Flint, MI CSA", "5,405,918", "Lake Erie and Lake Huron"], ["3", "21", "Cleveland-Akron-Elyria, OH", "2,896,968", "Lake Erie"], ["4", "13", "Milwaukee-Racine-Waukesha, WI CSA", "1,739,497", "Lake Michigan"], ["5", "14", "Grand Rapids-Muskegon-Holland, MI", "1,323,095", "Lake Michigan"], ["6", "24", "Buffalo-Niagara-Cattaraugus, NY", "1,208,270", "Lake Erie and Lake Ontario"], ["7", "25", "Rochester-Batavia-Seneca Falls, NY", "1,122,845", "Lake Ontario"], ["8", "26", "Syracuse-Auburn, NY CSA", "725,359", "Lake Ontario"], ["9", "19", "Toledo-Fremont, OH CSA", "711,952", "Lake Erie"], ["10", "17", "Kalamazoo-Portage, MI MSA", "323,264", "Lake Michigan"], ["11", "12", "Saginaw-Bay City-Saginaw Township North", "309,785", "Lake Huron"], ["12", "9", "Green Bay, WI MSA", "301,131", "Lake Michigan"], ["13", "22", "Erie, PA MSA", "279,092", "Lake Erie"], ["14", "1", "Duluth, MN-WI MSA", "274,308", "Lake Superior"], ["15", "18", "Niles-Benton Harbor, MI MSA", "159,589", "Lake Michigan"], ["16", "7", "Traverse City, MI \u03bcSA", "142,075", "Lake Michigan"], ["17", "23", "Jamestown-Dunkirk-Fredonia, NY \u03bcSA", "133,945", "Lake Erie"], ["18", "27", "Watertown-Fort Drum, NY \u03bcSA", "117,201", "Lake Ontario"], ["19", "11", "Sheboygan, WI MSA", "114,504", "Lake Michigan"], ["20", "10", "Manitowoc, WI \u03bcSA", "80,928", "Lake Michigan"], ["21", "20", "Sandusky, OH MSA", "77,323", "Lake Erie"], ["22", "6", "Marinette, WI-MI \u03bcSA", "66,820", "Lake Michigan"], ["23", "3", "Marquette, MI \u03bcSA", "65,216", "Lake Superior"], ["24", "4", "Sault Ste. Marie, MI \u03bcSA", "38,922", "Lake Huron and Lake Superior"], ["25", "5", "Escanaba, MI \u03bcSA", "37,367", "Lake Michigan"], ["26", "2", "Houghton, MI \u03bcSA", "37,352", "Lake Superior"], ["27", "8", "Alpena, MI \u03bcSA", "29,707", "Lake Huron"], ["28", "28", "Ogdensburg-Massena, NY \u03bcSA", "25,507", "St. Lawrence River"], ["29", "30", "Potsdam, NY \u03bcSA", "18,787", "Raquette River"], ["30", "31", "Plattsburgh, NY \u03bcSA", "82,128", "Lake Champlain"], ["31", "29", "Malone, NY \u03bcSA", "51,876", "Salmon River"], ["32", "34", "Ottawa, IL Micropolitan Statistical Area", "40,903", "Fox River"], ["33", "33", "Mendota, IL Micropolitan Statistical Area", "11,930", "Lake Mendota"], ["34", "32", "LaSalle, IL Micropolitan Statistical Area", "48,367", "Illinois River"], ["35", "35", "Peru, IN Micropolitan Statistical Area", "37,912", "Wabash River"], ["36", "36", "Rochester, IN Micropolitan Statistical Area", "39,255", "Lake Manitou"], ["37", "37", "Sturgis, MI Micropolitan Statistical Area", "61,293", "Klinger Lake"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Map Reference Number", "Census Statistical Area", "2007 Population", "Lake(s)"], "add_description": "The name of this table is Great Lakes Metropolitan Areas Population and Lakes, and the headers of this table are Rank,Map Reference Number,Census Statistical Area,2007 Population,Lake(s).", "source": "wikisql", "answer_md5": "[('764ae09b4262d1e878e5a4294f198d8a',)]"} +{"description": "Set the coach to 'Bob Huggins' and the school to 'West Virginia' in the basketball_coaches table for the year 2022-23.", "label": ["UPDATE basketball_coaches SET Coach = 'Bob Huggins', School = 'West Virginia' WHERE Year = '2022-23'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "basketball_coaches", "table_info": {"columns": [{"name": "Year", "type": "text"}, {"name": "Coach", "type": "text"}, {"name": "School", "type": "text"}, {"name": "Record", "type": "text"}], "rows": [["2007-08", "Mike Brey", "Notre Dame", "25-8"], ["2008-09", "Ed Conroy", "The Citadel", "20-13"], ["2009-10", "Bob Marlin", "Sam Houston State", "25-8"], ["2010-11", "Chris Mack", "Xavier", "24-8"], ["2011-12", "Jimmy Patsos", "Loyola ( MD )", "24-9"], ["2012-13", "Joe Mihalich", "Niagara", "19-14"], ["2013-14", "Brian Wardle", "Green Bay", "24-7"], ["2014-15", "Keno Davis", "Central Michigan", "23-9"], ["2015-16", "Zach Spiker", "Army", "19-14"], ["2016-17", "Danny Manning", "Wake Forest", "19-14"], ["2017-18", "Casey Alexander", "Lipscomb", "23-10"], ["2018-19", "Robert Jones", "Norfolk State", "22-14"], ["2019-20", "Mark Pope", "BYU", "24-8"], ["2020-21", "Scott Drew", "Baylor", "28-2"], ["2021-22", "Juwan Howard", "Michigan", "21-4"], ["2022-23", "Eric Musselman", "Arkansas", "22-5"], ["2023-24", "Ben Howland", "Mississippi State", "20-7"], ["2024-25", "Anthony Grant", "Dayton", "23-6"], ["2025-26", "Chris Holtmann", "Ohio State", "25-4"], ["2026-27", "Mick Cronin", "UCLA", "23-7"], ["2027-28", "Steve Wojciechowski", "Marquette", "21-8"], ["2028-29", "Archie Miller", "Indiana", "19-9"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Coach", "School", "Record"], "add_description": "The name of this table is basketball_coaches, and the headers of this table are Year,Coach,School,Record.", "source": "hybridqa", "answer_md5": "[('a391727f5c975bda23b448b2d12bf2eb',)]"} +{"description": "Change the club of the player recruitment with pick number 21 to Geelong in the update statement.", "label": ["UPDATE player_recruitment SET Club='Geelong' WHERE Pick='21'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "player_recruitment", "table_info": {"columns": [{"name": "Round", "type": "INTEGER"}, {"name": "Pick", "type": "INTEGER"}, {"name": "Player", "type": "TEXT"}, {"name": "Recruited from", "type": "TEXT"}, {"name": "Club", "type": "TEXT"}], "rows": [["1", "1", "Luke Webster", "East Perth", "Fremantle"], ["1", "2", "Josh Dicketts", "Murray U18", "St Kilda"], ["1", "3", "Brent Tuckey", "Collingwood", "West Coast"], ["1", "4", "John Baird", "Box Hill Hawks", "Kangaroos"], ["1", "5", "Andrew Carrazzo", "Oakleigh U18", "Geelong"], ["1", "6", "Mark Jamar", "North Adelaide", "Melbourne"], ["1", "7", "Nick Greenwood", "Gippsland U18", "Western Bulldogs"], ["1", "8", "James Podsiadly", "Essendon ( VFL )", "Collingwood"], ["1", "9", "Paul Thomas", "Central District", "Adelaide"], ["1", "10", "Scott McGlone", "Bendigo U18", "Sydney"], ["1", "11", "Bret Thornton", "Oakleigh U18", "Carlton"], ["1", "12", "Jordan Barham", "Calder U18", "Port Adelaide"], ["1", "13", "Ben Kane", "Eastern U18", "Hawthorn"], ["1", "14", "Kristian De Pasquale", "Coburg Tigers", "Richmond"], ["1", "15", "Scott Howard", "Calder U18", "Essendon"], ["1", "16", "Darren Bradshaw", "Mount Gravatt", "Brisbane Lions"], ["2", "17", "Josh Head", "South Fremantle", "Fremantle"], ["2", "18", "Ben Schwarze", "Sandringham U18", "St Kilda"], ["2", "19", "Quinten Lynch", "West Perth", "West Coast"], ["2", "20", "Stuart Cooper", "Murray Kangaroos", "Kangaroos"], ["2", "21", "Jack Smith", "Subiaco", "Fremantle"], ["2", "22", "Isaac Jones", "Northern Blues", "St Kilda"], ["2", "23", "Adam Shepherd", "Peel Thunder", "West Coast"], ["2", "24", "Max Cooper", "Geelong U18", "Kangaroos"], ["2", "25", "Finn Davidson", "Bendigo Pioneers", "Geelong"], ["2", "26", "Jordan Kane", "Claremont", "Melbourne"], ["2", "27", "Ryan Smith", "Western U18", "Western Bulldogs"], ["2", "28", "Joshua Podsiadly", "Casey Demons", "Collingwood"], ["2", "29", "Sam Thomas", "Port Adelaide Magpies", "Adelaide"], ["2", "30", "Oliver McGlone", "Dandenong U18", "Sydney"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Round", "Pick", "Player", "Recruited from", "Club"], "add_description": "The name of this table is player_recruitment, and the headers of this table are Round,Pick,Player,Recruited from,Club.", "source": "hybridqa", "answer_md5": "[('8ac55be95a98d0f4022701abd87dec6e',)]"} +{"description": "Update the game statistics for game 9 by setting the high points to 'Dan Majerle (28)' and the high rebounds to 'Charles Barkley (15)'.", "label": ["UPDATE `Game Statistics` SET `High points`='Dan Majerle (28)', `High rebounds`='Charles Barkley (15)' WHERE Game=9"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Game Statistics", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "High points", "type": "TEXT"}, {"name": "High rebounds", "type": "TEXT"}, {"name": "High assists", "type": "TEXT"}, {"name": "Location Attendance", "type": "TEXT"}, {"name": "Series", "type": "TEXT"}], "rows": [["1", "May 8", "@ Houston", "W 91\u201387", "Charles Barkley (21)", "Charles Barkley (12)", "Kevin Johnson (12)", "The Summit 15,073", "1\u20130"], ["2", "May 11", "@ Houston", "W 124\u2013117 (OT)", "Charles Barkley (34)", "Charles Barkley (15)", "Charles Barkley , Kevin Johnson (6)", "The Summit 16,611", "2\u20130"], ["3", "May 13", "Houston", "L 102\u2013118", "Kevin Johnson (38)", "Charles Barkley (14)", "Kevin Johnson (12)", "America West Arena 19,023", "2\u20131"], ["4", "May 15", "Houston", "L 96\u2013107", "Kevin Johnson (38)", "Charles Barkley (14)", "Kevin Johnson (12)", "America West Arena 19,023", "2\u20132"], ["5", "May 17", "@ Houston", "L 86\u2013109", "Charles Barkley (30)", "Oliver Miller (7)", "Skeeter Henry , Oliver Miller (3)", "The Summit 16,611", "2\u20133"], ["6", "May 19", "Houston", "W 103\u201389", "Kevin Johnson (28)", "Charles Barkley (15)", "Kevin Johnson (13)", "America West Arena 19,023", "3\u20133"], ["1", "January 1", "@ New York", "W 100\u201390", "LeBron James (25)", "Kevin Love (10)", "Kyrie Irving (8)", "Madison Square Garden 18,200", "1\u20130"], ["2", "January 5", "Chicago", "W 115\u2013103", "LeBron James (30)", "Tristan Thompson (12)", "Kyrie Irving (11)", "Quicken Loans Arena 20,562", "2\u20130"], ["3", "January 8", "Miami", "L 94\u201398", "Kevin Love (25)", "Kevin Love (14)", "Kyrie Irving (9)", "American Airlines Arena 19,600", "2\u20131"], ["4", "January 12", "@ Boston", "W 109\u201399", "LeBron James (28)", "Anderson Varejao (10)", "Kyrie Irving (12)", "TD Garden 18,624", "3\u20131"], ["5", "January 16", "Oklahoma City", "L 102\u2013106", "LeBron James (33)", "Tristan Thompson (12)", "LeBron James (10)", "Quicken Loans Arena 20,562", "3\u20132"], ["6", "January 19", "@ Washington", "W 113\u2013107", "Kevin Love (28)", "Anderson Varejao (11)", "Kyrie Irving (8)", "Verizon Center 18,277", "4\u20132"], ["7", "January 22", "Houston", "W 122\u2013115 (OT)", "LeBron James (34)", "Kevin Love (12)", "Kyrie Irving (11)", "Quicken Loans Arena 20,562", "5\u20132"], ["8", "January 25", "@ Memphis", "L 91\u201398", "LeBron James (28)", "Anderson Varejao (11)", "Kyrie Irving (7)", "FedExForum 18,119", "5\u20133"], ["9", "January 29", "@ San Antonio", "L 102\u2013109", "LeBron James (35)", "Anderson Varejao (11)", "LeBron James , Kyrie Irving (6)", "AT&T Center 18,581", "5\u20134"], ["10", "February 1", "Toronto", "W 119\u2013110", "LeBron James (29)", "Kevin Love (11)", "Kyrie Irving (11)", "Quicken Loans Arena 20,562", "6\u20134"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Game", "Date", "Team", "Score", "High points", "High rebounds", "High assists", "Location Attendance", "Series"], "add_description": "The name of this table is Game Statistics, and the headers of this table are Game,Date,Team,Score,High points,High rebounds,High assists,Location Attendance,Series.", "source": "wikisql", "answer_md5": "[('fed8db6f22496e21f4b7220320369fe5',)]"} +{"description": "Set the ranking of WestJet to 5 in the Passenger Airline Rankings table.", "label": ["UPDATE `Passenger Airline Rankings` SET Ranking = '5' WHERE Airline = 'WestJet'"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Passenger Airline Rankings", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "City", "type": "TEXT"}, {"name": "Passengers", "type": "INTEGER"}, {"name": "Ranking", "type": "FLOAT"}, {"name": "Airline", "type": "TEXT"}], "rows": [["1", "United States, Los Angeles", "14,749", "nan", "Alaska Airlines"], ["2", "United States, Houston", "5,465", "nan", "United Express"], ["3", "Canada, Calgary", "3,761", "nan", "Air Transat, WestJet"], ["4", "Canada, Saskatoon", "2,282", "4.0", "nan"], ["5", "Canada, Vancouver", "2,103", "nan", "Air Transat"], ["6", "United States, Phoenix", "1,829", "1.0", "US Airways"], ["7", "Canada, Toronto", "1,202", "1.0", "Air Transat, CanJet"], ["8", "Canada, Edmonton", "110", "nan", "nan"], ["9", "United States, Oakland", "107", "nan", "nan"], ["10", "United States, Chicago", "9,876", "2.5", "American Airlines"], ["11", "Canada, Montreal", "6,543", "nan", "Air Canada"], ["12", "United States, Seattle", "4,321", "3.0", "Delta Air Lines"], ["13", "Canada, Winnipeg", "3,210", "nan", "WestJet"], ["14", "Canada, Ottawa", "2,345", "nan", "Porter Airlines"], ["15", "United States, New York", "1,234", "4.5", "JetBlue Airways"], ["16", "Canada, Halifax", "987", "nan", "Air Canada"], ["17", "United States, Denver", "876", "nan", "Frontier Airlines"], ["18", "Canada, Regina", "543", "nan", "nan"], ["19", "United States, Miami", "321", "2.0", "American Airlines"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "City", "Passengers", "Ranking", "Airline"], "add_description": "The name of this table is Passenger Airline Rankings, and the headers of this table are Rank,City,Passengers,Ranking,Airline.", "source": "sqa", "answer_md5": "[('fb3c22096cf8673c8c66dc2c8e3a8da9',)]"} +{"description": "The football season results for week 20 have been updated with a TV time of NBC 6:30pm and an attendance of 75,000.", "label": ["UPDATE `Football Season Results` SET `TV Time`='NBC 6:30pm', `Attendance`='75,000' WHERE `Week`='20'"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Football Season Results", "table_info": {"columns": [{"name": "Week", "type": "INT"}, {"name": "Date", "type": "DATE"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "TV Time", "type": "TEXT"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["1", "September 9, 2001", "at Philadelphia Eagles", "W 20\u201317 (OT)", "1\u20130", "FOX 3:15pm", "66,243"], ["2", "September 23, 2001", "at San Francisco 49ers", "W 30\u201326", "2\u20130", "FOX 3:15pm", "67,536"], ["3", "September 30, 2001", "Miami Dolphins", "W 42\u201310", "3\u20130", "CBS 12:00pm", "66,046"], ["4", "October 8, 2001", "at Detroit Lions", "W 35\u20130", "4\u20130", "ABC 8:00pm", "77,765"], ["5", "October 14, 2001", "New York Giants", "W 15\u201314", "5\u20130", "FOX 12:00pm", "65,992"], ["6", "October 21, 2001", "at New York Jets", "W 34\u201314", "6\u20130", "FOX 12:00pm", "78,766"], ["7", "October 28, 2001", "New Orleans Saints", "L 34\u201331", "6\u20131", "FOX 12:00pm", "66,189"], ["8", "Bye", "Bye", "Bye", "Bye", "Bye", "Bye"], ["9", "November 11, 2001", "Carolina Panthers", "W 48\u201314", "7\u20131", "FOX 12:00pm", "66,069"], ["10", "November 18, 2001", "at New England Patriots", "W 24\u201317", "8\u20131", "ESPN 7:30pm", "60,292"], ["11", "November 26, 2001", "Tampa Bay Buccaneers", "L 24\u201317", "8\u20132", "ABC 8:00pm", "66,198"], ["12", "December 2, 2001", "at Atlanta Falcons", "W 35\u20136", "9\u20132", "FOX 3:15pm", "60,787"], ["13", "December 9, 2001", "San Francisco 49ers", "W 27\u201314", "10\u20132", "FOX 12:00pm", "66,218"], ["14", "December 17, 2001", "at New Orleans Saints", "W 34\u201321", "11\u20132", "ABC 8:00pm", "70,332"], ["15", "December 23, 2001", "at Carolina Panthers", "W 38\u201332", "12\u20132", "FOX 12:00pm", "72,438"], ["16", "December 30, 2001", "Indianapolis Colts", "W 42\u201317", "13\u20132", "CBS 12:00pm", "66,084"], ["17", "January 6, 2002", "Atlanta Falcons", "W 31\u201313", "14\u20132", "FOX 3:15pm", "66,033"], ["18", "September 7, 2008", "Minnesota Vikings", "W 19\u201316 (OT)", "1\u20130", "FOX 12:00pm", "64,936"], ["19", "September 14, 2008", "at Detroit Lions", "W 48\u201325", "2\u20130", "FOX 12:00pm", "56,252"], ["20", "September 21, 2008", "Dallas Cowboys", "W 27\u201316", "3\u20130", "NBC 7:15pm", "65,598"], ["21", "September 28, 2008", "Tampa Bay Buccaneers", "W 30\u201321", "4\u20130", "FOX 12:00pm", "62,496"], ["22", "October 5, 2008", "at Washington Redskins", "W 23\u201317", "5\u20130", "FOX 3:15pm", "90,180"], ["23", "October 12, 2008", "at home against the Philadelphia Eagles", "W 48\u201327", "6\u20130", "FOX 12:00pm", "66,064"], ["24", "October 19, 2008", "at home against the Cincinnati Bengals", "W 29\u201313", "7\u20130", "CBS 12:00pm", "64,859"], ["25", "October 26, 2008", "at home against the Houston Texans", "W 35\u20136", "8\u20130", "CBS 12:00pm", "65,994"], ["26", "November 2, 2008", "at home against the Cleveland Browns", "W 37\u201327", "9\u20130", "CBS 12:00pm", "65,621"], ["27", "November 9, 2008", "at home against the Baltimore Ravens", "L 10\u201333", "9\u20131", "CBS 12:00pm", "65,873"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Week", "Date", "Opponent", "Result", "Record", "TV Time", "Attendance"], "add_description": "The name of this table is Football Season Results, and the headers of this table are Week,Date,Opponent,Result,Record,TV Time,Attendance.", "source": "wikitq", "answer_md5": "[('9594e06883bc49cca4376c0b368dc85b',)]"} +{"description": "Change the elevation of Mount Whitney to '14,494 ft 4,418.8 m' in the 'Mountain Peaks' table.", "label": ["UPDATE `Mountain Peaks` SET `Elevation`='14,494 ft 4,418.8 m' WHERE `Mountain Peak`='Mount Whitney'"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Mountain Peaks", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Mountain Peak", "type": "TEXT"}, {"name": "Mountain Range", "type": "TEXT"}, {"name": "Elevation", "type": "TEXT"}, {"name": "Prominence", "type": "TEXT"}, {"name": "Isolation", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}], "rows": [["1", "Mount Whitney", "Sierra Nevada", "14,505 ft 4421 m", "10,080 ft 3072 m", "1,646 mi 2,649 km", "36deg34'43''N 118deg17'"], ["2", "Mount Williamson", "Sierra Nevada", "14,379 ft 4383 m", "1,677 ft 511 m", "5.4 mi 8.7 km", "36deg39'21''N 118deg18'"], ["3", "White Mountain Peak", "White Mountains", "14,252 ft 4344 m", "7,196 ft 2193 m", "67 mi 109 km", "37deg38'03''N 118deg15'"], ["4", "North Palisade", "Sierra Nevada", "14,248 ft 4343 m", "2,894 ft 882 m", "32 mi 52 km", "37deg05'39''N 118deg30'"], ["5", "Mount Shasta", "Cascade Range", "14,179 ft 4322 m", "9,832 ft 2997 m", "335 mi 539 km", "41deg24'33''N 122deg11'"], ["6", "Mount Humphreys", "Sierra Nevada", "13,992 ft 4265 m", "2,563 ft 781 m", "15 mi 24 km", "37deg16'14''N 118deg40'"], ["7", "Mount Keith", "Sierra Nevada", "13,982 ft 4262 m", "1,936 ft 590 m", "3.1 mi 5.0 km", "36deg42'00''N 118deg20'"], ["8", "Mount Darwin", "Sierra Nevada", "13,837 ft 4218 m", "1,891 ft 576 m", "7 mi 11 km", "37deg10'01''N 118deg40'"], ["9", "Mount Kaweah", "Sierra Nevada", "13,807 ft 4209 m", "2,027 ft 618 m", "11 mi 17 km", "36deg31'34''N 118deg28'"], ["10", "Mount Morgan", "Sierra Nevada", "13,758 ft 4193 m", "2,648 ft 807 m", "10 mi 16 km", "37deg24'19''N 118deg43'"], ["11", "Mount Gabb", "Sierra Nevada", "13,747 ft 4190 m", "2,601 ft 793 m", "4.3 mi 6.9 km", "37deg22'37''N 118deg48'"], ["12", "Mount Tom", "Sierra Nevada", "13,657 ft 4163 m", "1,992 ft 607 m", "4.8 mi 7.7 km", "37deg22'34''N 119deg10'"], ["13", "Mount Dubois", "White Mountains", "13,565 ft 4135 m", "2,339 ft 713 m", "10 mi 16 km", "37deg47'00''N 118deg20'"], ["14", "Mount Pinchot", "Sierra Nevada", "13,500 ft 4115 m", "2,110 ft 643 m", "4.7 mi 7.6 km", "36deg56'50''N 118deg24'"], ["15", "Red Slate Mountain", "Sierra Nevada", "13,162 ft 4012 m", "1,736 ft 529 m", "8 mi 13 km", "37deg30'27''N 118deg52'"], ["16", "Mount Ritter", "Sierra Nevada", "13,149 ft 4008 m", "3,990 ft 1216 m", "22 mi 35 km", "37deg41'21''N 119deg11'"], ["17", "Mount Langley", "Sierra Nevada", "14,026 ft 4275 m", "2,937 ft 895 m", "16 mi 26 km", "36deg31'36''N 118deg14'"], ["18", "Split Mountain", "Sierra Nevada", "14,058 ft 4285 m", "1,609 ft 490 m", "4.6 mi 7.4 km", "37deg08'58''N 118deg22'"], ["19", "Mount Sill", "Sierra Nevada", "14,159 ft 4316 m", "3,132 ft 954 m", "9.4 mi 15 km", "37deg05'23''N 118deg24'"], ["20", "Mammoth Mountain", "Sierra Nevada", "11,059 ft 3373 m", "3,100 ft 945 m", "11 mi 18 km", "37deg38'12''N 119deg01'"], ["21", "Mount Elbert", "Rocky Mountains", "14,440 ft 4401 m", "9,093 ft 2772 m", "670 mi 1080 km", "39deg07'04''N 106deg26'"], ["22", "Grays Peak", "Rocky Mountains", "14,279 ft 4352 m", "2,770 ft 844 m", "25 mi 41 km", "39deg38'02''N 105deg49'"], ["23", "Mount Evans", "Rocky Mountains", "14,271 ft 4350 m", "2,764 ft 843 m", "13 mi 21 km", "39deg35'31''N 105deg38'"], ["24", "Pikes Peak", "Rocky Mountains", "14,115 ft 4302 m", "5,530 ft 1686 m", "60 mi 97 km", "38deg50'26''N 105deg02'"], ["25", "Longs Peak", "Rocky Mountains", "14,259 ft 4346 m", "2,940 ft 896 m", "42 mi 68 km", "40deg15'18''N 105deg36'"], ["26", "Mount Mitchell", "Appalachian Mountains", "6,684 ft 2037 m", "3,624 ft 1104 m", "85 mi 137 km", "35deg45'53''N 82deg15'"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Mountain Peak", "Mountain Range", "Elevation", "Prominence", "Isolation", "Location"], "add_description": "The name of this table is Mountain Peaks, and the headers of this table are Rank,Mountain Peak,Mountain Range,Elevation,Prominence,Isolation,Location.", "source": "sqa", "answer_md5": "[('cbc7abc2012d9d1036837967722d6af6',)]"} +{"description": "Update the total points of the figure skating competitor ranked 22 to 195.67 in the 'Figure Skating Competitors' table.", "label": ["UPDATE `Figure Skating Competitors` SET `Total Points` = '195.67' WHERE `Rank` = '22'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Figure Skating Competitors", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Name", "type": "TEXT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Total Points", "type": "FLOAT"}, {"name": "SP", "type": "INT"}, {"name": "FS", "type": "INT"}], "rows": [["1", "Kevin van der Perren", "Belgium", "220.17", "1", "1"], ["2", "Samuel Contesti", "Italy", "207.67", "2", "2"], ["3", "Javier Fernandez", "Spain", "190.69", "3", "5"], ["4", "Ivan Tretiakov", "Russia", "185.86", "9", "3"], ["5", "Kensuke Nakaniwa", "Japan", "185.42", "4", "4"], ["6", "Martin Liebers", "Germany", "178.14", "7", "6"], ["7", "Philipp Tischendorf", "Germany", "173.17", "8", "8"], ["8", "Mark Vaillant", "France", "167.17", "13", "7"], ["9", "Gregor Urbas", "Slovenia", "164.11", "6", "9"], ["10", "Ari-Pekka Nurmenkari", "Finland", "161.68", "5", "10"], ["11", "Maxim Shipov", "Israel", "152.91", "11", "12"], ["12", "Abzal Rakimgaliev", "Azerbaijan", "152.70", "10", "14"], ["13", "Clemens Brummer", "Germany", "151.17", "12", "11"], ["14", "Fabio Mascarello", "Italy", "144.58", "14", "15"], ["15", "Michael Biondi", "Germany", "142.58", "16", "13"], ["16", "Stefan Lindemann", "Germany", "134.40", "15", "16"], ["17", "Boyito Mulder", "Netherlands", "119.81", "19", "17"], ["18", "Luka \u010cade\u017e", "Slovenia", "106.30", "20", "18"], ["19", "Georgi Kenchadze", "Bulgaria", "105.15", "18", "19"], ["WD", "Franz Streubel", "Germany", "44.27", "17", ""], ["20", "John Smith", "USA", "180.50", "6", "5"], ["21", "Sophie Chen", "Canada", "170.25", "4", "8"], ["22", "Mario Rossi", "Italy", "165.75", "10", "3"], ["23", "Pavel Petrov", "Russia", "158.90", "9", "11"], ["24", "Chen Li", "China", "156.20", "12", "9"], ["25", "Luis Hernandez", "Mexico", "152.45", "7", "14"], ["26", "Hiroshi Tanaka", "Japan", "147.60", "13", "7"], ["27", "Anna Svensson", "Sweden", "143.30", "5", "16"], ["28", "Julia Petrova", "Russia", "140.05", "11", "12"], ["29", "Marta Garcia", "Spain", "135.90", "14", "2"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Name", "Nation", "Total Points", "SP", "FS"], "add_description": "The name of this table is Figure Skating Competitors, and the headers of this table are Rank,Name,Nation,Total Points,SP,FS.", "source": "hybridqa", "answer_md5": "[('a91096975b446eb7a68f31769c1592ae',)]"} +{"description": "Re-elect John Doe (J) with 55.6% of votes and William Brown (F) with 44.4% in Virginia 23 according to the updated Congressional Election Results in Virginia, 1799-1824.", "label": ["UPDATE `Congressional Election Results in Virginia, 1799-1824` SET `Result` = 'Re-elected', `Candidates` = 'John Doe (J) 55.6%\\nWilliam Brown (F) 44.4%' WHERE `District` = 'Virginia 23' AND `Incumbent` = 'John Doe'"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Congressional Election Results in Virginia, 1799-1824", "table_info": {"columns": [{"name": "District", "type": "TEXT"}, {"name": "Incumbent", "type": "TEXT"}, {"name": "Party", "type": "TEXT"}, {"name": "First\\nelected", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}, {"name": "Candidates", "type": "TEXT"}], "rows": [["Virginia 1", "Thomas Newton, Jr.", "Adams-Clay Republican", "1801", "Re-elected", "Thomas Newton, Jr."], ["Virginia 2", "Arthur Smith", "Crawford Republican", "1821", "Retired\\nJacksonian gain", "James Trezvant (J) 75.7%\\nRichard Eppes (DR) 24.3%"], ["Virginia 3", "William S. Archer", "Crawford Republican", "1820 (special)", "Re-elected", "William S. Archer (J) 100%"], ["Virginia 4", "Mark Alexander", "Crawford Republican", "1819", "Re-elected", "Mark Alexander (J)"], ["Virginia 5", "John Randolph", "Crawford Republican", "1799\\n1819", "Re-elected", "John Randolph (J) 100%"], ["Virginia 6", "George Tucker", "Crawford Republican", "1819", "Retired\\nJacksonian gain", "Thomas Davenport (J) 53.9%\\nJames Lanier 22.6%\\nBarzillai Graves 16.3%\\nJohn D. Urquhart 7.2%"], ["Virginia 7", "Jabez Leftwich", "Crawford Republican", "1821", "Lost re-election\\nJacksonian gain", "Nathaniel H. Claiborne (J) 51.4%\\nJabez Leftwich (C-DR) 48.6%"], ["Virginia 8", "Burwell Bassett", "Crawford Republican", "1805\\n1821", "Re-elected", "Burwell Bassett (J) 95.3%\\nServant Jones (DR) 4.5%\\nReuben Washer 0.2%"], ["Virginia 9", "Andrew Stevenson", "Crawford Republican", "1821", "Re-elected", "Andrew Stevenson (J) 100%"], ["Virginia 10", "William C. Rives", "Crawford Republican", "1823", "Re-elected", "William C. Rives (J) 100%"], ["Virginia 11", "Philip P. Barbour", "Crawford Republican", "1814 (special)", "Retired\\nAdams gain", "Robert Taylor (A) 100%"], ["Virginia 12", "Robert S. Garnett", "Crawford Republican", "1817", "Re-elected", "Robert S. Garnett (J) 68.5%\\nJohn H. Upshaw 31.5%"], ["Virginia 13", "John Taliaferro", "Crawford Republican", "1824 (special)", "Re-elected", "John Taliaferro (A) 63.3%\\nJohn Hooe (F) 26.7%"], ["Virginia 14", "Charles F. Mercer", "Crawford Republican", "1817", "Re-elected", "Charles F. Mercer (A)"], ["Virginia 15", "John S. Barbour", "Crawford Republican", "1823", "Re-elected", "John S. Barbour (J) 53.7%\\nThomas Marshall (F) 46.3%"], ["Virginia 16", "James Stephenson", "Federalist", "1821", "Retired\\nAdams gain", "William Armstrong (A) 57.1%\\nEdward Colston (F) 42.9%"], ["Virginia 17", "Jared Williams", "Crawford Republican", "1819", "Retired\\nAdams gain", "Alfred H. Powell (A) 42.0%\\nWilliam Steenergen (DR) 21.5%\\nAugustine C. Smith (DR) 20.3%\\nSamuel Kercheval (DR) 13.6%\\nRobert Allen (DR) 2.6%"], ["Virginia 18", "Joseph Johnson", "Jackson Republican", "1823", "Re-elected", "Joseph Johnson (J) 62.0%\\nPhillip Doddridge (F) 38.0%"], ["Virginia 19", "William McCoy", "Crawford Republican", "1811", "Re-elected", "William McCoy (J) 70.2%\\nDaniel Sheffey (F) 29.8%"], ["Virginia 20", "John Floyd", "Crawford Republican", "1817", "Re-elected", "John Floyd (J) 84.7%\\nAllen Taylor (F) 15.3%"], ["Virginia 21", "William Smith", "Crawford Republican", "1821", "Re-elected", "William Smith (J) 55.2%\\nJames Lovell (DR) 44.8%"], ["Virginia 22", "Alexander Smyth", "Crawford Republican", "1817", "Retired\\nAdams gain", "Benjamin Estil (A) 58.9%\\nJoseph Crockett (DR) 32.0%\\nWilliam Graham (DR) 9.1%"], ["Virginia 23", "John Doe", "Republican", "2022", "Won", "John Doe (R) 52.1%\\nJane Smith (D) 47.9%"], ["Virginia 24", "Jane Smith", "Democrat", "2022", "Lost", "John Doe (R) 51.3%\\nJane Smith (D) 48.7%"], ["Virginia 25", "Bob Johnson", "Independent", "2022", "Lost", "Mary Lee (D) 37.5%\\nJohn Smith (R) 35.6%\\nBob Johnson (I) 26.9%"], ["Virginia 26", "Mary Lee", "Democrat", "2022", "Won", "Mary Lee (D) 50.8%\\nJohn Doe (R) 49.2%"], ["Virginia 27", "John Smith", "Republican", "2022", "Won", "John Smith (R) 62.7%\\nSarah Brown (D) 37.3%"], ["Virginia 28", "Sarah Brown", "Democrat", "2022", "Lost", "John Smith (R) 53.6%\\nSarah Brown (D) 46.4%"], ["Virginia 29", "David Black", "Independent", "2022", "Lost", "Emily White (R) 38.2%\\nEmma Green (D) 34.3%\\nDavid Black (I) 27.5%"], ["Virginia 30", "Emily White", "Republican", "2022", "Won", "Emily White (R) 55.1%\\nEmma Green (D) 44.9%"], ["Virginia 31", "Emma Green", "Democrat", "2022", "Lost", "Emily White (R) 50.3%\\nEmma Green (D) 49.7%"], ["Virginia 32", "George Rogers", "Republican", "2022", "Won", "George Rogers (R) 59.8%\\nKaren Davis (D) 40.2%"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["District", "Incumbent", "Party", "First\\nelected", "Result", "Candidates"], "add_description": "The name of this table is Congressional Election Results in Virginia, 1799-1824, and the headers of this table are District,Incumbent,Party,First\\nelected,Result,Candidates.", "source": "wikitq", "answer_md5": "[('47877914a710b63a6b749eb05f1f07cc',)]"} +{"description": "The golf scores table has been updated for Paul Casey with a score of 70-70-70-70=280, resulting in a par score of E and winnings of $30,000.", "label": ["UPDATE `Golf scores table` SET `Score`='70-70-70-70=280', `To par`='E', `Money ( $ )`='30,000' WHERE `Player`='Paul Casey'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Golf scores table", "table_info": {"columns": [{"name": "Place", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "To par", "type": "TEXT"}, {"name": "Money ( $ )", "type": "TEXT"}], "rows": [["1", "Nick Price", "Zimbabwe", "67-65-70-67=269", "\u201311", "310,000"], ["2", "Corey Pavin", "United States", "70-67-69-69=275", "\u20135", "160,000"], ["3", "Phil Mickelson", "United States", "68-71-67-70=276", "\u20134", "110,000"], ["T4", "John Cook", "United States", "71-67-69-70=277", "\u20133", "76,667"], ["T4", "Nick Faldo", "England", "73-67-71-66=277", "\u20133", "76,667"], ["T4", "Greg Norman", "Australia", "71-69-67-70=277", "\u20133", "76,667"], ["T7", "Steve Elkington", "Australia", "73-70-66-69=278", "\u20132", "57,500"], ["T7", "Jos\u00e9 Mar\u00eda Olaz\u00e1bal", "Spain", "72-66-70-70=278", "\u20132", "57,500"], ["T9", "Ben Crenshaw", "United States", "70-67-70-72=279", "\u20131", "41,000"], ["T9", "Tom Kite", "United States", "72-68-69-70=279", "\u20131", "41,000"], ["T9", "Loren Roberts", "United States", "69-72-67-71=279", "\u20131", "41,000"], ["T9", "Tom Watson", "United States", "69-72-67-71=279", "\u20131", "41,000"], ["T9", "Ian Woosnam", "Wales", "68-72-73-66=279", "\u20131", "41,000"], ["1", "Greg Norman", "Australia", "69-67-72-70=278", "-2", "90,000"], ["2", "Phil Mickelson", "United States", "70-69-67-71=277", "-3", "75,000"], ["T3", "Dustin Johnson", "United States", "71-70-68-69=278", "-2", "56,000"], ["T3", "Ernie Els", "South Africa", "69-68-71-70=278", "-2", "56,000"], ["T5", "Sergio Garcia", "Spain", "70-70-69-71=280", "E", "41,000"], ["T5", "Paul Casey", "England", "72-68-70-70=280", "E", "41,000"], ["T5", "Justin Rose", "England", "68-71-70-71=280", "E", "41,000"], ["T8", "Adam Scott", "Australia", "71-69-70-71=281", "+1", "30,000"], ["T8", "Jason Day", "Australia", "69-72-68-72=281", "+1", "30,000"], ["T10", "Rickie Fowler", "United States", "72-69-72-69=282", "+2", "20,000"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Place", "Player", "Country", "Score", "To par", "Money ( $ )"], "add_description": "The name of this table is Golf scores table, and the headers of this table are Place,Player,Country,Score,To par,Money ( $ ).", "source": "wikisql", "answer_md5": "[('2474a7854d0051e0373c5a61cf3882ea',)]"} +{"description": "Change the note to 'Former monarch' for Mswati III in the Monarchies table.", "label": ["UPDATE Monarchies SET Note = 'Former monarch' WHERE Name = 'Mswati III'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Monarchies", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Reign", "type": "TEXT"}, {"name": "Born", "type": "TEXT"}, {"name": "Note", "type": "TEXT"}], "rows": [["Albert II", "King of the Belgians", "1993-2013", "( 1934-06-06 ) 6 June 1934 ( age 85 )", "Abdicated"], ["Jigme Singye Wangchuck", "King of Bhutan", "1972-2006", "( 1955-11-11 ) 11 November 1955 ( age 64 )", "Abdicated"], ["Simeon II", "Tsar of the Bulgarians", "1943-1946", "( 1937-06-16 ) 16 June 1937 ( age 82 )", "Monarchy abolished"], ["Fuad II", "King of Egypt and the Sudan", "1952-1953", "( 1952-01-16 ) 16 January 1952 ( age 68 )", "Monarchy abolished"], ["Constantine II", "King of the Hellenes", "1964-1973", "( 1940-06-02 ) 2 June 1940 ( age 79 )", "Monarchy abolished"], ["Akihito", "Emperor of Japan", "1989-2019", "( 1933-12-23 ) 23 December 1933 ( age 86 )", "Abdicated"], ["Gyanendra", "King of Nepal", "1950-1951 and 2001-2008", "( 1947-07-07 ) 7 July 1947 ( age 72 )", "Monarchy abolished"], ["Beatrix", "Queen of the Netherlands", "1980-2013", "( 1938-01-31 ) 31 January 1938 ( age 82 )", "Abdicated"], ["Juan Carlos I", "King of Spain", "1975-2014", "( 1938-01-05 ) 5 January 1938 ( age 82 )", "Abdicated"], ["Hamad bin Khalifa Al Thani", "Emir of Qatar", "1995-2013", "( 1952-01-01 ) 1 January 1952 ( age 68 )", "Abdicated"], ["Benedict XVI", "Sovereign of the Vatican City State", "2005-2013", "( 1927-04-16 ) 16 April 1927 ( age 92 )", "Resigned"], ["Jamshid bin Abdullah", "Sultan of Zanzibar", "1963-1964", "( 1929-09-16 ) 16 September 1929 ( age 90 )", "Monarchy abolished"], ["Harald V", "King of Norway", "1991-present", "( 1937-02-21 ) 21 February 1937 ( age 83 )", ""], ["Mswati III", "King of Eswatini", "1986-present", "( 1968-04-19 ) 19 April 1968 ( age 52 )", ""], ["Felipe VI", "King of Spain", "2014-present", "( 1968-01-30 ) 30 January 1968 ( age 52 )", ""], ["Elizabeth II", "Queen of the United Kingdom and the Commonwealth Realms", "1952-present", "( 1926-04-21 ) 21 April 1926 ( age 94 )", ""], ["Haakon VII", "King of Norway", "1905-1957", "( 1872-08-03 ) 3 August 1872 \u2013 21 September 1957 (aged 85)", ""], ["Salman bin Abdulaziz Al Saud", "King of Saudi Arabia", "2015-present", "( 1935-12-31 ) 31 December 1935 ( age 84 )", ""], ["Willy Telavi", "Prime Minister of Tuvalu", "2013-2013", "( 1954-01-01 ) 1 January 1954 ( age 66 )", ""], ["Albert II", "Prince of Monaco", "2005-2015", "( 1958-03-14 ) 14 March 1958 ( age 62 )", ""], ["Henri", "Grand Duke of Luxembourg", "2000-present", "( 1955-04-16 ) 16 April 1955 ( age 65 )", ""], ["Andrew Fahie", "Premier of the British Virgin Islands", "2019-present", "( 1971-09-12 ) 12 September 1971 ( age 48 )", ""]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "Title", "Reign", "Born", "Note"], "add_description": "The name of this table is Monarchies, and the headers of this table are Name,Title,Reign,Born,Note.", "source": "hybridqa", "answer_md5": "[('a83f8dd7f56e9ae4d9b8af72b7634a54',)]"} +{"description": "In the Athletic Achievements table, the Position column will be updated to '2nd', where the Year column is '2003', the Competition column is 'World Championships', and the Event column is '3000 m st.'", "label": ["UPDATE `Athletic Achievements` SET `Position`='2nd' WHERE `Year`='2003' AND `Competition`='World Championships' AND `Event`='3000 m st.'"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Athletic Achievements", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}], "rows": [["1996", "World Junior Championships", "Sydney, Australia", "2nd", "3000 m st."], ["1998", "World Cross Country Championships", "Marrakech, Morocco", "8th", "Short race"], ["", "Commonwealth Games", "Kuala Lumpur, Malaysia", "3rd", "3000 m st."], ["1999", "All-Africa Games", "Johannesburg, South Africa", "1st", "3000 m st."], ["", "IAAF Grand Prix Final", "Munich, Germany", "4th", "3000 m st."], ["2001", "IAAF Grand Prix Final", "Melbourne, Australia", "4th", "3000 m st."], ["2004", "World Athletics Final", "Monte Carlo, Monaco", "4th", "3000 m st."], ["2005", "World Athletics Final", "Monte Carlo, Monaco", "8th", "3000 m st."], ["1997", "World Championships", "Athens, Greece", "3rd", "5000 m"], ["2000", "Olympic Games", "Sydney, Australia", "6th", "3000 m st."], ["2002", "Commonwealth Games", "Manchester, England", "2nd", "5000 m"], ["2003", "World Championships", "Paris, France", "4th", "3000 m st."], ["2006", "IAAF World Cup", "Athens, Greece", "1st", "3000 m st."], ["2007", "World Championships", "Osaka, Japan", "4th", "5000 m"], ["2009", "World Championships", "Berlin, Germany", "2nd", "5000 m"], ["2010", "Commonwealth Games", "Delhi, India", "1st", "5000 m"], ["2012", "Olympic Games", "London, England", "3rd", "5000 m"], ["2013", "World Championships", "Moscow, Russia", "1st", "5000 m"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Competition", "Venue", "Position", "Event"], "add_description": "The name of this table is Athletic Achievements, and the headers of this table are Year,Competition,Venue,Position,Event.", "source": "wikitq", "answer_md5": "[('e764685189619313e01c26265501c67e',)]"} +{"description": "FC Cincinnati's Champions League Qualification History has been updated with Last Champions League Qualification as '2022-23', Method of Qualification as '2022 U.S. Open Cup', and Length of drought as '1 season'.", "label": ["UPDATE `Champions League Qualification History` SET `Last Champions League Qualification` = '2022-23', `Method of Qualification` = '2022 U.S. Open Cup', `Length of drought` = '1 season' WHERE `Club` = 'FC Cincinnati'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Champions League Qualification History", "table_info": {"columns": [{"name": "Club", "type": "TEXT"}, {"name": "Last Champions League Qualification", "type": "TEXT"}, {"name": "Method of Qualification", "type": "TEXT"}, {"name": "Length of drought", "type": "TEXT"}], "rows": [["Chicago Fire", "2004", "2003 Supporters ' Shield", "16 seasons"], ["New England Revolution", "2008-09", "2007 US Open Cup and 2007 MLS Cup runners-up", "11 seasons"], ["Columbus Crew", "2010-11", "2009 Supporters ' Shield", "9 seasons"], ["Philadelphia Union", "never ( club entered MLS in 2010 )", "", "9 seasons"], ["San Jose Earthquakes", "2013-14", "2012 Supporters ' Shield", "6 seasons"], ["D.C. United", "2015-16", "2014 Eastern Conference regular season", "4 seasons"], ["LA Galaxy", "2015-16", "2014 MLS Cup", "4 seasons"], ["Orlando City SC", "never ( club entered MLS in 2015 )", "", "4 seasons"], ["Real Salt Lake", "2015-16", "2014 Supporters ' Shield fourth place", "4 seasons"], ["Portland Timbers", "2016-17", "2015 MLS Cup", "3 seasons"], ["Vancouver Whitecaps FC", "2016-17", "2015 Canadian Championship", "3 seasons"], ["Colorado Rapids", "2018", "2016 Supporters ' Shield runners-up", "2 seasons"], ["FC Dallas", "2018", "2016 Supporters ' Shield and 2016 U.S. Open Cup", "2 seasons"], ["Minnesota United FC", "never ( club entered MLS in 2017 )", "", "2 seasons"], ["FC Cincinnati", "never ( club entered MLS in 2019 )", "", "1 season"], ["Houston Dynamo", "2019", "2018 U.S. Open Cup", "1 season"], ["New York Red Bulls", "2019", "aggregate record in 2017 and 2018 runners-up", "1 season"], ["Sporting Kansas City", "2019", "2017 U.S. Open Cup", "1 season"], ["Toronto FC", "2019", "2018 Canadian Championship", "1 season"], ["Atlanta United FC", "2020", "2019 U.S. Open Cup", "0 seasons"], ["Arsenal", "2016-17", "2015-16 FA Cup", "3 seasons"], ["Manchester City", "2019-20", "2018-19 Premier League", "1 season"], ["Liverpool", "2019-20", "2018-19 UEFA Champions League", "1 season"], ["Tottenham Hotspur", "2018-19", "2018-19 UEFA Champions League runners-up", "2 seasons"], ["Chelsea", "2019-20", "2018-19 UEFA Europa League", "1 season"], ["Leicester City", "never ( club entered Premier League in 2014 )", "", "6 seasons"], ["Manchester United", "2018-19", "2017-18 Premier League runners-up", "2 seasons"], ["Everton", "never ( last qualification in 2017-18 )", "", "2 seasons"], ["West Ham United", "never ( last qualification in 2015-16 )", "", "4 seasons"], ["Southampton", "never ( last qualification in 2016-17 )", "", "3 seasons"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Club", "Last Champions League Qualification", "Method of Qualification", "Length of drought"], "add_description": "The name of this table is Champions League Qualification History, and the headers of this table are Club,Last Champions League Qualification,Method of Qualification,Length of drought.", "source": "hybridqa", "answer_md5": "[('1f1251d303ec8106a6770a4032cdf735',)]"} +{"description": "Change the opponent value to 'New York Rangers' for the game with number '30' in the 'Game Records' table.", "label": ["UPDATE `Game Records` SET Opponent='New York Rangers' WHERE Game='30'"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Game Records", "table_info": {"columns": [{"name": "Game", "type": "INTEGER"}, {"name": "November", "type": "INTEGER"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}, {"name": "Points", "type": "INTEGER"}], "rows": [["13", "2", "@ Florida Panthers", "4\u20133", "10\u20133\u20130", "20"], ["14", "4", "Quebec Nordiques", "4\u20131", "11\u20133\u20130", "22"], ["15", "6", "@ Toronto Maple Leafs", "3\u20135", "11\u20134\u20130", "22"], ["16", "7", "Vancouver Canucks", "2\u20135", "11\u20135\u20130", "22"], ["17", "10", "@ Buffalo Sabres", "5\u20133", "12\u20135\u20130", "24"], ["18", "11", "New Jersey Devils", "3\u20135", "12\u20136\u20130", "24"], ["19", "13", "Buffalo Sabres", "2\u20137", "12\u20137\u20130", "24"], ["20", "16", "@ Pittsburgh Penguins", "5\u201311", "12\u20138\u20130", "24"], ["21", "18", "Hartford Whalers", "6\u20133", "13\u20138\u20130", "26"], ["22", "20", "@ Boston Bruins", "5\u20135 OT", "13\u20138\u20131", "27"], ["23", "21", "New York Islanders", "4\u20135 OT", "13\u20139\u20131", "27"], ["24", "24", "Montreal Canadiens", "9\u20132", "14\u20139\u20131", "29"], ["25", "26", "Tampa Bay Lightning", "3\u20130", "15\u20139\u20131", "31"], ["26", "27", "@ Tampa Bay Lightning", "4\u20133 OT", "16\u20139\u20131", "33"], ["27", "2", "Pittsburgh Penguins", "2\u20133", "16\u201310\u20131", "33"], ["28", "4", "@ Vancouver Canucks", "4\u20132", "17\u201310\u20131", "35"], ["29", "6", "St. Louis Blues", "1\u20132", "17\u201311\u20131", "35"], ["30", "7", "@ Edmonton Oilers", "3\u20135", "17\u201312\u20131", "35"], ["31", "10", "Buffalo Sabres", "4\u20133 OT", "18\u201312\u20131", "37"], ["32", "11", "@ Washington Capitals", "1\u20136", "18\u201313\u20131", "37"], ["33", "13", "Toronto Maple Leafs", "2\u20133 OT", "18\u201313\u20132", "38"], ["34", "16", "Los Angeles Kings", "3\u20131", "19\u201313\u20132", "40"], ["35", "18", "Quebec Nordiques", "6\u20132", "20\u201313\u20132", "42"], ["36", "20", "@ Winnipeg Jets", "2\u20134", "20\u201314\u20132", "42"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Game", "November", "Opponent", "Score", "Record", "Points"], "add_description": "The name of this table is Game Records, and the headers of this table are Game,November,Opponent,Score,Record,Points.", "source": "wikitq", "answer_md5": "[('85c65ac22f6619e53a206a7352f11f90',)]"} +{"description": "Japan's Olympic Medal Table has been updated with 2 Gold, 5 Silver, 4 Bronze and a total of 11 medals.", "label": ["UPDATE `Olympic Medal Table` SET `Gold` = 2, `Silver` = 5, `Bronze` = 4, `Total` = 11 WHERE `Nation` = 'Japan';"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Olympic Medal Table", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "INT"}, {"name": "Silver", "type": "INT"}, {"name": "Bronze", "type": "INT"}, {"name": "Total", "type": "INT"}], "rows": [["1", "Soviet Union", "*7*", "3", "6", "16"], ["2", "Austria", "4", "3", "4", "11"], ["3", "Finland", "3", "3", "1", "7"], ["4", "Switzerland", "3", "2", "1", "6"], ["5", "Sweden", "2", "4", "4", "10"], ["6", "United States", "2", "3", "2", "7"], ["7", "Norway", "2", "1", "1", "4"], ["8", "Italy", "1", "2", "0", "3"], ["9", "Germany", "1", "0", "1", "2"], ["10", "Canada", "0", "1", "2", "3"], ["11", "France", "1", "2", "5", "8"], ["12", "Netherlands", "1", "2", "1", "4"], ["13", "South Korea", "1", "1", "1", "3"], ["14", "Australia", "1", "1", "0", "2"], ["15", "Japan", "1", "0", "3", "4"], ["16", "China", "1", "0", "2", "3"], ["17", "Great Britain", "1", "0", "1", "2"], ["18", "Czechoslovakia", "1", "0", "0", "1"], ["19", "Switzerland", "0", "3", "1", "4"], ["20", "Russia", "0", "2", "3", "5"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medal Table, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "source": "wikitq", "answer_md5": "[('15bfbd3dbe8b591afe92e0623dc64112',)]"} +{"description": "Set the diameter of the Haughton meteorite crater to 25.5 kilometers in the Meteorite Crater Table.", "label": ["UPDATE `Meteorite Crater Table` SET `Diameter ( km )`='25.5' WHERE `Name`='Haughton'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Meteorite Crater Table", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Diameter ( km )", "type": "INT"}, {"name": "Age ( million years )", "type": "FLOAT"}], "rows": [["Vredefort", "Free State", "South Africa", "300", "2023"], ["Chicxulub", "Yucat\u00e1n", "Mexico", "150", "66"], ["Sudbury", "Ontario", "Canada", "130", "1849"], ["Popigai", "Siberia", "Russia", "100", "35"], ["Manicouagan", "Quebec", "Canada", "100", "215"], ["Acraman", "South Australia", "Australia", "90", "580"], ["Morokweng", "Kalahari Desert", "South Africa", "70", "145"], ["Kara", "Nenetsia", "Russia", "65", "70"], ["Beaverhead", "Idaho and Montana", "United States", "60", "600"], ["Tookoonooka", "Queensland", "Australia", "55", "112-133"], ["Charlevoix", "Quebec", "Canada", "54", "342"], ["Siljan Ring", "Dalarna", "Sweden", "52", "377"], ["Karakul", "Pamir Mountains", "Tajikistan", "52", "5 ? 25 ?"], ["Montagnais", "Nova Scotia", "Canada", "45", "50.5"], ["Araguainha", "Central Brazil", "Brazil", "40", "244.4"], ["Chesapeake Bay", "Virginia", "United States", "40", "35"], ["Mj\u00f8lnir", "Barents Sea", "Norway", "40", "142"], ["Puchezh-Katunki", "Nizhny Novgorod Oblast", "Russia", "40", "167"], ["Saint Martin", "Manitoba", "Canada", "40", "227"], ["Woodleigh", "Western Australia", "Australia", "40", "364"], ["Barringer", "Arizona", "United States", "1", "50"], ["Manson", "Iowa", "United States", "40", "73"], ["Gosses Bluff", "Northern Territory", "Australia", "22", "142"], ["Haughton", "Nunavut", "Canada", "23", "23"], ["Mistastin", "Newfoundland and Labrador", "Canada", "28", "36"], ["Alamo", "Nevada", "United States", "5", "3"], ["Amguid", "Algeria", "Algeria", "450", "1000"], ["Lappajarvi", "Western Finland", "Finland", "23", "73"], ["Ries", "Bavaria", "Germany", "24", "14.8"], ["Kaali", "Saaremaa", "Estonia", "0.11", ">4000"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "Location", "Country", "Diameter ( km )", "Age ( million years )"], "add_description": "The name of this table is Meteorite Crater Table, and the headers of this table are Name,Location,Country,Diameter ( km ),Age ( million years ).", "source": "hybridqa", "answer_md5": "[('5ea50803d57b23f68c3a354a3280cda2',)]"} +{"description": "Change the Cuv\u00e9e to 'Brut R\u00e9serve' for the Wine_Houses where the House is 'Pol Roger'", "label": ["UPDATE Wine_Houses SET Cuv\u00e9e = 'Brut R\u00e9serve' WHERE House = 'Pol Roger'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Wine_Houses", "table_info": {"columns": [{"name": "House", "type": "TEXT"}, {"name": "Founding Year", "type": "INT"}, {"name": "Location", "type": "TEXT"}, {"name": "Cuv\u00e9e", "type": "TEXT"}, {"name": "Company", "type": "TEXT"}], "rows": [["Abel\u00e9", "1757", "Reims", "Sourire de Reims", "Freixenet"], ["AR Lenoble", "1920", "Damery", "Brut Intense Les Aventures", "Family Owned"], ["Ayala", "1860", "Ay", "Grande Cuv\u00e9e ( Vintage )", "Soci\u00e9t\u00e9 Jacques Bollinger"], ["Billecart-Salmon", "1818", "Mareuil-sur-Ay", "Brut R\u00e9serve Clos St Hilare", "Independent"], ["Binet", "1849", "Reims", "Brut Elite Elite Ros\u00e9 ( Ros\u00e9 de saign\u00e9e ) Elite Blanc de Noirs M\u00e9daillon Rouge ( Vintage )", "Independent"], ["Boizel", "1834", "\u00c9pernay", "Joyau de France ( Vintage )", "Lanson-BCC"], ["Bollinger", "1829", "Ay", "Vieilles Vignes Fran\u00e7aises ( Vintage ) R.D . ( R\u00e9cemment D\u00e9gorg\u00e9 ) ( Vintage )", "Soci\u00e9t\u00e9 Jacques Bollinger"], ["Boulard", "1952", "La Neuville-aux-Larris", "", "Findlater"], ["Brice", "1994", "Bouzy", "", "Independent"], ["Brun", "1898", "Ay", "", "Independent"], ["Bruno Paillard", "1981", "Reims", "Nec Plus Ultra ( Vintage ) brut premi\u00e8re cuv\u00e9e ( Vintage )", "Independent"], ["Burtin - Besserat de Bellefon", "1843", "\u00c9pernay", "Cuv\u00e9e des Moines", "Lanson-BCC"], ["Canard-Duch\u00eane", "1868", "Ludes", "Grande Cuv\u00e9e Charles VII", "Groupe Thi\u00e9not"], ["Cattier", "1918", "Chigny-les-Roses", "Clos du Moulin", "Independent"], ["Chanoine Fr\u00e8res", "1730", "Reims", "Gamme Tsarine", "Lanson-BCC"], ["Charles Heidsieck", "1851", "Reims", "Blanc des Mill\u00e9naires ( Vintage )", "EPI"], ["Veuve Cheurlin", "1919", "Celles-sur-Ource", "", "Independent"], ["Cheurlin", "1788", "Celles-sur-Ource", "Brut Sp\u00e9ciale Ros\u00e9 de Saign\u00e9e", "Independent"], ["Cheurlin Thomas", "1788", "Celles-sur-Ource", "Blanc de Blanc - C\u00e9l\u00e9brit\u00e9 Blanc de Noir - Le Champion", "Independent"], ["Comte de Dampierre", "1880", "Chenay", "", "Independent"], ["Gosset", "1584", "A\u00ff", "Celebris ( Vintage )", "Independent"], ["Henriot", "1808", "Reims", "Enchanteleurs ( Vintage )", "Independent"], ["Jacquesson", "1798", "Dizy", "", "Independent"], ["Joseph Perrier", "1825", "Ch\u00e2lons-en-Champagne", "Cuv\u00e9e Royale ( Vintage )", "Independent"], ["Krug", "1843", "Reims", "Grande Cuv\u00e9e ( Vintage )", "LVMH"], ["Lanson", "1760", "Reims", "Grande Cuv\u00e9e ( Vintage ) Black Label ( Vintage ) Rose Label ( Vintage ) Extra Age ( Vintage )", "Lanson-BCC"], ["Laurent-Perrier", "1812", "Tours-sur-Marne", "Grand Si\u00e8cle ( Vintage )", "Independent"], ["Mo\u00ebt & Chandon", "1743", "\u00c9pernay", "Dom P\u00e9rignon ( Vintage ) Imperial ( Vintage ) Nectar Imp\u00e9rial ( Vintage )", "LVMH"], ["Piper-Heidsieck", "1785", "Reims", "Rare ( Vintage ) Cuv\u00e9e Brut ( Vintage )", "EPI"], ["Pol Roger", "1849", "\u00c9pernay", "Cuv\u00e9e Sir Winston Churchill ( Vintage ) Brut R\u00e9serve ( Vintage )", "Independent"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["House", "Founding Year", "Location", "Cuv\u00e9e", "Company"], "add_description": "The name of this table is Wine_Houses, and the headers of this table are House,Founding Year,Location,Cuv\u00e9e,Company.", "source": "hybridqa", "answer_md5": "[('d1153a14d43fc911bf5477ec19a6518a',)]"} +{"description": "Set the 'Notes' column to NULL in the 'movie_production' table where the 'Title' is 'Ala Vaikunthapurramuloo'.", "label": ["UPDATE movie_production SET Notes=NULL WHERE Title='Ala Vaikunthapurramuloo'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "movie_production", "table_info": {"columns": [{"name": "No.", "type": "INTEGER"}, {"name": "Year", "type": "INTEGER"}, {"name": "Title", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1", "2008", "Souryam", "Executive Producer"], ["2", "2009", "Amavarathi", "Executive Producer"], ["3", "2011", "Wanted", "Executive Producer"], ["4", "2012", "Neeku Naaku Dash Dash", "Executive Producer"], ["5", "2014", "Loukyam", "Executive Producer"], ["6", "2015", "Gopichand A.S. Ravi Kumar Chowdary new movie", "Executive Producer"], ["7", "2017", "Shamantakamani", "Executive Producer"], ["8", "2017", "Paisa Vasool", "Executive Producer"], ["9", "2018", "Bharat Ane Nenu", "Executive Producer"], ["10", "2019", "Sye Raa Narasimha Reddy", "Executive Producer"], ["11", "2020", "Ala Vaikunthapurramuloo", "Executive Producer"], ["12", "2021", "Vakeel Saab", "Executive Producer"], ["13", "2022", "RRR", "Executive Producer"], ["14", "2023", "Khiladi", "Executive Producer"], ["15", "2024", "Pushpa", "Executive Producer"], ["16", "2025", "Shekar Kammula's next", "Executive Producer"], ["17", "2026", "Radhe Shyam", "Executive Producer"], ["18", "2027", "KGF 2", "Executive Producer"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["No.", "Year", "Title", "Notes"], "add_description": "The name of this table is movie_production, and the headers of this table are No.,Year,Title,Notes.", "source": "fetaqa", "answer_md5": "[('0ae5f103cbb6019645cb7c78d6081b8a',)]"} +{"description": "Change the data for game 59 in the table `Basketball Games` to have score 115-104, high points from Irving with 38 points, high assists from Harden with 16 assists, and a record of 48-23.", "label": ["UPDATE `Basketball Games` SET `Score`='115-104', `High points`='Irving (38)', `High assists`='Harden (16)', `Record`='48-23' WHERE `Game`='59'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Basketball Games", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "High points", "type": "TEXT"}, {"name": "High rebounds", "type": "TEXT"}, {"name": "High assists", "type": "TEXT"}, {"name": "Location/Attendance", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["46", "February 2", "L.A. Clippers", "111\u2013100", "Rondo (24)", "Powe (10)", "Rondo (8)", "TD Banknorth Garden 18,624", "12\u201334"], ["47", "February 6", "@ Detroit", "88\u201386", "Pierce (18)", "Powe (8)", "Pierce (6)", "Target Center 19,511", "12\u201335"], ["48", "February 7", "Miami", "98\u201390", "Pierce (35)", "Rondo (11)", "Rondo (12)", "TD Banknorth Garden 18,624", "12\u201336"], ["49", "February 9", "New Jersey", "104\u201397", "Pierce (28)", "Pierce (12)", "Rondo (7)", "TD Banknorth Garden 13,603", "12\u201337"], ["50", "February 11", "@ Minnesota", "111\u2013103", "Pierce (24)", "Posey (11)", "Pierce (7)", "TD Banknorth Garden 18,624", "12\u201338"], ["51", "February 14", "Milwaukee", "118\u2013124", "Pierce (24)", "Powe (11)", "Pierce (7)", "TD Banknorth Garden 19,894", "13\u201338"], ["52", "February 20", "@ Sacramento", "117\u2013119", "Allen (32)", "Garnett (15)", "Allen , Rondo (6)", "Oracle Arena 20,711", "13\u201339"], ["53", "February 21", "@ Phoenix", "77\u201385", "Garnett (19)", "Perkins , Pierce (6)", "Garnett (4)", "US Airways Center 18,422", "13\u201340"], ["54", "February 23", "@ L.A. Lakers", "112\u2013102", "Pierce (30)", "Garnett , Pierce (7)", "Rondo (8)", "Rose Garden 20,554", "13\u201341"], ["55", "February 24", "@ Utah", "104\u201376", "Pierce , Posey (17)", "Perkins (9)", "Allen (7)", "Staples Center 19,328", "13\u201342"], ["56", "February 26", "@ Houston", "92\u201387", "Allen (22)", "Garnett (11)", "Rondo (8)", "TD Banknorth Garden 18,624", "14\u201342"], ["57", "March 2", "San Antonio", "96-90", "Pierce (22)", "Garnett (12)", "Rondo (9)", "AT&T Center 18,418", "15-42"], ["58", "March 4", "Portland", "107-115", "Pierce (21)", "Garnett (13)", "Rondo (12)", "TD Banknorth Garden 18,624", "15-43"], ["59", "March 6", "@ Washington", "99-98", "Allen (25)", "Garnett (10)", "Rondo (15)", "Capital One Arena 17,370", "16-43"], ["60", "March 8", "@ Indiana", "93-84", "Pierce (20)", "Garnett (11)", "Allen , Pierce (5)", "Bankers Life Fieldhouse 16,300", "17-43"], ["61", "March 10", "Denver", "108-115", "Pierce (27)", "Garnett (14)", "Rondo (13)", "TD Banknorth Garden 18,624", "17-44"], ["62", "March 11", "@ Detroit", "79-87", "Allen (22)", "Pierce (8)", "Rondo (7)", "Little Caesars Arena 20,491", "17-45"], ["63", "March 13", "Philadelphia", "111-105", "Pierce (26)", "Garnett (12)", "Rondo (11)", "TD Banknorth Garden 18,624", "18-45"], ["64", "March 17", "@ Memphis", "104-97", "Pierce (28)", "Garnett (10)", "Rondo (13)", "FedExForum 17,794", "19-45"], ["65", "March 20", "Chicago", "112-98", "Pierce (32)", "Pierce (9)", "Rondo (13)", "TD Banknorth Garden 18,624", "20-45"], ["66", "March 22", "@ Dallas", "91-86", "Allen (27)", "Garnett (11)", "Rondo (10)", "American Airlines Center 20,428", "21-45"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Game", "Date", "Opponent", "Score", "High points", "High rebounds", "High assists", "Location/Attendance", "Record"], "add_description": "The name of this table is Basketball Games, and the headers of this table are Game,Date,Opponent,Score,High points,High rebounds,High assists,Location/Attendance,Record.", "source": "wikisql", "answer_md5": "[('88f9d6eaf87f4f5f9964c2eb273a0c08',)]"} +{"description": "In the Actress_Filmography, update the record where Notes are set to '-' and change the Year to '2008', Title to 'Sorority House Massacre 2', Role to 'Hannah', and Notes to 'Video'.", "label": ["UPDATE Actress_Filmography SET Year='2008', Title='Sorority House Massacre 2', Role='Hannah', Notes='Video' WHERE Notes='-';"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Actress_Filmography", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1982", "Fast Times at Ridgemont High", "Cindy", "-"], ["1983", "Slayground", "Jolene", "-"], ["1984", "Night of the Comet", "Samantha", "-"], ["1986", "Chopping Mall", "Alison Parks", "-"], ["1986", "The Zero Boys", "Jamie", "-"], ["1987", "Big Bad Mama II", "Willie McClatchie", "-"], ["1988", "Not of This Earth", "Nurse Oxford", "-"], ["1989", "Jaded", "Jennifer", "-"], ["1989", "Transylvania Twist", "Hannah", "-"], ["1990", "Hard to Die", "Porno Wife", "-"], ["1991", "Servants of Twilight", "Sherry Ordway", "-"], ["1991", "Scream Queen Hot Tub Party", "Herself", "Video"], ["1993", "Midnight Witness", "Devon", "-"], ["1999", "Sam and Mike", "-", "Short film"], ["2004", "Audition", "Brett", "Short film"], ["2011", "Lip Service", "Janice", "-"], ["2012", "Dark Star Hollow", "Sarah Rose Barteaux", "Post-production"], ["1995", "Deadly Games", "Kimberly", "-"], ["1997", "Surf Nazis Must Die 2", "Sandy", "-"], ["2000", "The Last Gasp", "Wendy", "-"], ["2001", "The Witches of Breastwick", "Tara", "-"], ["2003", "Cheerleader Massacre", "Jennifer", "-"], ["2005", "Snake Club: Revenge of the Snake Woman", "Angela", "-"], ["2007", "Masters of Horror: Deer Woman", "Megan", "TV episode"], ["2009", "The Black Belle", "Ruby", "-"], ["2010", "Lynch Mob", "Katie White", "Video"], ["2013", "The Girls Were Doing Nothing", "-", "Short film"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Actress_Filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('c8c23eeec553ec4d65d1a3640279819b',)]"} +{"description": "Set the 'Runs' attribute to 200 in the 'CricketPlayers' table for the player with the name 'Tom Smith'.", "label": ["UPDATE CricketPlayers SET Runs = 200 WHERE Player = 'Tom Smith'"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "CricketPlayers", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "Matches", "type": "INT"}, {"name": "Innings", "type": "INT"}, {"name": "Runs", "type": "INT"}, {"name": "Average", "type": "DECIMAL(10,2)"}, {"name": "100s", "type": "INT"}, {"name": "50s", "type": "INT"}], "rows": [["Herbie Hewett", "10", "15", "543", "38.79", "1", "2"], ["Lionel Palairet", "10", "14", "408", "29.14", "1", "1"], ["Bill Roe", "8", "12", "316", "28.73", "0", "1"], ["George Nichols", "13", "18", "497", "27.61", "1", "3"], ["John Challen", "9", "14", "286", "20.43", "0", "1"], ["Ted Tyler", "13", "18", "297", "18.56", "0", "0"], ["Crescens Robinson", "9", "13", "162", "14.73", "0", "0"], ["Albert Clapp", "11", "15", "159", "10.60", "0", "0"], ["David Jones", "12", "17", "568", "37.87", "1", "3"], ["Tom Smith", "11", "16", "605", "43.21", "2", "2"], ["James Turner", "9", "13", "280", "23.33", "0", "1"], ["Richard Brown", "14", "20", "701", "35.05", "1", "5"], ["Harry Lee", "7", "11", "222", "20.18", "0", "1"], ["Oliver Davis", "13", "19", "489", "27.17", "0", "2"], ["Jack Wilson", "8", "14", "215", "15.36", "0", "0"], ["Samuel Taylor", "10", "16", "385", "24.06", "0", "2"], ["William Edwards", "12", "18", "752", "47.00", "3", "2"], ["Charlie Martin", "6", "9", "93", "10.33", "0", "0"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Player", "Matches", "Innings", "Runs", "Average", "100s", "50s"], "add_description": "The name of this table is CricketPlayers, and the headers of this table are Player,Matches,Innings,Runs,Average,100s,50s.", "source": "wikitq", "answer_md5": "[('ecdaa35620313e628cfccabfe7077e10',)]"} +{"description": "In the 'Religious Composition by Year' database, update the percentage of Muslims to 6.8% for the year 2021.", "label": ["UPDATE `Religious Composition by Year` SET `Muslims`='6.8%' WHERE `Year`='2021'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Religious Composition by Year", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Most Protestants", "type": "TEXT"}, {"name": "Roman Catholics", "type": "TEXT"}, {"name": "Jews", "type": "TEXT"}, {"name": "Muslims", "type": "TEXT"}, {"name": "Other Christians /religions", "type": "TEXT"}, {"name": "No religion/atheist", "type": "TEXT"}], "rows": [["1830", "59,1%", "40.8%", "1.8%", "-", "0.1%", "-"], ["1840", "59,6%", "40.3%", "1.8%", "-", "0.1%", "-"], ["1849", "59.7%", "38.4%", "1.9%", "-", "0.1%", "-"], ["1859", "60.6%", "37.4%", "1.9%", "-", "0.1%", "-"], ["1869", "61.3%", "36.6%", "1.9%", "-", "0.1%", "-"], ["1879", "61.6%", "36.1%", "2.0%", "0.0%", "0.0%", "0.3%"], ["1889", "60.5%", "35.6%", "2.2%", "0.0%", "0.4%", "1.5%"], ["1899", "60.0%", "35.3%", "2.0%", "-", "0.4%", "2.3%"], ["1909", "57.3%", "35.2%", "1.8%", "0.0%", "0.7%", "5.0%"], ["1920", "53.8%", "35.8%", "1.7%", "-", "1.0%", "7.8%"], ["1930", "46.3%", "36.5%", "1.4%", "-", "1.4%", "14.4%"], ["1947", "42.3%", "38.6%", "0.1%", "-", "1.9%", "17.1%"], ["1960", "40.7%", "40.5%", "0.1%", "0.0%", "0.2%", "18.3%"], ["1971", "35.9%", "40.5%", "0.1%", "0.4%", "0.3%", "23.6%"], ["1975", "33%", "38%", "-", "-", "3%", "26%"], ["1977", "31%", "38%", "-", "-", "3%", "26%"], ["1980", "30%", "38%", "-", "-", "5%", "26%"], ["1983", "29%", "36%", "-", "-", "6%", "30%"], ["1985", "28%", "37%", "-", "-", "5%", "31%"], ["1990", "26%", "33%", "-", "-", "6%", "38%"], ["1995", "21%", "33%", "-", "-", "8%", "40%"], ["2000", "21%", "32%", "-", "-", "8%", "40%"], ["2005", "21%", "30%", "-", "-", "9%", "41%"], ["2010", "17.9%", "27.3%", "0.1%", "4.5%", "5.1%", "45.3%"], ["2011", "16.8%", "26.5%", "0.1%", "4.7%", "5.1%", "46.8%"], ["2012", "16.7%", "25.8%", "0.1%", "4.8%", "5.2%", "47.4%"], ["2013", "16.1%", "26.3%", "0.1%", "4.8%", "5.9%", "46.9%"], ["2014", "15.8%", "24.4%", "0.1%", "4.9%", "5.6%", "49.2%"], ["2015", "15.5%", "23.7%", "0.1%", "4.9%", "5.6%", "50.1%"], ["2020", "15.1%", "23.2%", "0.1%", "5.0%", "5.8%", "50.8%"], ["2021", "14.8%", "23.5%", "0.1%", "5.2%", "5.7%", "50.7%"], ["2022", "14.5%", "23.8%", "0.1%", "5.4%", "5.6%", "50.6%"], ["2023", "14.2%", "24.1%", "0.1%", "5.6%", "5.5%", "50.5%"], ["2024", "13.9%", "24.4%", "0.1%", "5.8%", "5.4%", "50.4%"], ["2025", "13.6%", "24.7%", "0.1%", "6.0%", "5.3%", "50.3%"], ["2026", "13.3%", "25.0%", "0.1%", "6.2%", "5.2%", "50.2%"], ["2027", "13.0%", "25.3%", "0.1%", "6.4%", "5.1%", "50.1%"], ["2028", "12.7%", "25.6%", "0.1%", "6.6%", "5.0%", "50.0%"], ["2029", "12.4%", "25.9%", "0.1%", "6.8%", "4.9%", "49.9%"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Most Protestants", "Roman Catholics", "Jews", "Muslims", "Other Christians /religions", "No religion/atheist"], "add_description": "The name of this table is Religious Composition by Year, and the headers of this table are Year,Most Protestants,Roman Catholics,Jews,Muslims,Other Christians /religions,No religion/atheist.", "source": "fetaqa", "answer_md5": "[('fd7e65407012e50f7cf3f6edee9a6062',)]"} +{"description": "Set `Hilary Devey` as `Series 1` in `Seat Order Table` for the person who sits at position 6 from the right to the left.", "label": ["UPDATE `Seat Order Table` SET `Series 1`='Hilary Devey' WHERE `Seat Order (Right to Left)`=6"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Seat Order Table", "table_info": {"columns": [{"name": "Seat Order (Right to Left)", "type": "TEXT"}, {"name": "Series 1", "type": "TEXT"}, {"name": "Series 2", "type": "TEXT"}, {"name": "Series 3", "type": "TEXT"}, {"name": "Series 5", "type": "TEXT"}, {"name": "Series 9", "type": "TEXT"}, {"name": "Series 11", "type": "TEXT"}], "rows": [["1", "Peter Jones", "Peter Jones", "Peter Jones", "Peter Jones", "Peter Jones", "Peter Jones"], ["2", "Simon Woodroffe", "Theo Paphitis", "Deborah Meaden", "Deborah Meaden", "Deborah Meaden", "Piers Linney"], ["3", "Doug Richards", "Doug Richards", "Theo Paphitis", "Theo Paphitis", "Theo Paphitis", "Deborah Meaden"], ["4", "Duncan Bannatyne", "Duncan Bannatyne", "Duncan Bannatyne", "Duncan Bannatyne", "Hilary Devey", "Kelly Hoppen"], ["5", "Rachel Elnaugh", "Rachel Elnaugh", "Richard Farleigh", "James Caan", "Duncan Bannatyne", "Duncan Bannatyne"], ["6", "Deborah Meaden", "Deborah Meaden", "Theo Paphitis", "Theo Paphitis", "Duncan Bannatyne", "Duncan Bannatyne"], ["7", "James Caan", "James Caan", "Rachel Elnaugh", "Rachel Elnaugh", "Richard Farleigh", "Richard Farleigh"], ["8", "Kelly Hoppen", "Hilary Devey", "Hilary Devey", "Hilary Devey", "Peter Jones", "Peter Jones"], ["9", "Piers Linney", "Peter Jones", "Peter Jones", "Peter Jones", "Peter Jones", "Deborah Meaden"], ["10", "Rachel Elnaugh", "Doug Richards", "Doug Richards", "Doug Richards", "Doug Richards", "Doug Richards"], ["11", "Simon Woodroffe", "Simon Woodroffe", "Simon Woodroffe", "Theo Paphitis", "Theo Paphitis", "Theo Paphitis"], ["12", "Peter Jones", "Peter Jones", "Peter Jones", "Deborah Meaden", "Deborah Meaden", "Duncan Bannatyne"], ["13", "Duncan Bannatyne", "Duncan Bannatyne", "Duncan Bannatyne", "Hilary Devey", "Hilary Devey", "Hilary Devey"], ["14", "Kelly Hoppen", "Kelly Hoppen", "Kelly Hoppen", "Peter Jones", "Peter Jones", "Peter Jones"], ["15", "Deborah Meaden", "Deborah Meaden", "James Caan", "James Caan", "Rachel Elnaugh", "Rachel Elnaugh"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Seat Order (Right to Left)", "Series 1", "Series 2", "Series 3", "Series 5", "Series 9", "Series 11"], "add_description": "The name of this table is Seat Order Table, and the headers of this table are Seat Order (Right to Left),Series 1,Series 2,Series 3,Series 5,Series 9,Series 11.", "source": "wikisql", "answer_md5": "[('513828149d4d52a0e88976cc4c12e610',)]"} +{"description": "Update the 'Written by' field to 'Tom Johnson' and the 'Original air date' field to 'February 29, 2010' for all episodes where the 'Series #' is equal to 11 in the 'TV Series Episodes' table.", "label": ["UPDATE `TV Series Episodes` SET `Written by`='Tom Johnson', `Original air date`='February29,2010' WHERE `Series #`=11"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "TV Series Episodes", "table_info": {"columns": [{"name": "Series #", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Directed by", "type": "TEXT"}, {"name": "Written by", "type": "TEXT"}, {"name": "Original air date", "type": "TEXT"}, {"name": "Viewers (in millions)", "type": "TEXT"}], "rows": [["1", "\" Pilot \"", "Scott Winant", "Ray Romano & Mike Royce", "December7,2009", "5.4"], ["2", "\" Let It Go \"", "Scott Winant", "Ray Romano & Mike Royce", "December14,2009", "4.4"], ["3", "\"Mind's Eye\"", "Phil Traill", "Rick Muirragui", "December21,2009", "3.7"], ["4", "\"The New Guy\"", "Ed Bianchi", "Bridget Bedard", "December28,2009", "3.1"], ["5", "\"Powerless\"", "David Paymer", "Mark Stegemann", "January4,2010", "3.1"], ["6", "\"Go with the Flow\"", "Millicent Shelton", "Jack Orman", "January11,2010", "2.9"], ["7", "\"Father's Fraternity\"", "Ed Bianchi", "Warren Hutcherson", "January25,2010", "2.3"], ["8", "\"You Gonna Do That the Rest of Your Life?\"", "David Boyd", "Lew Schneider", "February1,2010", "2.3"], ["9", "\"Party All Night\"", "Chris Koch", "Mike Royce", "February8,2010", "2.1"], ["10", "\"The Brother\"", "Phil Traill", "Aaron Shure", "February15,2010", "2.6"], ["11", "\"The Family Bed\"", "Scott Winant", "Mike Royce", "February22,2010", "2.5"], ["12", "\"Good Girls\"", "Ken Whittingham", "Patricia Breen", "March1,2010", "2.2"], ["13", "\"I Can't Believe I Made Love to a Sociopath\"", "David Boyd", "Dan St. Germain", "March8,2010", "2.4"], ["14", "\"Massage Therapy\"", "Millicent Shelton", "Jennifer Crittenden", "March15,2010", "1.8"], ["15", "\"The Will\"", "Michael Blieden", "John Hamburg", "March22,2010", "2.0"], ["16", "\"The Home\"", "David Trainer", "Aaron Shure", "March29,2010", "1.5"], ["17", "\"The Present\"", "Ken Whittingham", "Mike Royce", "April5,2010", "1.9"], ["18", "\"Leaving the Table\"", "David Paymer", "Laura Krafft", "April12,2010", "2.3"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Series #", "Title", "Directed by", "Written by", "Original air date", "Viewers (in millions)"], "add_description": "The name of this table is TV Series Episodes, and the headers of this table are Series #,Title,Directed by,Written by,Original air date,Viewers (in millions).", "source": "wikisql", "answer_md5": "[('0d7edbde2ea4fc1c8b07dc89628e8e35',)]"} +{"description": "Update the athlete's performance data in the 'athlete_performance' table for the '3000 m' event where the athlete finished in '2nd' position. Set the year to '1998', competition to 'Commonwealth Games', venue to 'Kuala Lumpur, Malaysia', position to '1st', and notes to '8:37.92'.", "label": ["UPDATE athlete_performance SET Year='1998', Competition='Commonwealth Games', Venue='Kuala Lumpur, Malaysia', Position='1st', Notes='8:37.92' WHERE Event='3000 m' AND Position='2nd';"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "athlete_performance", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Competition", "type": "TEXT"}, {"name": "Venue", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Event", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["Representing Canada", "Representing Canada", "Representing Canada", "Representing Canada", "Representing Canada", "Representing Canada"], ["1985", "Universiade", "Kobe, Japan", "3rd", "3000 m", "9:03.19"], ["1987", "Pan American Games", "Indianapolis, United States", "2nd", "3000 m", "9:14.48"], ["1988", "Olympic Games", "Seoul, South Korea", "17th (h)", "1500 m", "4:08.64"], ["1988", "Olympic Games", "Seoul, South Korea", "14th", "3000 m", "9:04.75"], ["1990", "Commonwealth Games", "Auckland, New Zealand", "1st", "1500 m", "4:08.41"], ["1990", "Commonwealth Games", "Auckland, New Zealand", "1st", "3000 m", "8:38.38"], ["1992", "Olympic Games", "Barcelona, Spain", "14th (sf)", "1500 m", "4:04.87"], ["1992", "Olympic Games", "Barcelona, Spain", "3rd", "3000 m", "8:47.22"], ["1994", "Commonwealth Games", "Victoria, Canada", "1st", "3000 m", "8:32.17"], ["1994", "Grand Prix Final", "Paris, France", "1st", "1500 m", "4:01.61"], ["1994", "World Cup", "London, United Kingdom", "2nd", "1500 m", "4:01.73"], ["(#) Indicates overall position in qualifying heats (h) or semifinals (sf)", "(#) Indicates overall position in qualifying heats (h) or semifinals (sf)", "(#) Indicates overall position in qualifying heats (h) or semifinals (sf)", "(#) Indicates overall position in qualifying heats (h) or semifinals (sf)", "(#) Indicates overall position in qualifying heats (h) or semifinals (sf)", "(#) Indicates overall position in qualifying heats (h) or semifinals (sf)"], ["Representing United States", "Representing United States", "Representing United States", "Representing United States", "Representing United States", "Representing United States"], ["1996", "Olympic Games", "Atlanta, United States", "6th", "5000 m", "14:50.47"], ["1997", "World Indoor Championships", "Paris, France", "1st", "3000 m", "8:45.98"], ["1998", "Goodwill Games", "Uniondale, United States", "1st", "1500 m", "4:11.09"], ["2000", "Olympic Games", "Sydney, Australia", "10th (h)", "5000 m", "15:12.33"], ["2003", "World Championships", "Paris, France", "7th", "5000 m", "14:51.22"], ["2004", "Olympic Games", "Athens, Greece", "4th", "5000 m", "14:51.12"], ["2005", "World Championships", "Helsinki, Finland", "2nd", "5000 m", "14:38.76"], ["2007", "Pan American Games", "Rio de Janeiro, Brazil", "1st", "5000 m", "15:39.14"], ["2008", "Olympic Games", "Beijing, China", "11th", "5000 m", "15:14.32"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Competition", "Venue", "Position", "Event", "Notes"], "add_description": "The name of this table is athlete_performance, and the headers of this table are Year,Competition,Venue,Position,Event,Notes.", "source": "fetaqa", "answer_md5": "[('147c911fdf1711a2fd97118f804f4d72',)]"} +{"description": "Set shared elements to 2 for Germany in the Country Element Comparison table.", "label": ["UPDATE `Country Element Comparison` SET `Shared elements`='2' WHERE `Country`='Germany';"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Country Element Comparison", "table_info": {"columns": [{"name": "Country", "type": "TEXT"}, {"name": "Exclusive elements", "type": "INT"}, {"name": "Shared elements", "type": "INT"}], "rows": [["Denmark", "-", "-"], ["Estonia", "2", "1"], ["Finland", "-", "-"], ["Iceland", "-", "-"], ["Ireland", "1", "-"], ["Latvia", "1", "1"], ["Lithuania", "2", "1"], ["Norway", "-", "-"], ["Sweden", "-", "-"], ["United Kingdom", "-", "-"], ["Brazil", "3", "2"], ["Canada", "-", "-"], ["France", "1", "2"], ["Germany", "3", "-"], ["Italy", "2", "-"], ["Japan", "1", "1"], ["Mexico", "-", "-"], ["Russia", "2", "3"], ["Spain", "-", "-"], ["United States", "1", "2"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Country", "Exclusive elements", "Shared elements"], "add_description": "The name of this table is Country Element Comparison, and the headers of this table are Country,Exclusive elements,Shared elements.", "source": "hybridqa", "answer_md5": "[('f51f4c3590782434eeafabeb827582d8',)]"} +{"description": "Set the notes for 'The Palace Hotel' to 'Newly renovated in 2021' in the Hotels table.", "label": ["UPDATE Hotels SET Notes='Newly renovated in 2021' WHERE Hotel='The Palace Hotel'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Hotels", "table_info": {"columns": [{"name": "Hotel", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Managed by Cunard", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["London International Hotel", "London , England", "1971-1977", "Today London Marriott Hotel Kensington"], ["Hotel Bristol , later Cunard Hotel Bristol", "London , England", "1971 - 1984", "Today Holiday Inn London Mayfair"], ["Cunard Paradise Beach Hotel & Club", "Bridgetown , Barbados", "1971 - 1992", "Closed since 1992"], ["Cobblers Cove Hotel", "Speightstown , Barbados", "1971 - 1975", ""], ["Montego Beach Hotel", "Montego Bay , Jamaica", "1972 - 1975", ""], ["Cunard Hotel La Toc & La Toc Suites", "Castries , St. Lucia", "1972 - 1992", "Today Sandals Regency La Toc"], ["Cunard International Hotel", "London , England", "1973 - 1984", "Today Novotel London West Hotel"], ["Cambridgeshire Hotel", "Cambridge , England", "1974 - 1985", "Today Hallmark Hotel Cambridge"], ["The Ritz Hotel , London", "London , England", "1976 - 1995", "Now owned by the Ellerman Group"], ["The Stafford", "London , England", "1985 - 1995", ""], ["The Watergate Hotel", "Washington , D.C", "1986 - 1990", ""], ["Dukes Hotel", "London , England", "1988 - 1994", ""], ["Hotel Atop the Bellevue", "Philadelphia , Pennsylvania", "1989 - 1993", "Today The Bellevue Hotel"], ["Cunard 's Plaza Club", "New York City , New York", "1989 - 1989", "concierge floors of the Plaza Hotel"], ["Grand Hotel", "Paris , France", "1972 - 1990", "Now named Hotel Marriott Champs-Elysees"], ["Cunard Hotel & Resort", "Orlando , Florida", "1973 - 2001", "Demolished"], ["Hotel du Palais", "Biarritz , France", "1976 - Present", ""], ["Cunard Hotel de la Paix", "Geneva , Switzerland", "1978 - 2006", "Now known as The Ritz-Carlton Geneva"], ["Claridge Hotel", "Buenos Aires , Argentina", "1980 - 1992", ""], ["Astor Hotel", "New York City , New York", "1981 - 1991", "Now named St. Regis Hotel New York"], ["The Palace Hotel", "San Francisco , California", "1984 - Present", ""], ["Cunard Plaza Hotel", "Kowloon , Hong Kong", "1985 - Present", ""], ["The Savoy Hotel", "London , England", "1987 - Present", ""], ["Cunard Hotel & Casino", "Las Vegas , Nevada", "1990 - 2000", "Demolished"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Hotel", "Location", "Managed by Cunard", "Notes"], "add_description": "The name of this table is Hotels, and the headers of this table are Hotel,Location,Managed by Cunard,Notes.", "source": "hybridqa", "answer_md5": "[('5ef6491c182f01eba3ad759b5c71790f',)]"} +{"description": "The Olympic Medal Table for Australia was updated to have 2 silver, 5 bronze, and a total of 10 medals.", "label": ["UPDATE `Olympic Medal Table` SET `Silver` = 2, `Bronze` = 5, `Total` = 10 WHERE `Nation` = 'Australia';"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Olympic Medal Table", "table_info": {"columns": [{"name": "Rank", "type": "INT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "INT"}, {"name": "Silver", "type": "INT"}, {"name": "Bronze", "type": "INT"}, {"name": "Total", "type": "INT"}], "rows": [["1", "Soviet Union", "*7*", "3", "6", "16"], ["2", "Austria", "4", "3", "4", "11"], ["3", "Finland", "3", "3", "1", "7"], ["4", "Switzerland", "3", "2", "1", "6"], ["5", "Sweden", "2", "4", "4", "10"], ["6", "United States", "2", "3", "2", "7"], ["7", "Norway", "2", "1", "1", "4"], ["8", "Italy", "1", "2", "0", "3"], ["9", "Germany", "1", "0", "1", "2"], ["10", "Canada", "0", "1", "2", "3"], ["11", "France", "1", "2", "5", "8"], ["12", "Netherlands", "1", "2", "1", "4"], ["13", "South Korea", "1", "1", "1", "3"], ["14", "Australia", "1", "1", "0", "2"], ["15", "Japan", "1", "0", "3", "4"], ["16", "China", "1", "0", "2", "3"], ["17", "Great Britain", "1", "0", "1", "2"], ["18", "Czechoslovakia", "1", "0", "0", "1"], ["19", "Switzerland", "0", "3", "1", "4"], ["20", "Russia", "0", "2", "3", "5"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medal Table, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "source": "wikitq", "answer_md5": "[('6b6f7ffd5312f3c6d5891b9e438efaca',)]"} +{"description": "Update the 'Papal Encyclicals Table' by changing the 'Title (Latin)' to 'Updated latin title', 'Title (English translation)' to 'Updated english title', and 'Subject' to 'Updated subject' for No. 42.", "label": ["UPDATE `Papal Encyclicals Table` SET `Title (Latin)` = 'Updated latin title', `Title (English translation)` = 'Updated english title', `Subject` = 'Updated subject' WHERE `No.` = '42.'"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Papal Encyclicals Table", "table_info": {"columns": [{"name": "No.", "type": "INTEGER"}, {"name": "Title (Latin)", "type": "TEXT"}, {"name": "Title (English translation)", "type": "TEXT"}, {"name": "Subject", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}], "rows": [["1.", "Qui Pluribus", "", "On Faith and Religion", "9 November 1846"], ["2.", "Praedecessores Nostros", "", "On Aid for Ireland", "25 March 1847"], ["3.", "Ubi Primum", "", "On Discipline for Religious", "17 June 1847"], ["4.", "Ubi Primum", "", "On Immaculate Conception", "2 February 1849"], ["5.", "Nostis Et Nobiscum", "", "On the Church in the Papal States", "8 December 1849"], ["6.", "Exultavit Cor Nostrum", "", "On the Effects of the Jubilee", "21 November 1851"], ["7.", "Nemo Certe Ignorat", "", "On Discipline for Clergy", "25 March 1852"], ["8.", "Probe Noscitis Venerabiles", "", "On the Discipline for Clergy", "17 May 1852"], ["9.", "Inter Multiplices", "", "Pleading for Unity of Spirit", "21 March 1853"], ["10.", "Neminem Vestrum", "", "On the Persecution of Armenians", "2 February 1854"], ["11.", "Optime Noscitis", "", "On the Proposed Catholic University of Ireland", "20 March 1854"], ["12.", "Apostolicae Nostrae Caritatis", "", "Urging Prayers of Peace", "1 August 1854"], ["13.", "Optime Noscitis", "", "On Episcopal Meetings", "5 November 1855"], ["14.", "Singulari Quidem", "", "On the Church in Austria", "17 March 1856"], ["15.", "Cum Nuper", "", "On Care for Clerics", "20 January 1858"], ["16.", "Amantissimi Redemptoris", "", "On Priests and the Care of Souls", "3 May 1858"], ["17.", "Cum Sancta Mater Ecclesia", "", "Pleading for Public Prayer", "27 April 1859"], ["18.", "Qui Nuper", "", "On the Pontifical States", "18 June 1859"], ["19.", "Nullis Certe Verbis", "", "On the Need for Civil Sovereignty", "19 January 1860"], ["20.", "Amantissimus", "", "On the Care of the Churches", "8 April 1862"], ["21.", "Quanto Conficiamur Moerore", "", "On Promotion of False Doctrines", "10 August 1863"], ["22.", "Incredibili", "", "On the Persecution in New Granada", "17 September 1863"], ["23.", "Maximae Quidem", "", "On the Church in Bavaria", "18 August 1864"], ["24.", "Quanta Cura", "", "Condemning Current Errors", "8 December 1864"], ["25.", "Meridionali Americae", "", "On the Seminary for the Native Clergy", "30 September 1865"], ["26.", "Levate", "", "On the Affiliations of Church", "27 October 1867"], ["27.", "Respicientes", "", "Protesting the Taking of the Pontifical States", "1 November 1870"], ["28.", "Ubi Nos", "\"Our City\"", "On the Pontifical States", "15 May 1871"], ["29.", "Beneficia Dei", "", "On the 25th Anniversary of His Pontificate", "4 June 1871"], ["30.", "Saepe Venerabiles Fratres", "", "Thanksgiving for 25 Years of Pontificate", "5 August 1871"], ["31.", "Quae In Patriarchatu", "", "On the Church in Chaldea", "16 November 1872"], ["32.", "Quartus Supra", "", "On the Church in Armenia", "January 1873"], ["33.", "Etsi Multa", "", "On the Church in Italy, Germany and Switzerland", "21 November 1873"], ["34.", "Vix Dum A Nobis", "", "On the Church in Austria", "7 March 1874"], ["35.", "Omnem Sollicitudinem", "", "On the Greek-Ruthenian Rite", "13 May 1874"], ["36.", "Gravibus Ecclesiae", "", "Proclaiming A Jubilee", "24 December 1874"], ["37.", "Quod Nunquam", "", "On the Church in Prussia", "5 February 1875"], ["38.", "Graves Ac Diuturnae", "", "On the Church in Switzerland", "23 March 1875"], ["1.", "Lorem Ipsum", "", "On Lorem Ipsum", "1 January 2021"], ["39.", "Apostolicae Sedis", "", "On the Power of the Apostolic See", "29 June 1876"], ["40.", "Quod Multum", "", "On the Third Plenary Council of Baltimore", "22 December 1878"], ["41.", "Spectata Fides", "", "On Christian Democracy", "27 November 1885"], ["42.", "Quod Anniversarius", "", "On the Fourth Centenary of the Bull \"Inter Caetera\"", "16 May 1892"], ["43.", "Praeclara Gratulationis Publicae", "", "Commending Catholic Education", "20 June 1894"], ["44.", "Laetitiae Sanctae", "", "On the Sacred Heart", "8 September 1899"], ["45.", "Annum Sacrum", "", "On Consecration to the Sacred Heart", "25 May 1899"], ["46.", "Tametsi Futura Prospicientibus", "", "On Jesus Christ Our Redeemer", "1 November 1900"], ["47.", "Etsi Nos", "", "On the Unity of the Church", "15 February 1882"], ["48.", "Pascendi Dominici Gregis", "", "Condemning Modernism", "8 September 1907"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["No.", "Title (Latin)", "Title (English translation)", "Subject", "Date"], "add_description": "The name of this table is Papal Encyclicals Table, and the headers of this table are No.,Title (Latin),Title (English translation),Subject,Date.", "source": "wikitq", "answer_md5": "[('9a2910f6cd8c7e9a8e174f29fcd1787c',)]"} +{"description": "Set the 'Year Listed' of 'Windsor Castle' in the 'Historic England Listed Buildings' to 1992.", "label": ["UPDATE `Historic England Listed Buildings` SET `Year Listed` = '1992' WHERE `Name` = 'Windsor Castle'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Historic England Listed Buildings", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Year Completed", "type": "TEXT"}, {"name": "Year Listed", "type": "TEXT"}, {"name": "Historic England Description", "type": "TEXT"}], "rows": [["Dalton Castle", "Dalton South", "c. 14th century", "1950", "DALTON CASTLE"], ["Furness Abbey", "Newbarns", "1127", "1949", "FURNESS ABBEY , INCLUDING ALL MEDIEVAL REMAINS IN CARE OF ENGLISH HERITAGE"], ["Furness Abbey Chapel", "Newbarns", "c. 1300", "1976", "CAPELLA EXTRA PORTAS WITH ATTACHED WALLS"], ["Furness Abbey Main Gateway", "Newbarns", "c. 14th century", "1976", "GATEWAY ADJOINING CAPELLA EXTRA"], ["Furness Abbey Precinct Wall", "Newbarns", "1127", "1949", "FURNESS ABBEY WALL"], ["Furness Abbey West Gateway", "Newbarns", "c. 14th century", "1976", "ST GATE TO FURNESS ABBEY , REMAINS OF"], ["Piel Castle", "Roose ( Piel Island )", "1327", "1949", "PIEL CASTLE"], ["Rampside Hall", "Roose ( Rampside )", "c. 17th century", "1949", "RAMPSIDE HALL 101"], ["Winchester Castle", "Winchester", "c. 1067", "1960", "WINCHESTER CASTLE, INCLUDING THE 12TH CENTURY GREAT HALL"], ["St. Paul's Cathedral", "London", "c. 604", "1958", "ST. PAUL'S CATHEDRAL"], ["Hadrian's Wall", "Northern England", "122 AD", "1987", "HADRIAN'S WALL, INCLUDING ALL REMAINS IN CARE OF ENGLISH HERITAGE"], ["Westminster Abbey", "London", "c. 1090", "1987", "WESTMINSTER ABBEY, INCLUDING THE 13TH CENTURY CHAPTER HOUSE"], ["Dover Castle", "Dover", "c. 1066", "1963", "DOVER CASTLE, INCLUDING THE ROMAN LIGHTHOUSE AND NORMAN KEEP"], ["Stonehenge", "Wiltshire", "c. 3000 BC", "1986", "STONEHENGE AND ITS SURROUNDING MONUMENTS"], ["Tower of London", "London", "c. 1078", "1988", "TOWER OF LONDON, INCLUDING THE 12TH CENTURY WHITE TOWER AND TRAITORS' GATE"], ["Windsor Castle", "Windsor", "c. 1070", "1959", "WINDSOR CASTLE, INCLUDING ST. GEORGE'S CHAPEL AND THE STATE APARTMENTS"], ["Canterbury Cathedral", "Canterbury", "c. 1070", "1988", "CANTERBURY CATHEDRAL, INCLUDING THE 12TH CENTURY NORMAN CRYPT"], ["The British Museum", "London", "1753", "1963", "THE BRITISH MUSEUM"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "Location", "Year Completed", "Year Listed", "Historic England Description"], "add_description": "The name of this table is Historic England Listed Buildings, and the headers of this table are Name,Location,Year Completed,Year Listed,Historic England Description.", "source": "hybridqa", "answer_md5": "[('aa6c20c9b138d2b53df547d4ead80be4',)]"} +{"description": "Update the best score of Samba in 'Dance Competition Results' to 42.", "label": ["UPDATE `Dance Competition Results` SET `Best score`='42' WHERE Dance='Samba';"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Dance Competition Results", "table_info": {"columns": [{"name": "Dance", "type": "TEXT"}, {"name": "Best dancer", "type": "TEXT"}, {"name": "Best score", "type": "INT"}, {"name": "Worst dancer", "type": "TEXT"}, {"name": "Worst score", "type": "INT"}], "rows": [["Cha-Cha-Cha", "Dorota Gardias", "38", "Pawe\u0142 Nastula Francys Sudnicka Marcin Chochlew", "20"], ["Waltz", "Monika Richardson", "38", "Anna Nowak-Ibisz", "25"], ["Quickstep", "Bartek Kasprzykowski Dorota Gardias", "40", "Francys Sudnicka", "18"], ["Rumba", "Dorota Gardias", "40", "Pawe\u0142 Nastula", "19"], ["Jive", "Bartek Kasprzykowski Dorota Gardias", "36", "Francys Sudnicka", "21"], ["Tango", "Dorota Gardias", "40", "Pawe\u0142 Nastula", "28"], ["Foxtrot", "Bartek Kasprzykowski Dorota Gardias", "40", "Francys Sudnicka", "29"], ["Paso Doble", "Bartek Kasprzykowski Dorota Gardias", "40", "Pawe\u0142 Nastula", "20"], ["Samba", "Jay Delano", "40", "Anna Nowak-Ibisz", "28"], ["Viennese Waltz", "Monika Richardson Bartek Kasprzykowski", "40", "Francys Sudnicka", "23"], ["Freestyle", "Bartek Kasprzykowski Dorota Gardias", "40", "-", "-"], ["Salsa", "Sofia Vergara", "39", "Joe Manganiello", "20"], ["Samba", "Shakira", "42", "Gerard Pique", "24"], ["Cha-Cha-Cha", "Jennifer Lopez", "38", "Alex Rodriguez", "23"], ["Jive", "Michael Jackson", "40", "Madonna", "22"], ["Tango", "Antonio Banderas", "44", "Melanie Griffith", "25"], ["Foxtrot", "Ginger Rogers", "41", "Fred Astaire", "27"], ["Waltz", "Meryl Streep", "37", "Tom Hanks", "26"], ["Rumba", "Penelope Cruz", "39", "Javier Bardem", "21"], ["Quickstep", "Audrey Hepburn", "42", "Gregory Peck", "28"], ["Viennese Waltz", "Natalie Portman", "40", "Benjamin Millepied", "24"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Dance", "Best dancer", "Best score", "Worst dancer", "Worst score"], "add_description": "The name of this table is Dance Competition Results, and the headers of this table are Dance,Best dancer,Best score,Worst dancer,Worst score.", "source": "hybridqa", "answer_md5": "[('7587a3fe08f0e88293532dea100fab07',)]"} +{"description": "The rugby team of Harvard was updated in `Rugby Teams and Their Accomplishments` by setting 'Champion' to '1 ( 2020 )' and 'Semifinalist' to '1 ( 2020 )'.", "label": ["UPDATE `Rugby Teams and Their Accomplishments` SET `Champion` = '1 ( 2020 )', `Semifinalist` = '1 ( 2020 )' WHERE `Team` = 'Harvard'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Rugby Teams and Their Accomplishments", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "Conf/Div", "type": "TEXT"}, {"name": "Champion", "type": "TEXT"}, {"name": "Runner-up", "type": "TEXT"}, {"name": "Semifinalist", "type": "TEXT"}, {"name": "Quarterfinalist", "type": "TEXT"}], "rows": [["California", "PAC", "5 ( 2013 , 2014 , 2015 , 2016 , 2017 )", "1 ( 2010 )", "1 ( 2012 )", "1 ( 2011 )"], ["Dartmouth", "Ivy", "2 ( 2011 , 2012 )", "0", "4 ( 2010 , 2013 , 2014 , 2015 )", "3 ( 2010 , 2013 , 2014 )"], ["Lindenwood", "Mid-South", "2 ( 2018 , 2019 )", "0", "1 ( 2017 )", ""], ["Utah", "PAC", "1 ( 2010 )", "0", "1 ( 2011 )", "0"], ["Life University", "Div 1-A", "0", "3 ( 2013 , 2017 , 2019 )", "4 ( 2012 , 2015 , 2015 , 2018 )", "0"], ["UCLA", "PAC", "0", "2 ( 2016 , 2018 )", "2 ( 2013 , 2014 )", "0"], ["Kutztown", "Div 1-A", "0", "2 ( 2014 , 2015 )", "2 ( 2016 , 2019 )", "1 ( 2013 )"], ["Arizona", "PAC", "0", "1 ( 2012 )", "4 ( 2010 , 2015 , 2016 , 2018 )", "2 ( 2011 , 2013 )"], ["Army", "Div 1-A", "0", "1 ( 2011 )", "0", "0"], ["Navy", "Atlantic Coast", "0", "0", "2 ( 2013 , 2019 )", "4 ( 2010 , 2012 , 2014 , 2015 )"], ["Central Washington", "Independent", "0", "0", "1 ( 2011 )", "0"], ["San Diego State", "Div 1-A", "0", "0", "1 ( 2010 )", "0"], ["Penn State", "Div 1-A", "0", "0", "0", "3 ( 2011 , 2013 , 2014 )"], ["Arkansas State", "MSC", "0", "0", "0", "2 ( 2015 , 2016 )"], ["Michigan", "Big Ten", "0", "0", "0", "2 ( 2014 , 2015 )"], ["Harvard", "Ivy", "1 ( 2004 )", "2 ( 2003 , 2012 )", "4 ( 2007 , 2009 , 2010 , 2014 )", "2 ( 2005 , 2013 )"], ["Ohio State", "Big Ten", "1 ( 2016 )", "1 ( 2013 )", "3 ( 2018 , 2019 , 2020 )", "2 ( 2012 , 2014 )"], ["BYU", "Independent", "2 ( 2009 , 2011 )", "0", "3 ( 2012 , 2013 , 2014 )", "2 ( 2010 , 2015 )"], ["Florida", "SEC", "1 ( 2006 )", "2 ( 2008 , 2009 )", "0", "1 ( 2003 )"], ["Northwestern", "Big Ten", "0", "0", "1 ( 2018 )", "3 ( 2010 , 2011 , 2012 )"], ["Western Michigan", "MAC", "0", "1 ( 2020 )", "0", "3 ( 2017 , 2018 , 2019 )"], ["Stanford", "PAC", "3 ( 2015 , 2016 , 2017 )", "1 ( 2010 )", "2 ( 2011 , 2012 )", "1 ( 2013 )"], ["Texas A&M", "SEC", "0", "1 ( 2017 )", "2 ( 2011 , 2013 )", "0"], ["Virginia Tech", "ACC", "0", "0", "1 ( 2016 )", "2 ( 2010 , 2011 )"], ["Colorado", "PAC", "0", "1 ( 1990 )", "0", "1 ( 2001 )"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Team", "Conf/Div", "Champion", "Runner-up", "Semifinalist", "Quarterfinalist"], "add_description": "The name of this table is Rugby Teams and Their Accomplishments, and the headers of this table are Team,Conf/Div,Champion,Runner-up,Semifinalist,Quarterfinalist.", "source": "hybridqa", "answer_md5": "[('c9ec2f56ab76791be794f772c8435aaa',)]"} +{"description": "Change the city name to 'Haarlemmermeer' for the airport passengers with rank 23 in the table 'Airport Passengers'.", "label": ["UPDATE `Airport Passengers` SET `City` = 'Haarlemmermeer' WHERE `Rank` = '23';"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Airport Passengers", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "Airport name", "type": "TEXT"}, {"name": "City", "type": "TEXT"}, {"name": "Country or territory", "type": "TEXT"}, {"name": "IATA / ICAO Code", "type": "TEXT"}, {"name": "Passengers", "type": "TEXT"}], "rows": [["1", "Punta Cana International Airport", "Punta Cana", "Dominican Republic", "PUJ/MDPC", "12,788,912"], ["2", "Luis Mu\u00f1oz Marin International Airport", "San Juan", "Puerto Rico", "SJU/TJSJ", "8,955,797"], ["3", "Jos\u00e9 Mart\u00ed International Airport", "Havana", "Cuba", "HAV/MUHA", "5,713,859"], ["4", "Sangster International Airport", "Montego Bay", "Jamaica", "MBJ/MKJS", "4,284,558"], ["5", "Las Americas International Airport", "Santo Domingo", "Dominican Republic", "SDQ/MDSD", "3,687,024"], ["6", "Lynden Pindling International Airport", "Nassau", "The Bahamas", "NAS/MYNN", "3,339,876"], ["7", "Piarco International Airport", "Port of Spain", "Trinidad and Tobago", "POS/TTPP", "2,884,843"], ["8", "Queen Beatrix International Airport", "Aruba", "Aruba", "AUA/TNCA", "2,602,728"], ["9", "Pointe-\u00e0-Pitre International Airport", "Pointe-\u00e0-Pitre", "Guadeloupe", "PTP/TFFR", "2,361,198"], ["10", "Grantley Adams International Airport", "Bridgetown", "Barbados", "BGI/TBPB", "2,172,603"], ["11", "Martinique Aim\u00e9 C\u00e9saire International Airport", "Fort-de-France", "Martinique", "FDF/TFFF", "1,864,582"], ["12", "Hato International Airport", "Cura\u00e7ao", "Cura\u00e7ao", "CUR/TNCC", "1,835,000"], ["13", "Princess Juliana International Airport", "St. Maarten", "Sint Maarten", "SXM/TNCM", "1,795,117"], ["14", "Norman Manley International Airport", "Kingston", "Jamaica", "KIN/MKJP", "1,594,096"], ["15", "Toussaint Louverture International Airport", "Port-Au-Prince", "Haiti", "PAP/MTPP", "1,500,521"], ["16", "Cyril E. King Airport", "Saint Thomas", "United States Virgin Islands", "STT/TIST", "1,403,000"], ["17", "Cibao International Airport", "Santiago", "Dominican Republic", "STI/MDST", "1,400,551"], ["18", "Gustavo Rojas Pinilla International Airport", "San Andr\u00e9s", "Colombia", "ADZ/SKSP", "1,277,163"], ["19", "Juan Gualberto G\u00f3mez Airport", "Varadero", "Cuba", "VRA/MUVR", "1,275,000"], ["20", "Owen Roberts International Airport", "Grand Cayman", "Cayman Islands", "GCM/MWCR", "1,035,826"], ["21", "Grantley Adams International Airport", "Bridgetown", "Barbados", "BGI/TBPB", "976,512"], ["22", "Queen Beatrix International Airport", "Aruba", "Aruba", "AUA/TNCA", "894,221"], ["23", "Piarco International Airport", "Port of Spain", "Trinidad and Tobago", "POS/TTPP", "821,564"], ["24", "Pointe-\u00e0-Pitre International Airport", "Pointe-\u00e0-Pitre", "Guadeloupe", "PTP/TFFR", "752,111"], ["25", "Martinique Aim\u00e9 C\u00e9saire International Airport", "Fort-de-France", "Martinique", "FDF/TFFF", "693,245"], ["26", "Hato International Airport", "Cura\u00e7ao", "Cura\u00e7ao", "CUR/TNCC", "647,817"], ["27", "Toussaint Louverture International Airport", "Port-Au-Prince", "Haiti", "PAP/MTPP", "592,831"], ["28", "Cibao International Airport", "Santiago", "Dominican Republic", "STI/MDST", "550,932"], ["29", "Juan Gualberto G\u00f3mez Airport", "Varadero", "Cuba", "VRA/MUVR", "520,368"], ["30", "Owen Roberts International Airport", "Grand Cayman", "Cayman Islands", "GCM/MWCR", "427,691"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Airport name", "City", "Country or territory", "IATA / ICAO Code", "Passengers"], "add_description": "The name of this table is Airport Passengers, and the headers of this table are Rank,Airport name,City,Country or territory,IATA / ICAO Code,Passengers.", "source": "hybridqa", "answer_md5": "[('e01d13b174c8627d6eb2208b2253b1c4',)]"} +{"description": "The basketball game with ID 57 is updated in the database with a final score of 110-108. Irving scored the highest with 35 points, Durant got the most rebounds with 10, while Harden had the most assists with 15. The team's record is now 46-23.", "label": ["UPDATE `Basketball Games` SET `Score`='110-108', `High points`='Irving (35)', `High rebounds`='Durant (10)', `High assists`='Harden (15)', `Record`='46-23' WHERE `Game`='57'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Basketball Games", "table_info": {"columns": [{"name": "Game", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Opponent", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "High points", "type": "TEXT"}, {"name": "High rebounds", "type": "TEXT"}, {"name": "High assists", "type": "TEXT"}, {"name": "Location/Attendance", "type": "TEXT"}, {"name": "Record", "type": "TEXT"}], "rows": [["46", "February 2", "L.A. Clippers", "111\u2013100", "Rondo (24)", "Powe (10)", "Rondo (8)", "TD Banknorth Garden 18,624", "12\u201334"], ["47", "February 6", "@ Detroit", "88\u201386", "Pierce (18)", "Powe (8)", "Pierce (6)", "Target Center 19,511", "12\u201335"], ["48", "February 7", "Miami", "98\u201390", "Pierce (35)", "Rondo (11)", "Rondo (12)", "TD Banknorth Garden 18,624", "12\u201336"], ["49", "February 9", "New Jersey", "104\u201397", "Pierce (28)", "Pierce (12)", "Rondo (7)", "TD Banknorth Garden 13,603", "12\u201337"], ["50", "February 11", "@ Minnesota", "111\u2013103", "Pierce (24)", "Posey (11)", "Pierce (7)", "TD Banknorth Garden 18,624", "12\u201338"], ["51", "February 14", "Milwaukee", "118\u2013124", "Pierce (24)", "Powe (11)", "Pierce (7)", "TD Banknorth Garden 19,894", "13\u201338"], ["52", "February 20", "@ Sacramento", "117\u2013119", "Allen (32)", "Garnett (15)", "Allen , Rondo (6)", "Oracle Arena 20,711", "13\u201339"], ["53", "February 21", "@ Phoenix", "77\u201385", "Garnett (19)", "Perkins , Pierce (6)", "Garnett (4)", "US Airways Center 18,422", "13\u201340"], ["54", "February 23", "@ L.A. Lakers", "112\u2013102", "Pierce (30)", "Garnett , Pierce (7)", "Rondo (8)", "Rose Garden 20,554", "13\u201341"], ["55", "February 24", "@ Utah", "104\u201376", "Pierce , Posey (17)", "Perkins (9)", "Allen (7)", "Staples Center 19,328", "13\u201342"], ["56", "February 26", "@ Houston", "92\u201387", "Allen (22)", "Garnett (11)", "Rondo (8)", "TD Banknorth Garden 18,624", "14\u201342"], ["57", "March 2", "San Antonio", "96-90", "Pierce (22)", "Garnett (12)", "Rondo (9)", "AT&T Center 18,418", "15-42"], ["58", "March 4", "Portland", "107-115", "Pierce (21)", "Garnett (13)", "Rondo (12)", "TD Banknorth Garden 18,624", "15-43"], ["59", "March 6", "@ Washington", "99-98", "Allen (25)", "Garnett (10)", "Rondo (15)", "Capital One Arena 17,370", "16-43"], ["60", "March 8", "@ Indiana", "93-84", "Pierce (20)", "Garnett (11)", "Allen , Pierce (5)", "Bankers Life Fieldhouse 16,300", "17-43"], ["61", "March 10", "Denver", "108-115", "Pierce (27)", "Garnett (14)", "Rondo (13)", "TD Banknorth Garden 18,624", "17-44"], ["62", "March 11", "@ Detroit", "79-87", "Allen (22)", "Pierce (8)", "Rondo (7)", "Little Caesars Arena 20,491", "17-45"], ["63", "March 13", "Philadelphia", "111-105", "Pierce (26)", "Garnett (12)", "Rondo (11)", "TD Banknorth Garden 18,624", "18-45"], ["64", "March 17", "@ Memphis", "104-97", "Pierce (28)", "Garnett (10)", "Rondo (13)", "FedExForum 17,794", "19-45"], ["65", "March 20", "Chicago", "112-98", "Pierce (32)", "Pierce (9)", "Rondo (13)", "TD Banknorth Garden 18,624", "20-45"], ["66", "March 22", "@ Dallas", "91-86", "Allen (27)", "Garnett (11)", "Rondo (10)", "American Airlines Center 20,428", "21-45"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Game", "Date", "Opponent", "Score", "High points", "High rebounds", "High assists", "Location/Attendance", "Record"], "add_description": "The name of this table is Basketball Games, and the headers of this table are Game,Date,Opponent,Score,High points,High rebounds,High assists,Location/Attendance,Record.", "source": "wikisql", "answer_md5": "[('92be563e87fb75df48c0db5520a0df5d',)]"} +{"description": "Change the title and role of the radio jockey for the year 2019 to 'Radio City 91.1' in the database table 'roles_and_titles'.", "label": ["UPDATE roles_and_titles SET Title = 'Radio City 91.1', Role = 'Radio Jockey' WHERE Year = '2019'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "roles_and_titles", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}], "rows": [["2006", "BIG FM 92.7 Finalist", "RJ hunt"], ["2007", "Radio Tarang", "Radio Jockey"], ["2008-10", "UTV", "Voice actor"], ["2010", "94.3 Radio One", "Creative writer/promo producer"], ["2010-2015", "Fever 104 FM", "Dilli ke Do Dabangg(Radio Jockey)"], ["2016-2017", "Red FM 93.5", "Jockey"], ["2011-2012", "City FM 101.6", "Radio Jockey"], ["2012-2013", "Radio Indigo 91.9 FM", "RJ"], ["2013-2015", "Radio Mirchi 98.3 FM", "Radio Jockey"], ["2014", "Radio Tarana 1386 AM", "Program Coordinator"], ["2015-2016", "Radio City 91.1 FM", "Radio Jockey"], ["2016-2017", "Big FM 92.7", "RJ"], ["2017-2018", "Radio Active 90.4 FM", "Radio Jockey"], ["2018-2019", "Radio Orange 91.9 FM", "RJ"], ["2019", "Radio Zindagi 1600 AM", "Program Coordinator"], ["2020", "Radio Choklate 104 FM", "Radio Jockey"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Title", "Role"], "add_description": "The name of this table is roles_and_titles, and the headers of this table are Year,Title,Role.", "source": "fetaqa", "answer_md5": "[('b3bea64c8651058003deb3da9cf293e8',)]"} +{"description": "Change the name to 'Gregory Tarasevich' for all male swimmers in the 200m backstroke from Russia in the swimming_men_200m_backstroke table.", "label": ["UPDATE swimming_men_200m_backstroke SET Name = 'Gregory Tarasevich' WHERE Nationality = 'Russia'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "swimming_men_200m_backstroke", "table_info": {"columns": [{"name": "Rank", "type": "INTEGER"}, {"name": "Lane", "type": "INTEGER"}, {"name": "Name", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Time", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["-", "6", "Ryan Murphy", "United States", "1:53.62", "-"], ["-", "5", "Mitch Larkin", "Australia", "1:53.96", "-"], ["-", "4", "Evgeny Rylov", "Russia", "1:53.97", "EU"], ["4", "2", "Xu Jiayu", "China", "1:55.16", "-"], ["5", "3", "Jacob Pebley", "United States", "1:55.52", "-"], ["6", "7", "Li Guangyuan", "China", "1:55.89", "-"], ["7", "8", "Christian Diener", "Germany", "1:56.27", "-"], ["8", "1", "Ryosuke Irie", "Japan", "1:56.36", "-"], ["-", "6", "Kliment Kolesnikov", "Russia", "1:52.77", "-"], ["-", "5", "Matt Grevers", "United States", "1:54.41", "-"], ["-", "4", "Adam Peaty", "Great Britain", "1:54.55", "-"], ["4", "2", "Yakov Toumarkin", "Israel", "1:56.18", "-"], ["5", "3", "Apostolos Christou", "Greece", "1:57.21", "-"], ["6", "7", "Christopher Ciccarese", "Italy", "1:57.43", "-"], ["7", "8", "Jordan Sloan", "Ireland", "1:57.91", "-"], ["8", "1", "Junya Koga", "Japan", "1:58.14", "-"], ["-", "6", "Gabriel Santos", "Brazil", "1:58.28", "-"], ["-", "5", "Joseph Schooling", "Singapore", "1:58.54", "-"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Lane", "Name", "Nationality", "Time", "Notes"], "add_description": "The name of this table is swimming_men_200m_backstroke, and the headers of this table are Rank,Lane,Name,Nationality,Time,Notes.", "source": "fetaqa", "answer_md5": "[('ab7925ee2d30c5d208fd50c67ddc79bc',)]"} +{"description": "Change the year and notes of the film 'Jumping the Broom' in the table 'Actress Filmography' to 2010 and 'romantic comedy' respectively.", "label": ["UPDATE `Actress Filmography` SET Year='2010', Notes='romantic comedy' WHERE Title='Jumping the Broom'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Actress Filmography", "table_info": {"columns": [{"name": "Year", "type": "INT"}, {"name": "Title", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1991", "Boyz n the Hood", "Shalika", "-"], ["1993", "Poetic Justice", "Iesha", "-"], ["1995", "Higher Learning", "Monet", "-"], ["1995", "Friday", "Dana Jones", "-"], ["1996", "A Thin Line Between Love and Hate", "Mia Williams", "-"], ["1996", "Jerry Maguire", "Marcee Tidwell", "-"], ["1998", "Rituals", "N/A", "Short film"], ["1998", "How Stella Got Her Groove Back", "Vanessa", "-"], ["1998", "Enemy of the State", "Carla Dean", "-"], ["1998", "Mighty Joe Young", "Cecily Banks", "-"], ["1999", "Love and Action in Chicago", "Lois Newton", "-"], ["2001", "Down to Earth", "Sontee Jenkins", "-"], ["2002", "Truth Be Told", "Rayne", "-"], ["2003", "Daddy Day Care", "Kim Hinton", "-"], ["2003", "Legally Blonde 2: Red, White & Blonde", "Grace Rossiter", "-"], ["2004", "A Cinderella Story", "Rhonda", "-"], ["2004", "Ray", "Margie Hendricks", "-"], ["2005", "Miss Congeniality 2: Armed and Fabulous", "Sam Fuller", "-"], ["2006", "The Ant Bully", "Kreela (voice)", "-"], ["2007", "Year of the Dog", "Layla", "-"], ["2007", "This Christmas", "Lisa Whitfield-Moore", "-"], ["2010", "Our Family Wedding", "Angela", "-"], ["2013", "Let the Church Say Amen", "Director", "-"], ["2014", "Planes: Fire & Rescue", "Dynamite (voice)", "-"], ["2018", "If Beale Street Could Talk", "Sharon Rivers", "Academy Award for Best Supporting Actress Golden Globe Award for Best Supporting Actress \u2013 Motion Picture Critics' Choice Movie Award for Best Supporting Actress"], ["1992", "Juice", "Q", "-"], ["1994", "Above the Rim", "Shep", "-"], ["1999", "The Wood", "Alicia", "-"], ["2000", "Love & Basketball", "Sydney", "-"], ["2006", "Idlewild", "Angel Davenport", "-"], ["2007", "The Perfect Holiday", "Nancy", "-"], ["2011", "Jumping the Broom", "Blythe", "-"], ["2013", "Baggage Claim", "Gail Best", "-"], ["2015", "Blackbird", "Claire Rousseau", "-"], ["2019", "Someone Great", "Jenny Young", "-"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Title", "Role", "Notes"], "add_description": "The name of this table is Actress Filmography, and the headers of this table are Year,Title,Role,Notes.", "source": "fetaqa", "answer_md5": "[('8ae1030b46da1399413d3c2a426288ac',)]"} +{"description": "Change the 'School/Club Team' of Kyle Lowry in 'Toronto Raptors Players' to 'Cardinal Dougherty HS'.", "label": ["UPDATE `Toronto Raptors Players` SET `School/Club Team` = 'Cardinal Dougherty HS' WHERE Player = 'Kyle Lowry'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Toronto Raptors Players", "table_info": {"columns": [{"name": "Player", "type": "TEXT"}, {"name": "No.", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Years in Toronto", "type": "TEXT"}, {"name": "School/Club Team", "type": "TEXT"}], "rows": [["Jarrett Jack", "1", "United States", "Guard", "2009-10", "Georgia Tech"], ["Jermaine Jackson", "8", "United States", "Guard", "2002-03", "Detroit"], ["Luke Jackson", "6", "United States", "Guard-Forward", "2007", "Oregon"], ["Mark Jackson", "13", "United States", "Guard", "2000-01", "St. John's"], ["Mike James", "13", "United States", "Guard", "2005-06", "Duquesne"], ["Nathan Jawai", "21", "Australia", "Forward-Center", "2009", "Midland College"], ["Chris Jefferies", "1, 32", "United States", "Forward", "2002-03", "Fresno State"], ["Amir Johnson", "15", "United States", "Forward-Center", "2009-present", "Westchester High School"], ["James Johnson", "0, 2", "United States", "Forward", "2011-2012", "Wake Forest"], ["Linton Johnson", "13", "United States", "Forward", "2008", "Tulane"], ["Trey Johnson", "12", "United States", "Guard", "2011", "Jackson State"], ["Fred Jones", "20", "United States", "Guard", "2006-07", "Oregon"], ["Popeye Jones", "54", "United States", "Forward", "1996-98", "Murray State"], ["Kawhi Leonard", "2", "United States", "Small Forward", "2018-present", "San Diego State"], ["Pascal Siakam", "43", "Cameroon", "Power Forward", "2016-present", "New Mexico State"], ["Kyle Lowry", "7", "United States", "Point Guard", "2012-present", "Villanova"], ["DeMar DeRozan", "10", "United States", "Shooting Guard", "2009-2018", "USC"], ["Jonas Valanciunas", "17", "Lithuania", "Center", "2012-2019", "Lietuvos Rytas"], ["Danny Green", "14", "United States", "Shooting Guard", "2018-2019", "North Carolina"], ["Serge Ibaka", "9", "Congo", "Power Forward-Center", "2017-present", "Ricoh Manresa"], ["Norman Powell", "24", "United States", "Shooting Guard", "2015-present", "UCLA"], ["Patrick McCaw", "1", "United States", "Shooting Guard", "2019-present", "UNLV"], ["Marc Gasol", "33", "Spain", "Center", "2019-present", "FC Barcelona"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Player", "No.", "Nationality", "Position", "Years in Toronto", "School/Club Team"], "add_description": "The name of this table is Toronto Raptors Players, and the headers of this table are Player,No.,Nationality,Position,Years in Toronto,School/Club Team.", "source": "wikisql", "answer_md5": "[('36b0750fed36fbfdf6e2ccdb04a8cb86',)]"} +{"description": "Update the fastest lap in the Australian Formula 3 Championship 2008 standings to James Winslow for Round 10, Race 1.", "label": ["UPDATE `Australian Formula 3 Championship 2008 standings` SET `Fastest Lap`='James Winslow' WHERE `Round`='10' AND `Race`='1'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Australian Formula 3 Championship 2008 standings", "table_info": {"columns": [{"name": "Round", "type": "TEXT"}, {"name": "Race", "type": "TEXT"}, {"name": "Circuit", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Pole Position", "type": "TEXT"}, {"name": "Fastest Lap", "type": "TEXT"}, {"name": "Winning driver", "type": "TEXT"}, {"name": "Winning team", "type": "TEXT"}], "rows": [["1", "1", "Eastern Creek Raceway", "3 February", "Leanne Tander", "Neil McFadyen", "Nathan Caratti", "Team BRM"], ["1", "2", "Eastern Creek Raceway", "3 February", "Nathan Caratti", "race cancelled by heavy rain", "race cancelled by heavy rain", "race cancelled by heavy rain"], ["2", "1", "Adelaide Street Circuit", "24 February", "Neil McFadyen", "Earl Bamber", "Neil McFadyen", "Piccola Scuderia Corse"], ["2", "2", "Adelaide Street Circuit", "24 February", "Neil McFadyen", "Ben Clucas", "Ben Clucas", "Team BRM"], ["3", "1", "Oran Park Raceway", "27 April", "Neil McFadyen", "Leanne Tander", "Leanne Tander", "Tandersport"], ["3", "2", "Oran Park Raceway", "27 April", "Neil McFadyen", "Nathan Caratti", "James Winslow", "Astuti Motorsport"], ["4", "1", "Mallala Motor Sport Park", "18 May", "Leanne Tander", "Nathan Caratti", "Leanne Tander", "Tandersport"], ["4", "2", "Mallala Motor Sport Park", "18 May", "Neil McFadyen", "Leanne Tander", "Nathan Caratti", "Team BRM"], ["5", "1", "Phillip Island", "15 June", "Leanne Tander", "Mat Sofi", "Nathan Caratti", "Team BRM"], ["5", "2", "Phillip Island", "15 June", "James Winslow", "Leanne Tander", "James Winslow", "Team BRM"], ["6", "1", "Eastern Creek Raceway", "13 July", "Nathan Caratti", "James Winslow", "Leanne Tander", "Tandersport"], ["6", "2", "Eastern Creek Raceway", "13 July", "Nathan Caratti", "Nathan Caratti", "James Winslow", "Team BRM"], ["7", "1", "Phillip Island", "10 August", "Leanne Tander", "James Winslow", "James Winslow", "Team BRM"], ["7", "2", "Phillip Island", "10 August", "James Winslow", "James Winslow", "Leanne Tander", "Tandersport"], ["8", "1", "Symmons Plains Raceway", "21 September", "Mathew Radisich", "James Winslow", "James Winslow", "Team BRM"], ["8", "2", "Tasmanian Super Prix", "21 September", "James Winslow", "Nathan Caratti", "Leanne Tander", "Tandersport"], ["NC", "1", "Indy F3 Challenge", "23 October", "John Martin", "John Martin", "John Martin", "Piccola Scuderia Corse"], ["NC", "2", "Indy F3 Challenge", "24 October", "progressive grid", "John Martin", "John Martin", "Piccola Scuderia Corse"], ["9", "1", "Mallala Motor Sport Park", "12 October", "Leanne Tander", "Nathan Caratti", "Leanne Tander", "Tandersport"], ["9", "2", "Mallala Motor Sport Park", "12 October", "James Winslow", "Leanne Tander", "James Winslow", "Team BRM"], ["10", "1", "Oran Park Raceway", "16 November", "Thomas Randle", "Cameron Waters", "Thomas Randle", "Mark McVeigh Racing"], ["10", "2", "Oran Park Raceway", "16 November", "Cameron Waters", "Cameron Waters", "James Winslow", "Team BRM"], ["11", "1", "Phillip Island", "7 December", "John Martin", "Ed Jones", "Ed Jones", "Fortec Motorsport"], ["11", "2", "Phillip Island", "7 December", "Jack Doohan", "Thomas Randle", "Thomas Randle", "Mark McVeigh Racing"], ["12", "1", "Bathurst Street Circuit", "18 January", "Jack Doohan", "Jack Doohan", "Jack Doohan", "Fortec Motorsport"], ["12", "2", "Bathurst Street Circuit", "18 January", "Thomas Randle", "Cameron Waters", "Cameron Waters", "Mark McVeigh Racing"], ["13", "1", "Barbagallo Raceway", "6 February", "Ed Jones", "Ed Jones", "Ed Jones", "Fortec Motorsport"], ["13", "2", "Barbagallo Raceway", "6 February", "Jack Doohan", "Thomas Randle", "Jack Doohan", "Team BRM"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Round", "Race", "Circuit", "Date", "Pole Position", "Fastest Lap", "Winning driver", "Winning team"], "add_description": "The name of this table is Australian Formula 3 Championship 2008 standings, and the headers of this table are Round,Race,Circuit,Date,Pole Position,Fastest Lap,Winning driver,Winning team.", "source": "wikisql", "answer_md5": "[('199c53dba2f4f45afc3184581f627422',)]"} +{"description": "Change the Latin name field to 'Berat\u00ebnsis' for 'Berat' in the Ecclesiastical Jurisdiction Table.", "label": ["UPDATE `Ecclesiastical Jurisdiction Table` SET `Latin name` = 'Berat\u00ebnsis' WHERE `Ecclesiastical Jurisdictions` = 'Berat'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Ecclesiastical Jurisdiction Table", "table_info": {"columns": [{"name": "Ecclesiastical Jurisdictions", "type": "TEXT"}, {"name": "Latin name", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}, {"name": "Rite", "type": "TEXT"}, {"name": "Ecclesiastical Province", "type": "TEXT"}, {"name": "Area (km 2 )", "type": "TEXT"}], "rows": [["Lezh\u00eb", "Alexiensis", "Diocese", "Roman", "Shkod\u00ebr\u2013Pult", "750"], ["Rr\u00ebshen", "Rr\u00ebsheniensis", "Diocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "3,463"], ["Sap\u00eb", "Sappensis", "Diocese", "Roman", "Shkod\u00ebr\u2013Pult", "2,544"], ["Shkod\u00ebr\u2013Pult", "Scodrensis\u2013Pulatensis", "Metropolitan Archdiocese", "Roman", "Shkod\u00ebr\u2013Pult", "2,363"], ["Southern Albania", "Albaniae Meridionalis", "Apostolic Administration", "Albanian", "Tiran\u00eb\u2013Durr\u00ebs", "16,172"], ["Tiran\u00eb\u2013Durr\u00ebs", "Tiranensis\u2013Dyrracenus", "Metropolitan Archdiocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "2,263"], ["Bulqiz\u00eb", "Bulqizenis", "Diocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "1,239"], ["Berat", "Beratensis", "Diocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "2,456"], ["Kruj\u00eb", "Croiensis", "Diocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "1,086"], ["Kuk\u00ebs", "Chonae", "Diocese", "Roman", "Shkod\u00ebr\u2013Pult", "1,672"], ["Fier", "Fieriensis", "Diocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "2,973"], ["Gjirokast\u00ebr", "Argirocastrensis", "Diocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "3,187"], ["Kam\u00ebz", "Camesiensis", "Diocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "703"], ["Librazhd", "Libertinensis", "Diocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "1,289"], ["Elbasan", "Scampensis", "Metropolitan Archdiocese", "Roman", "Tiran\u00eb\u2013Durr\u00ebs", "3,189"], ["Northern Albania", "Albaniae Septentrionalis", "Apostolic Administration", "Albanian", "Shkod\u00ebr\u2013Pult", "12,441"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Ecclesiastical Jurisdictions", "Latin name", "Type", "Rite", "Ecclesiastical Province", "Area (km 2 )"], "add_description": "The name of this table is Ecclesiastical Jurisdiction Table, and the headers of this table are Ecclesiastical Jurisdictions,Latin name,Type,Rite,Ecclesiastical Province,Area (km 2 ).", "source": "wikisql", "answer_md5": "[('25360d1d1954b5436a9aca768652213c',)]"} +{"description": "Update the points to 18 in the Formula One Results table where the year is 2010 and the entrant is Red Bull Racing.", "label": ["UPDATE `Formula One Results` SET `Points`='18' WHERE `Year`='2010' AND `Entrant`='Red Bull Racing'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Formula One Results", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Entrant", "type": "TEXT"}, {"name": "Chassis", "type": "TEXT"}, {"name": "Engine", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["1997", "Mild Seven Benetton Renault", "Benetton B197", "Renault RS9 3.0 V10", "4"], ["1998", "Mild Seven Benetton Playlife", "Benetton B198", "Playlife GC37-01 3.0 V10", "17"], ["1999", "Mild Seven Benetton Playlife", "Benetton B199", "Playlife FB01 3.0 V10", "3"], ["2000", "Mild Seven Benetton Playlife", "Benetton B200", "Playlife FB02 3.0 V10", "2"], ["2005", "Team McLaren Mercedes", "McLaren MP4-20", "Mercedes FO 110R 3.0 V10", "6"], ["2006", "WilliamsF1 Team", "Williams FW28", "Cosworth CA2006 2.4 V8 4 Series", "\u2013"], ["2007", "AT&T Williams", "Williams FW29", "Toyota RVX-07 2.4 V8", "13"], ["2001", "West McLaren Mercedes", "McLaren MP4-16", "Mercedes FO 110J 3.0 V10", "20"], ["2002", "Scuderia Ferrari Marlboro", "Ferrari F2002", "Ferrari 051 3.0 V10", "32"], ["2003", "Mild Seven Renault F1 Team", "Renault R23", "Renault RS23 3.0 V10", "11"], ["2004", "Scuderia Ferrari Marlboro", "Ferrari F2004", "Ferrari 053 3.0 V10", "15"], ["2008", "Scuderia Toro Rosso", "Toro Rosso STR3", "Ferrari 056 2.4 V8", "9"], ["2009", "Brawn GP Formula One Team", "Brawn BGP 001", "Mercedes FO 108W 2.4 V8", "20"], ["2010", "Red Bull Racing", "Red Bull RB6", "Renault RS27-2010 2.4 V8", "15"], ["2011", "Red Bull Racing", "Red Bull RB7", "Renault RS27-2011 2.4 V8", "30"], ["2012", "Red Bull Racing", "Red Bull RB8", "Renault RS27-2012 2.4 V8", "25"], ["2013", "Infiniti Red Bull Racing", "Red Bull RB9", "Renault Energy F1-2013 1.6 V6 turbo", "33"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Entrant", "Chassis", "Engine", "Points"], "add_description": "The name of this table is Formula One Results, and the headers of this table are Year,Entrant,Chassis,Engine,Points.", "source": "wikisql", "answer_md5": "[('88ce7eaacda0d4447797db74b985b311',)]"} +{"description": "The Olympic Kayaking Medal Winners for the K-4 500 m event were updated with Hungary's gold medalist team Danuta Kozak and Ida Rapi, who completed the race in 3 minutes and 27.101 seconds. The silver medal was won by New Zealand's Lisa Carrington and Caitlin Ryan, also finishing in 3:27.101. Poland's team consisting of Karolina Naja, Magdalena Lobnig, Maria Garbowska, and Beata Mikolajczyk took home the bronze medal, with a finishing time of 3:27.101.", "label": ["UPDATE `Olympic Kayaking Medal Winners` SET `Gold`='Hungary Danuta Kozak Ida Rapi', `Time`='3:27.101', `Silver`='New Zealand Lisa Carrington Caitlin Ryan', `Time.1`='3:27.101', `Bronze` = 'Poland Karolina Naja Magdalena Lobnig Maria Garbowska Beata Mikolajczyk', `Time.2`='3:27.101' WHERE `Event`='K-4 500 m';"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Olympic Kayaking Medal Winners", "table_info": {"columns": [{"name": "Event", "type": "text"}, {"name": "Gold", "type": "text"}, {"name": "Time", "type": "numeric"}, {"name": "Silver", "type": "text"}, {"name": "Time.1", "type": "numeric"}, {"name": "Bronze", "type": "text"}, {"name": "Time.2", "type": "numeric"}], "rows": [["K-1 200 m", "Lisa Carrington (NZL)", "40.670", "Marta Walczykiewicz (POL)", "40.670", "Inna Osypenko-Radomska (UK", "40.670"], ["K-1 500 m", "Nicole Reinhardt (GER)", "1:48.668", "Danuta Kozak (HUN)", "1:48.668", "Inna Osypenko-Radomska (UK", "1:48.668"], ["K-1 1000 m", "Tamara Csipes (HUN)", "4:14.124", "Krisztina Fazekas Zur (USA)", "4:14.124", "Naomi Flood (AUS)", "4:14.124"], ["K-1 5000 m", "Tamara Csipes (HUN)", "22:37.294", "Lani Belcher (GBR)", "22:37.294", "Maryna Paltaran (BLR)", "22:37.294"], ["K-2 200 m", "Hungary Katalin Kovacs Danuta Kozak", "38.369", "Poland Karolina Naja Magdalena Krukowska", "38.369", "Australia Joanne Brigden-Jones Hannah Davis", "38.369"], ["K-2 500 m", "Austria Yvonne Schuring Viktoria Schwarz", "1:37.803", "Germany Franziska Weber Tina Dietze", "1:37.803", "Poland Beata Mikolajczyk Aneta Konie", "1:37.803"], ["K-2 1000 m", "Germany Anne Knorr Debora Niche", "3:53.416", "Bulgaria Berenike Faldum Daniela Nedeva", "3:53.416", "Hungary Aliz Sarudi Erika Medveczky", "3:53.416"], ["K-4 500 m", "Hungary Gabriella Szabo Danuta Kozak Katalin", "1:37.887", "Germany Carolin Leonhardt Silke Hormann Franziska Weber", "1:37.887", "Belarus Iryna Pamialova Nadzeya", "1:37.887"], ["K-1 4x200 m Relay", "Germany Nicole Reinhardt Conny Wassmuth Tina Diet", "2:50.951", "Russia Natalia Lobova Anastasiya Sergeeva Natalia", "2:50.951", "Poland Marta Walczykiewicz Karolina Naja A", "2:50.951"], ["K-1 200 m", "Anna Satila (FIN)", "41.280", "Sabine Fessler (AUT)", "41.280", "Hannah Burgess (GBR)", "41.280"], ["K-1 500 m", "Emma Aastrand Jorgensen (DEN)", "1:49.105", "Bridgitte Hartley (RSA)", "1:49.105", "Nicole Vernon (CAN)", "1:49.105"], ["K-1 1000 m", "Angela Hannah (AUS)", "4:18.768", "Jana Dukatova (SVK)", "4:18.768", "Sara Guyot (FRA)", "4:18.768"], ["K-1 5000 m", "Nuria Villarrubla (ESP)", "22:57.982", "Bridgette Hartley (RSA)", "22:57.982", "Cheryl Smith (NZL)", "22:57.982"], ["K-2 200 m", "Germany Franziska Weber Anne Knorr", "38.938", "Latvia Lija Gedvila Ginta Puce", "38.938", "Spain Isabel Contreras Maria Corbera", "38.938"], ["K-2 500 m", "Slovakia Jana Dukatova Ivana Kmetova", "1:39.674", "Portugal Joana Vasconcelos Teresa Portela", "1:39.674", "Lithuania Gintare Scheidt Akvile Zilionyte", "1:39.674"], ["K-2 1000 m", "Spain Isabel Contreras Maria Corbera", "3:55.656", "Russia Natalia Podolskaya Anastasia Dolgova", "3:55.656", "Finland Pia Hagg Lotta Nieminen", "3:55.656"], ["K-4 500 m", "France Sarah Guyot Manon Hostens Sarah Troel", "1:38.231", "Denmark Henriette Hansen Anne Lolk Thomsen I", "1:38.231", "Slovakia Katarina Macova Aneta Koniarova Maria", "1:38.231"], ["K-1 4x200 m Relay", "Hungary Dora Bodonyi Vanda Kiszli Noemi Pupp", "2:52.129", "Italy Marta Bertoncelli Valeria Tarallo Anna", "2:52.129", "Australia Alyce Burnett Jo Brigden-Jones Jaime", "2:52.129"], ["C-1 200 m", "Liudmyla Luzan (UKR)", "46.305", "Elena Aniushina (UZB)", "46.305", "Andreanne Langlois (CAN)", "46.305"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Event", "Gold", "Time", "Silver", "Time.1", "Bronze", "Time.2"], "add_description": "The name of this table is Olympic Kayaking Medal Winners, and the headers of this table are Event,Gold,Time,Silver,Time.1,Bronze,Time.2.", "source": "sqa", "answer_md5": "[('da4b6129680e9d27b983680c741f9551',)]"} +{"description": "Update the record of 'Awards and Honours' with the details of the 'Presidential Medal of Freedom' awarded by 'The President of the United States of America' in '2020', where the award was previously given in '2018'.", "label": ["UPDATE `Awards and Honours` SET `Year of award or honour`='2020', `Name of award or honour`='Presidential Medal of Freedom', `Awarding organisation`='The President of the United States of America' WHERE `Year of award or honour`='2018'"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "Awards and Honours", "table_info": {"columns": [{"name": "Year of award or honour", "type": "TEXT"}, {"name": "Name of award or honour", "type": "TEXT"}, {"name": "Awarding organisation", "type": "TEXT"}], "rows": [["2014", "Honorary professor", "Beijing University, China"], ["2014", "Doctor of Science", "Edinburgh University, UK"], ["2013", "Von Braun Award", "National Space Society"], ["2012", "Doctor of Laws (Honoris Causa)", "Simon Fraser University"], ["2011", "IEEE Honorary Membership", "IEEE"], ["2010", "Doctor of Engineering", "University of Waterloo"], ["2009", "Honorary Doctorate", "Oakland University"], ["2009", "Hoover Medal", "ASME Foundation, USA"], ["2009", "International von K\u00e1rm\u00e1n Wings Award", "California Institute of Technology, USA"], ["2008", "Doctor of Engineering (Honoris Causa)", "Nanyang Technological University, Singapore"], ["2008", "Doctor of Science (Honoris Causa)", "Aligarh Muslim University, Aligarh"], ["2007", "Honorary Doctorate of Science and Technology", "Carnegie Mellon University"], ["2007", "King Charles II Medal", "Royal Society, UK"], ["2007", "Honorary Doctorate of Science", "University of Wolverhampton, UK"], ["2000", "Ramanujan Award", "Alwars Research Centre, Chennai"], ["1998", "Veer Savarkar Award", "Government of India"], ["1997", "Indira Gandhi Award for National Integration", "Indian National Congress"], ["1997", "Bharat Ratna", "Government of India"], ["1995", "Honorary Fellow", "National Academy of Medical Sciences,"], ["1994", "Distinguished Fellow", "Institute of Directors (India)"], ["1990", "Padma Vibhushan", "Government of India"], ["1981", "Padma Bhushan", "Government of India"], ["2021", "Lifetime Achievement Award", "American Society of Mechanical Engineers"], ["2020", "IEEE Founders Medal", "Institute of Electrical and Electronics Engineers"], ["2019", "Outstanding Achievement Award", "Association for Computing Machinery"], ["2018", "Honorary Doctorate of Science", "University of Oxford, UK"], ["2017", "Doctor of Engineering (Honoris Causa)", "Hong Kong Polytechnic University"], ["2016", "IEEE Medal of Honor", "IEEE"], ["2015", "Honorary Doctorate of Humane Letters", "University of Chicago"], ["2014", "Prince Mahidol Award", "Mahidol University, Thailand"], ["2013", "Erasmus Medal", "Erasmus University Rotterdam"], ["2012", "Global Energy Prize", "Russian Academy of Sciences"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year of award or honour", "Name of award or honour", "Awarding organisation"], "add_description": "The name of this table is Awards and Honours, and the headers of this table are Year of award or honour,Name of award or honour,Awarding organisation.", "source": "fetaqa", "answer_md5": "[('f086e1f1537e18202aecf7a90d04255b',)]"} +{"description": "Change operation area to Sabratha field for BP in Oil Companies Operations.", "label": ["UPDATE `Oil Companies Operations` SET `Area of Operation`='Sabratha field' WHERE Client='BP'"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Oil Companies Operations", "table_info": {"columns": [{"name": "Client", "type": "TEXT"}, {"name": "Years of Operation", "type": "TEXT"}, {"name": "Area of Operation", "type": "TEXT"}, {"name": "Country", "type": "TEXT"}, {"name": "Services", "type": "TEXT"}], "rows": [["Agoco", "1991-current", "Sarir field", "Libya", "Drilling, workover"], ["Lasmo", "1993-94", "Wadi Borjuj", "Libya", "Drilling, workover"], ["Waha", "1994", "El Zahra", "Libya", "Drilling, workover"], ["IPC-Dublin", "1997-97", "Kilwa", "Tanzania", "Drilling"], ["OMV", "1997", "Field 103", "Libya", "Drilling, workover"], ["Fina", "1997", "El Hamada", "Libya", "Drilling, workover"], ["Marathon", "1998", "Manzala field", "Egypt", "Drilling"], ["Khalda/Repsol", "1998-99", "West Desert", "Egypt", "Drilling"], ["Total", "1999-current", "El Mabrouk", "Libya", "Drilling"], ["Agiba-Agip", "1999", "West Desert", "Egypt", "Drilling"], ["IPLL", "1999-current", "El Naka field", "Libya", "Drilling"], ["SOC", "2000-current", "SOC fields", "Libya", "Drilling"], ["Veba", "2000", "Different fields", "Libya", "Drilling, workover"], ["Perenco Oil Co.", "2000-01", "EchiraX Concession", "Gabon", "Drilling"], ["Zueitina", "2001-current", "Field 103", "Libya", "Drilling, workover"], ["ExxonMobil", "2001-current", "Offshore Gulf", "USA", "Exploration, production"], ["CNPC", "2005-07", "Daqing field", "China", "Drilling, workover"], ["Chevron", "1998-current", "Kern River field", "USA", "Production"], ["RIL", "2010", "KG D6", "India", "Drilling, workover"], ["Shell", "2004-06", "Gannet field", "UK", "Production"], ["Petrobras", "2003-current", "Lula field", "Brazil", "Exploration, production"], ["Sinopec", "2011", "Yubei field", "China", "Drilling"], ["BP", "2008-10", "Thunder Horse field", "USA", "Production"], ["Repsol", "2006-08", "Talisman field", "Spain", "Drilling, workover"], ["Eni", "2002-current", "Belayim field", "Egypt", "Exploration, production"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Client", "Years of Operation", "Area of Operation", "Country", "Services"], "add_description": "The name of this table is Oil Companies Operations, and the headers of this table are Client,Years of Operation,Area of Operation,Country,Services.", "source": "sqa", "answer_md5": "[('f8b8928ac9d2323decdeec803569c93b',)]"} +{"description": "Update the Grand Prix racing results with the following information: Driver Charles Leclerc, Entrant Scuderia Ferrari Mission Winnow, Chassis SF21, and Engine Ferrari 065/6 for the record with No. 16.", "label": ["UPDATE `Grand Prix racing results` SET `Driver` = 'Charles Leclerc', `Entrant` = 'Scuderia Ferrari Mission Winnow', `Chassis` = 'SF21', `Engine` = 'Ferrari 065/6' WHERE `No` = 16;"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "Grand Prix racing results", "table_info": {"columns": [{"name": "No", "type": "INTEGER"}, {"name": "Driver", "type": "TEXT"}, {"name": "Entrant", "type": "TEXT"}, {"name": "Constructor", "type": "TEXT"}, {"name": "Chassis", "type": "TEXT"}, {"name": "Engine", "type": "TEXT"}], "rows": [["2", "Luigi Arcangeli", "Officine Alfieri Maserati", "Maserati", "Maserati 26M", "2.5 L8"], ["4", "Louis Chiron", "Automobiles Ettore Bugatti", "Bugatti", "Bugatti T35B", "2.3 L8"], ["6", "Clemente Biondetti", "Scuderia Materassi", "Talbot", "Talbot 700", "1.5 L8"], ["8", "Pietro Nicolotti", "Private entry", "Alfa Romeo", "Alfa Romeo 6C 1500", "1.5 L6"], ["10", "Cleto Nenzioni", "Private entry", "Maserati", "Maserati 26B", "2.1 L8"], ["12", "Luigi Fagioli", "Officine Alfieri Maserati", "Maserati", "Maserati 26", "1.7 L8"], ["14", "Fritz Caflisch", "Private entry", "Mercedes-Benz", "Mercedes-Benz SS", "7.1 L6"], ["16", "Achille Varzi", "SA Alfa Romeo", "Alfa Romeo", "Alfa Romeo P2", "2.0 L8"], ["18", "Giuseppe Campari", "Scuderia Ferrari", "Alfa Romeo", "Alfa Romeo 6C 1750GS", "1.8 L6"], ["20", "Arrigo Sartorio", "Private entry", "Maserati", "Maserati 26", "1.5 L8"], ["22", "Mario Tadini", "Scuderia Ferrari", "Alfa Romeo", "Alfa Romeo 6C 1750GS", "1.8 L6"], ["24", "Heinrich Joachim von Morgen", "Private entry", "Bugatti", "Bugatti T35B", "2.3 L8"], ["26", "Emil Frankl", "Private entry", "Steyr", "Steyr 4.5 Liter", "4.5 L6"], ["28", "Tazio Nuvolari", "SA Alfa Romeo", "Alfa Romeo", "Alfa Romeo P2", "2.0 L8"], ["30", "Guy Bouriat", "Automobiles Ettore Bugatti", "Bugatti", "Bugatti T35B", "2.3 L8"], ["32", "Cesare Renzi", "Private entry", "Bugatti", "Bugatti T37A", "1.5 L8"], ["34", "Cesare Pastore", "Private entry", "Maserati", "Maserati 26B", "2.1 L8"], ["36", "Colonna de Stigliano", "Private entry", "Alfa Romeo", "Alfa Romeo 6C 1750", "1.8 L6"], ["?", "Filippo Sartorio", "Enrico or F. Sartorio", "Alfa Romeo", "Alfa Romeo 6C 1750", "1.5 L6"], ["?", "Arrigo Nenzioni", "A. or E. Nenzioni", "Maserati", "Maserati 26", "1.5 L8"], ["?", "William Grover-Williams", "Automobiles Ettore Bugatti", "Bugatti", "Bugatti T35B", "2.3 L8"], ["?", "?", "Scuderia Ferrari", "Alfa Romeo", "Alfa Romeo P2", "2.0 L8"], ["?", "?", "Scuderia Ferrari", "Alfa Romeo", "Alfa Romeo 6C 1500", "1.5 L6"], ["38", "Angelo Baccaredda", "Private entry", "Maserati", "Maserati 6CM", "1.5 L6"], ["40", "Goffredo Zehender", "Auto Union", "Auto Union", "Auto Union Type C", "4.5 V16"], ["42", "Philippe \u00c9tancelin", "Private entry", "Bugatti", "Bugatti T51", "2.3 L8"], ["44", "Rudolf Caracciola", "Mercedes-Benz", "Mercedes-Benz", "Mercedes-Benz W25", "4.3 L8"], ["46", "Bernd Rosemeyer", "Auto Union", "Auto Union", "Auto Union Type D", "6.0 V16"], ["48", "Raymond Sommer", "Private entry", "Alfa Romeo", "Alfa Romeo 8C 2300", "2.3 L8"], ["50", "Jean-Pierre Wimille", "Bugatti", "Bugatti", "Bugatti Type 59", "3.3 L8"], ["52", "Hermann Lang", "Mercedes-Benz", "Mercedes-Benz", "Mercedes-Benz W125", "5.7 L8"], ["54", "Renato Balestrero", "Private entry", "Maserati", "Maserati 4CM", "1.5 L4"], ["56", "Louis Trintignant", "Private entry", "Bugatti", "Bugatti T35C", "2.0 L8"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["No", "Driver", "Entrant", "Constructor", "Chassis", "Engine"], "add_description": "The name of this table is Grand Prix racing results, and the headers of this table are No,Driver,Entrant,Constructor,Chassis,Engine.", "source": "wikitq", "answer_md5": "[('0457bca85c548a400542d3b14cb2ccb6',)]"} +{"description": "Change the date and sculptor of the 'Commemorative Sculptures' titled 'Mahatma Gandhi' to '1948' and 'Unknown' respectively.", "label": ["UPDATE `Commemorative Sculptures` SET `Date` = '1948', `Sculptor` = 'Unknown' WHERE `Title / individual commemorated` = 'Mahatma Gandhi'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Commemorative Sculptures", "table_info": {"columns": [{"name": "Title / individual commemorated", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Date", "type": "TEXT"}, {"name": "Sculptor", "type": "TEXT"}], "rows": [["Thomas More", "Thomas More Chambers , 51 and 52 Carey Street", "1886", "Robert Smith"], ["Edward I of England", "Kingsgate House , High Holborn", "", "Richard Garbe"], ["Edward VII of England", "Kingsgate House , High Holborn", "", "Richard Garbe"], ["John Bunyan", "Southampton Row", "1903", "Richard Garbe"], ["Bust of Charles Dickens", "Holborn Bars , High Holborn", "1907", "Percy Hetherington Fitzgerald"], ["Francis Bacon", "South Square WC1", "1912", "F. W. Pomeroy"], ["Memorial to Margaret MacDonald", "Lincoln 's Inn Fields", "1914", "Richard Reginald Goulden"], ["Memorial to Frederick Smith , 2nd Viscount Hambleden", "Lincoln 's Inn Fields", "1929", "Arthur George Walker"], ["Bust of John Hunter", "Lincoln 's Inn Fields", "1979", "Nigel Boonham"], ["Bust of Bertrand Russell", "Red Lion Square", "1980", "Marcelle Quinton"], ["Camdonian", "Lincoln 's Inn Fields", "1980", "Barry Flanagan"], ["Fenner Brockway", "Red Lion Square WC1", "1985", "Ian Walters"], ["Dolphin", "Between High Holborn and Lincoln 's Inn Fields", "1989", "Anna Richtner Pentney"], ["Canadian Air Force Memorial", "Lincoln 's Inn Fields", "", ""], ["Square the Block", "London School of Economics New Academic Building , corner of Kingsway and Sardinia Street", "2009", "Richard Wilson"], ["Winston Churchill", "Parliament Square", "1973", "Ivor Roberts-Jones"], ["George Washington", "Trafalgar Square", "1921", "John Quincy Adams Ward"], ["Albert Einstein", "The Science Museum", "1985", "Unknown"], ["Queen Victoria", "Buckingham Palace", "1901", "Sir Thomas Brock"], ["William Shakespeare", "The Guildhall", "1890", "Charles Bell Birch"], ["Emmeline Pankhurst", "Victoria Tower Gardens", "1930", "Arthur George Walker"], ["Nelson Mandela", "Parliament Square", "2007", "Ian Walters"], ["Florence Nightingale", "Waterloo Place", "1915", "Arthur George Walker"], ["Mahatma Gandhi", "Tavistock Square", "1998", "Philip Jackson"], ["Sir Isaac Newton", "The British Library", "1988", "Eduardo Paolozzi"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Title / individual commemorated", "Location", "Date", "Sculptor"], "add_description": "The name of this table is Commemorative Sculptures, and the headers of this table are Title / individual commemorated,Location,Date,Sculptor.", "source": "hybridqa", "answer_md5": "[('0951b84bf1c030694600feed8a753918',)]"} +{"description": "Change David Beckham's position to forward and update his MLS experience to 3 years in the MLS Players table.", "label": ["UPDATE `MLS Players` SET `Position`='F', `MLS Exp`='3' WHERE `Name`='David Beckham'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "MLS Players", "table_info": {"columns": [{"name": "Name", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Team", "type": "TEXT"}, {"name": "MLS Exp", "type": "int"}], "rows": [["Carlos Ruiz", "F", "FC Dallas", "3"], ["Eddie Johnson +", "F", "FC Dallas", "4"], ["Landon Donovan", "M", "Los Angeles Galaxy", "4"], ["Clint Dempsey", "M", "New England Revolution", "1"], ["Ronnie O'Brien", "M", "FC Dallas", "3"], ["Amado Guevara +", "M", "MetroStars", "2"], ["Shalrie Joseph", "M", "New England Revolution", "2"], ["Eddie Pope +", "D", "Real Salt Lake", "9"], ["Greg Vanney", "D", "FC Dallas", "6"], ["Jimmy Conrad", "D", "Kansas City Wizards", "6"], ["Matt Reis", "GK", "New England Revolution", "7"], ["Chris Albright", "D", "Los Angeles Galaxy", "6"], ["Scott Garlick", "GK", "FC Dallas", "8"], ["Christian G\u00f3mez", "M", "D.C. United", "1"], ["Frankie Hejduk", "M-D", "Columbus Crew", "5"], ["Pat Noonan +", "F-M", "New England Revolution", "2"], ["Taylor Twellman", "F", "New England Revolution", "3"], ["Simo Valakari", "M", "FC Dallas", "1"], ["Jeff Cunningham #", "F", "Colorado Rapids", "7"], ["Brad Davis #", "M", "San Jose Earthquakes", "3"], ["David Beckham", "M", "Los Angeles Galaxy", "2"], ["Thierry Henry", "F", "New York Red Bulls", "3"], ["Tim Howard", "GK", "Colorado Rapids", "7"], ["Bastian Schweinsteiger", "M", "Chicago Fire", "1"], ["Giovani dos Santos", "F", "Los Angeles Galaxy", "2"], ["Jozy Altidore", "F", "Toronto FC", "3"], ["Michael Bradley", "M", "Toronto FC", "3"], ["Diego Valeri", "M", "Portland Timbers", "3"], ["Matt Besler", "D", "Sporting Kansas City", "8"], ["Dom Dwyer", "F", "Orlando City SC", "4"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Name", "Position", "Team", "MLS Exp"], "add_description": "The name of this table is MLS Players, and the headers of this table are Name,Position,Team,MLS Exp.", "source": "hybridqa", "answer_md5": "[('3ad99e4afe398a7da9da481fef7b99e0',)]"} +{"description": "Change the state of Monogram_Town_State to 'Arizona' where Monogram is 'T'", "label": ["UPDATE Monogram_Town_State SET State = 'Arizona' WHERE Monogram = 'T'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Monogram_Town_State", "table_info": {"columns": [{"name": "Monogram", "type": "TEXT"}, {"name": "Town", "type": "TEXT"}, {"name": "State", "type": "TEXT"}], "rows": [["A", "Fort Collins", "Colorado"], ["B", "Branson", "Colorado"], ["C", "Ca\u00f1on City", "Colorado"], ["D", "Del Norte", "Colorado"], ["D", "Dinosaur", "Colorado"], ["G", "Golden", "Colorado"], ["GV", "Parachute", "Colorado"], ["GM", "Lakewood", "Colorado"], ["G", "Gunnison", "Colorado"], ["H", "Hotchkiss", "Colorado"], ["LV", "La Veta", "Colorado"], ["LHS", "Sopris", "Colorado"], ["L", "Loma", "Colorado"], ["L", "Lyons", "Colorado"], ["M", "Golden", "Colorado"], ["M", "Manassa", "Colorado"], ["P ( uncertain existence )", "Pagosa Springs", "Colorado"], ["P", "Palisade", "Colorado"], ["P", "Paonia", "Colorado"], ["P", "Weston", "Colorado"], ["N", "Nederland", "Colorado"], ["O", "Ouray", "Colorado"], ["S", "Salida", "Colorado"], ["T", "Telluride", "Colorado"], ["W", "Westcliffe", "Colorado"], ["V", "Vail", "Colorado"], ["E", "Estes Park", "Colorado"], ["F", "Frisco", "Colorado"], ["K", "Keystone", "Colorado"], ["R", "Ridgway", "Colorado"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Monogram", "Town", "State"], "add_description": "The name of this table is Monogram_Town_State, and the headers of this table are Monogram,Town,State.", "source": "hybridqa", "answer_md5": "[('a5d93dcef2c929a016cffb804e8da612',)]"} +{"description": "Update the racing career table to set the series to 'Formula Two', races to '2', wins to '1', podiums to '2', points to '45', and final placing to '1st' where the season is '2017'.", "label": ["UPDATE racing_career SET Series = 'Formula Two', Races = '2', Wins = '1', Podiums = '2', Points = '45', `Final Placing` = '1st' WHERE Season = '2017'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "racing_career", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "Series", "type": "TEXT"}, {"name": "Races", "type": "TEXT"}, {"name": "Wins", "type": "TEXT"}, {"name": "Podiums", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}, {"name": "Final Placing", "type": "TEXT"}], "rows": [["2002\u201303", "Formula First New Zealand", "6", "0", "0", "335", "8th"], ["2003\u201304", "Formula Ford New Zealand", "18", "6", "9", "239", "2nd"], ["2005", "Toyota Racing Series New Zealand", "15", "3", "7", "807", "3rd"], ["2005\u201306", "Toyota Racing Series New Zealand", "12", "1", "8", "711", "8th"], ["2006", "Formula Renault 2.0 NEC", "14", "0", "1", "151", "10th"], ["2006", "Eurocup Formula Renault 2.0", "14", "0", "0", "21", "13th"], ["2006\u201307", "Toyota Racing Series New Zealand", "1", "0", "0", "0", "NC"], ["2007", "Eurocup Formula Renault 2.0", "14", "4", "8", "134", "1st"], ["2007", "Formula Renault 2.0 Italia", "14", "1", "5", "236", "3rd"], ["2007", "Masters of Formula 3", "1", "0", "0", "N/A", "4th"], ["2007", "Macau Grand Prix Formula Three", "1", "0", "0", "N/A", "12th"], ["2008", "British F3 Championship", "22", "5", "11", "208", "3rd"], ["2008", "F3 Euroseries", "8", "0", "0", "0", "NC\u2020"], ["2008", "Masters of Formula 3", "1", "0", "0", "N/A", "5th"], ["2008", "Macau Grand Prix Formula Three", "1", "0", "1", "N/A", "3rd"], ["2008", "Formula One", "Test Driver", "Test Driver", "Test Driver", "Test Driver", "Test Driver"], ["2009", "F3 Euroseries", "16", "1", "1", "15", "11th"], ["2009", "Formula Renault 3.5 Series", "13", "0", "1", "26", "15th"], ["2009", "Formula One", "Test and reserve Driver", "Test and reserve Driver", "Test and reserve Driver", "Test and reserve Driver", "Test and reserve Driver"], ["2009", "Macau Grand Prix", "1", "0", "0", "N/A", "NC"], ["2010", "Formula One", "Test and reserve Driver", "Test and reserve Driver", "Test and reserve Driver", "Test and reserve Driver", "Test and reserve Driver"], ["2010", "Formula Renault 3.5 Series", "13", "0", "1", "50", "10th"], ["2010", "GP2 Series", "4", "0", "0", "1", "27th"], ["2011", "Formula Renault 3.5 Series", "16", "0", "3", "95", "7th"], ["2011", "GP2 Series", "4", "0", "0", "4", "19th"], ["2012", "24 Hours of Le Mans", "1", "0", "0", "N/A", "DNF"], ["2012", "GP2 Series", "4", "0", "0", "1", "25th"], ["2012", "Formula One", "Test Driver", "Test Driver", "Test Driver", "Test Driver", "Test Driver"], ["2013", "24 Hours of Le Mans", "1", "0", "0", "N/A", "7th"], ["2013", "Formula One", "Test Driver", "Test Driver", "Test Driver", "Test Driver", "Test Driver"], ["2014", "GP2 Series", "4", "1", "2", "89", "6th"], ["2015", "GP2 Series", "9", "0", "0", "9", "18th"], ["2016", "Formula One", "Test Driver", "Test Driver", "Test Driver", "Test Driver", "Test Driver"], ["2016", "GP2 Series", "11", "0", "0", "7", "13th"], ["2017", "Formula One", "Test Driver", "Test Driver", "Test Driver", "Test Driver", "Test Driver"], ["2017", "24 Hours of Le Mans", "1", "0", "0", "N/A", "13th"], ["2018", "Formula One", "Test Driver", "Test Driver", "Test Driver", "Test Driver", "Test Driver"], ["2018", "FIA World Endurance Championship", "7", "0", "1", "40", "9th"], ["2019", "Formula One", "Test Driver", "Test Driver", "Test Driver", "Test Driver", "Test Driver"], ["2019", "FIA World Endurance Championship", "8", "0", "0", "38", "12th"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Season", "Series", "Races", "Wins", "Podiums", "Points", "Final Placing"], "add_description": "The name of this table is racing_career, and the headers of this table are Season,Series,Races,Wins,Podiums,Points,Final Placing.", "source": "wikisql", "answer_md5": "[('43a2f703c941a810133f81b8076e5ad7',)]"} +{"description": "The voting results for Saskatchewan show that 205000 people voted yes, representing 45.0% of the total votes, and 250000 people voted no, representing 55.0% of the total votes. The database will be updated accordingly with the following statement: UPDATE voting_results SET `Voted Yes` = '205000', `Percent Yes` = '45.0', `Voted No` = '250000', `Percent No` = '55.0' WHERE Jurisdiction = 'Saskatchewan';", "label": ["UPDATE voting_results SET `Voted Yes` = '205000', `Percent Yes` = '45.0', `Voted No` = '250000', `Percent No` = '55.0' WHERE Jurisdiction = 'Saskatchewan';"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "voting_results", "table_info": {"columns": [{"name": "Jurisdiction", "type": "TEXT"}, {"name": "Voted Yes", "type": "TEXT"}, {"name": "Percent Yes", "type": "TEXT"}, {"name": "Voted No", "type": "TEXT"}, {"name": "Percent No", "type": "TEXT"}], "rows": [["Alberta", "483275", "39.8", "731975", "60.2"], ["British Columbia", "525188", "31.8", "1126761", "68.2"], ["Manitoba", "198230", "38.0", "322971", "62.0"], ["New Brunswick", "23010", "61.7", "145096", "38.3"], ["Newfoundland", "133193", "63.1", "77881", "36.9"], ["Northwest Territories", "14750", "61.0", "9416", "39.0"], ["Nova Scotia", "218618", "48.7", "230182", "51.3"], ["Ontario", "2410119", "50.1", "2397665", "49.9"], ["Prince Edward Island", "48687", "74.0", "17124", "26.0"], ["Quebec", "1710117", "43.4", "2232280", "56.6"], ["Saskatchewan", "203361", "44.6", "252459", "55.4"], ["Yukon", "5354", "43.6", "6922", "56.4"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Jurisdiction", "Voted Yes", "Percent Yes", "Voted No", "Percent No"], "add_description": "The name of this table is voting_results, and the headers of this table are Jurisdiction,Voted Yes,Percent Yes,Voted No,Percent No.", "source": "wikisql", "answer_md5": "[('a9d13eaebc6ac190aedfb39c1b17418b',)]"} +{"description": "Set notes to '-' for old films before 2010 in the filmography table.", "label": ["UPDATE filmography SET Notes = '-' WHERE Year < 2010"], "create": {"database": "fetaqa", "init": "fetaqa_init.sql"}, "table": {"table_name": "filmography", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Film", "type": "TEXT"}, {"name": "Role", "type": "TEXT"}, {"name": "Language", "type": "TEXT"}, {"name": "Notes", "type": "TEXT"}], "rows": [["1997", "Kaalia", "Kala", "Hindi", "-"], ["1999", "Minsara Kanna", "Aishwarya", "Tamil", "-"], ["2001", "Kama Sundari", "Sundari", "Hindi", "-"], ["2002", "Meri Partigya", "-", "Hindi", "Special appearance"], ["2004", "Shikaar", "-", "Hindi", "Special appearance"], ["2006", "Men Not Allowed", "Urmila", "Hindi", "-"], ["2006", "Rafta Rafta", "Shilpa", "Hindi", "-"], ["2007", "Undertrial", "Sameena Hussain", "Hindi", "-"], ["2009", "Dekh Bhai Dekh", "-", "Hindi", "-"], ["2003", "Main Prem Ki Diwani Hoon", "Sanjana", "Hindi", "-"], ["2005", "Sarkar", "Avantika", "Hindi", "-"], ["2008", "Singh Is Kinng", "Kareena", "Hindi", "-"], ["2010", "Golmaal 3", "Daboo", "Hindi", "-"], ["2012", "Rowdy Rathore", "Paro", "Hindi", "-"], ["2014", "Haider", "Ghazala Meer", "Hindi", "-"], ["2016", "Neerja", "Neerja Bhanot", "Hindi", "-"], ["2018", "Padmaavat", "Rani Padmavati", "Hindi", "-"], ["2020", "Angrezi Medium", "Naina Kohli", "Hindi", "-"], ["2021", "Takht", "Jahanara Begum", "Hindi", "-"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Film", "Role", "Language", "Notes"], "add_description": "The name of this table is filmography, and the headers of this table are Year,Film,Role,Language,Notes.", "source": "fetaqa", "answer_md5": "[('a61f73d69ec72eb4ceef84aa01da99d0',)]"} +{"description": "Update the points of ESC Kempten II (N) in the standings table to 6.", "label": ["UPDATE standings SET Points='6' WHERE Name='ESC Kempten II (N)'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "standings", "table_info": {"columns": [{"name": "Position", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "Played", "type": "TEXT"}, {"name": "Drawn", "type": "TEXT"}, {"name": "Lost", "type": "TEXT"}, {"name": "Points", "type": "TEXT"}], "rows": [["1", "ESC Kempten (N)", "16", "0", "0", "32"], ["2", "VfL Denklingen", "16", "1", "4", "23"], ["3", "ESV Bad Bayersoien", "16", "2", "5", "20"], ["4", "SV Hohenfurch", "16", "3", "5", "19"], ["5", "SV Apfeldorf", "16", "2", "6", "18"], ["6", "EG Wood Augsburg", "16", "2", "10", "10"], ["7", "1. EC Senden", "16", "1", "11", "9"], ["8", "EC Oberstdorf", "16", "3", "11", "7"], ["9", "ESV Buchloe II (N)", "16", "2", "12", "6"], ["10", "ESC Kempten II (N)", "16", "0", "8", "8"], ["11", "ESV Kaufbeuren", "16", "4", "4", "16"], ["12", "SV Uffing", "16", "1", "10", "5"], ["13", "1. EC Germering", "16", "2", "5", "14"], ["14", "ESV K\u00f6nigsbrunn", "16", "3", "5", "15"], ["15", "EC Kempten (N)", "16", "0", "12", "3"], ["16", "VfL Kaufering", "16", "2", "8", "10"], ["17", "1. EHC M\u00fcnchen", "16", "1", "9", "7"], ["18", "SC Forst", "16", "5", "4", "19"], ["19", "TSV Pei\u00dfenberg", "16", "2", "4", "14"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Position", "Name", "Played", "Drawn", "Lost", "Points"], "add_description": "The name of this table is standings, and the headers of this table are Position,Name,Played,Drawn,Lost,Points.", "source": "wikisql", "answer_md5": "[('250e1d0a737e153c9424e3164bc036a2',)]"} +{"description": "Set the bike as Yamaha YZF-R1 in the race results table where the rider is Chaz Davies.", "label": ["UPDATE Race_Results SET Bike = 'Yamaha YZF-R1' WHERE Rider = 'Chaz Davies';"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Race_Results", "table_info": {"columns": [{"name": "Rider", "type": "TEXT"}, {"name": "Bike", "type": "TEXT"}, {"name": "Laps", "type": "TEXT"}, {"name": "Time", "type": "TEXT"}, {"name": "Grid", "type": "TEXT"}], "rows": [["Noriyuki Haga", "Yamaha YZF-R1", "23", "38:35.353", "4"], ["Max Biaggi", "Suzuki GSX-R1000 K7", "23", "+3.518", "6"], ["Fonsi Nieto", "Kawasaki ZX-10R", "23", "+9.142", "9"], ["Troy Corser", "Yamaha YZF-R1", "23", "+9.257", "3"], ["Troy Bayliss", "Ducati 999 F07", "23", "+12.825", "7"], ["James Toseland", "Honda CBR1000RR", "23", "+19.316", "1"], ["Roberto Rolfo", "Honda CBR1000RR", "23", "+20.994", "11"], ["R\u00e9gis Laconi", "Kawasaki ZX-10R", "23", "+22.452", "8"], ["Michel Fabrizio", "Honda CBR1000RR", "23", "+22.505", "12"], ["Ruben Xaus", "Ducati 999 F06", "23", "+28.352", "10"], ["Karl Muggeridge", "Honda CBR1000RR", "23", "+44.333", "16"], ["Yoann Tiberio", "Honda CBR1000RR", "23", "+48.077", "14"], ["Guillaume Dietrich", "Suzuki GSX-R1000 K6", "23", "+1:23.307", "18"], ["Luca Morelli", "Honda CBR1000RR", "23", "+1:23.826", "19"], ["Dean Ellison", "Ducati 999RS", "23", "+1:37.631", "20"], ["Max Neukirchner", "Suzuki GSX-R1000 K7", "6", "Retirement", "2"], ["Shinichi Nakatomi", "Yamaha YZF-R1", "5", "Retirement", "17"], ["Steve Martin", "Suzuki GSX-R1000 K6", "1", "Retirement", "13"], ["Jakub Smr\u017e", "Ducati 999 F05", "0", "Retirement", "15"], ["Jonathan Rea", "Kawasaki ZX-10R", "23", "38:55.674", "1"], ["Tom Sykes", "BMW S1000RR", "23", "+2.146", "3"], ["Chaz Davies", "Ducati Panigale V4 R", "23", "+4.908", "2"], ["Alex Lowes", "Yamaha YZF-R1", "23", "+10.315", "4"], ["Eugene Laverty", "BMW S1000RR", "23", "+12.223", "5"], ["Michael van der Mark", "Honda CBR1000RR", "23", "+14.961", "6"], ["Leon Haslam", "Kawasaki ZX-10R", "23", "+19.587", "7"], ["Marco Melandri", "Aprilia RSV4 RF", "23", "+21.454", "8"], ["Sandro Cortese", "Yamaha YZF-R1", "23", "+31.056", "9"], ["Lorenzo Savadori", "Aprilia RSV4 RF", "23", "+33.387", "10"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rider", "Bike", "Laps", "Time", "Grid"], "add_description": "The name of this table is Race_Results, and the headers of this table are Rider,Bike,Laps,Time,Grid.", "source": "wikisql", "answer_md5": "[('809c8c7a08117d97163858fa81e20c67',)]"} +{"description": "Change the position of draft picks in round 3 to Defensive Back.", "label": ["UPDATE `Draft Picks` SET `Position` = 'Defensive Back' WHERE `Round` = '3'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Draft Picks", "table_info": {"columns": [{"name": "Pick", "type": "TEXT"}, {"name": "Round", "type": "TEXT"}, {"name": "Player", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "School", "type": "TEXT"}], "rows": [["12", "1", "Regan Upshaw", "Defensive End", "California"], ["22", "1", "Marcus Jones", "Defensive End", "North Carolina"], ["35", "2", "Mike Alstott", "Fullback", "Purdue"], ["71", "3", "Donnie Abraham", "Defensive Back", "ETSU"], ["96", "4", "Jason Odom", "Offensive Tackle", "Florida"], ["104", "4", "Eric Austin", "Defensive Back", "Jackson State"], ["140", "5", "Jason Maniecki", "Defensive Tackle", "Wisconsin"], ["180", "6", "Nilo Silvan", "Wide Receiver", "Tennessee"], ["221", "7", "Reggie Rusk", "Defensive Back", "Kentucky"], ["1", "1", "John Smith", "Quarterback", "Texas"], ["2", "1", "Sam Johnson", "Running Back", "LSU"], ["3", "1", "Mike Williams", "Wide Receiver", "USC"], ["4", "2", "Jake Jackson", "Tight End", "Alabama"], ["5", "2", "Tommy Thompson", "Offensive Guard", "Ohio State"], ["6", "3", "Billy Brown", "Center", "Michigan"], ["7", "3", "Tyler Jones", "Defensive Tackle", "Clemson"], ["8", "4", "Adam Rodriguez", "Defensive End", "Florida State"], ["9", "4", "Chris Davis", "Cornerback", "Auburn"], ["10", "5", "Matt Ryan", "Safety", "Boston College"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Pick", "Round", "Player", "Position", "School"], "add_description": "The name of this table is Draft Picks, and the headers of this table are Pick,Round,Player,Position,School.", "source": "wikisql", "answer_md5": "[('9f0b928a353c1e2c0d8a290f71aecae9',)]"} +{"description": "Update the year of ARIA Music Awards received by Gabriella Cilmi to 2010 in the Awards table.", "label": ["UPDATE Awards SET Year='2010' WHERE Recipient='Gabriella Cilmi' AND Award='ARIA Music Awards'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Awards", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Recipient", "type": "TEXT"}, {"name": "Award", "type": "TEXT"}, {"name": "Category", "type": "TEXT"}, {"name": "Result", "type": "TEXT"}], "rows": [["2008", "Gabriella Cilmi", "ARIA Music Awards", "Best Female Artist", "Won"], ["2008", "Lessons to Be Learned", "ARIA Music Awards", "Best Pop Release", "Won"], ["2008", "Lessons to Be Learned", "ARIA Music Awards", "Breakthrough Artist \u2013 Album", "Won"], ["2008", "\"Sweet About Me\"", "ARIA Music Awards", "Breakthrough Artist \u2013 Single", "Won"], ["2008", "\"Sweet About Me\"", "ARIA Music Awards", "Highest Selling Single", "Won"], ["2008", "\"Sweet About Me\"", "ARIA Music Awards", "Single of the Year", "Won"], ["2008", "Gabriella Cilmi", "Q Awards", "Breakthrough Artist", "Nominated"], ["2008", "Gabriella Cilmi", "MTV Europe Music Awards", "Best New Act", "Shortlisted"], ["2009", "Gabriella Cilmi", "BRIT Awards", "International Female Solo Artist", "Nominated"], ["2009", "Gabriella Cilmi", "Echo Awards", "Best International Newcomer", "Nominated"], ["2009", "Gabriella Cilmi", "Sopot International Song Festival", "Best Performer", "Won"], ["2010", "\"On a Mission\"", "ARIA Music Awards", "Most Popular Australian Single", "Shortlisted"], ["2011", "Adele", "Grammy Awards", "Album of the Year", "Won"], ["2011", "Adele", "Grammy Awards", "Best Pop Vocal Album", "Won"], ["2011", "Adele", "Grammy Awards", "Record of the Year", "Won"], ["2012", "Adele", "BRIT Awards", "British Album of the Year", "Won"], ["2012", "Adele", "BRIT Awards", "British Female Solo Artist", "Won"], ["2014", "Ed Sheeran", "MTV Video Music Awards", "Best Male Video", "Won"], ["2014", "Ed Sheeran", "MTV Europe Music Awards", "Best UK & Ireland Act", "Won"], ["2015", "Taylor Swift", "Billboard Music Awards", "Top Billboard 200 Album", "Won"], ["2015", "Taylor Swift", "iHeartRadio Music Awards", "Song of the Year", "Won"], ["2016", "Justin Bieber", "MTV Europe Music Awards", "Best Canadian Act", "Won"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Recipient", "Award", "Category", "Result"], "add_description": "The name of this table is Awards, and the headers of this table are Year,Recipient,Award,Category,Result.", "source": "wikisql", "answer_md5": "[('9003c2b25559dda93baa5dc125644a14',)]"} +{"description": "Change the year to 2003 for the article related to the 2004 Indian Ocean earthquake and tsunami in the Disasters database.", "label": ["UPDATE Disasters SET Year = '2003' WHERE Article = '2004 Indian Ocean earthquake and tsunami'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Disasters", "table_info": {"columns": [{"name": "Year", "type": "TEXT"}, {"name": "Type", "type": "TEXT"}, {"name": "Fatalities", "type": "INT"}, {"name": "Article", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Comments", "type": "TEXT"}], "rows": [["1857", "Shipwreck", "400", "SS Central America , 1857", "Off the coast of Georgia", "Fatalities estimated"], ["1860", "Accident - shipwreck", "400", "PS Lady Elgin", "Chicago , Illinois", ""], ["1888", "Blizzard", "400", "Great Blizzard of 1888", "Northeastern United States", "Fatalities estimated"], ["1937", "Flood", "385", "Ohio River flood of 1937", "Ohio , Kentucky , Indiana , Illinois", ""], ["1944", "Accident - explosion", "372", "USS Mount Hood", "New Guinea", "Ammunition ship explosion"], ["1907", "Accident - coal mine", "362", "Monongah mining disaster", "Monongah , West Virginia", ""], ["1913", "Flood", "361", "Great Dayton Flood", "Dayton , Ohio", "Flood was created by a series of three winter storms that hit the region in March , 1913"], ["1950", "Blizzard", "353", "Great Appalachian Storm of November 1950", "Eastern United States", ""], ["2011", "Tornado outbreak", "348", "2011 Super Outbreak", "Midwestern United States , Southern United States , Eastern United States", "360 tornadoes , with one of the deadliest in Tuscaloosa and Birmingham , Alabama . 324 tornadic deaths , with another 24 from related weather"], ["1932", "Tornado outbreak", "330", "1932 Deep South tornado outbreak", "Southern United States", "At least 36 tornadoes , including 10 violent ( F4 or F5 ) storms , resulting in 268 deaths in Alabama alone"], ["1930", "Fire ( building )", "322", "Ohio Penitentiary", "Columbus , Ohio", ""], ["1944", "Accident - explosion", "320", "Port Chicago disaster", "Port Chicago , California", "World War II ammunition ignited"], ["1974", "Tornado outbreak", "319", "1974 Super Outbreak", "Ontario , Illinois , Indiana , Michigan , Ohio , Kentucky , Tennessee , Alabama , Mississippi , Georgia , North Carolina , Virginia , West Virginia and New York", "148 tornadoes"], ["1993", "Cyclonic blizzard", "318", "1993 Storm of the Century", "Eastern United States", ""], ["1865", "Accident - explosion", "300", "Mobile magazine explosion", "Mobile , Alabama", "Civil War ammunition"], ["1921", "Race riot", "300", "Tulsa race riot", "Tulsa , Oklahoma", "White mob attacks affluent black neighborhood"], ["1890", "Mass murder , Mass shooting", "150-300", "Wounded Knee Massacre", "Wounded Knee Creek , South Dakota", "White U.S. Cavalry troops went to a Native American reserve and shot and killed between 150-300 Native Americans"], ["1937", "Accident - explosion", "296-319", "New London School explosion", "New London , Texas", "Gas leak"], ["1960", "Blizzard", "286", "December 1960 nor'easter", "Northeastern United States", ""], ["1881", "Wildfire ( rural )", "282", "Thumb Fire", "Michigan", ""], ["2005", "Hurricane", "1836", "2005 Hurricane Katrina", "Louisiana , Mississippi , Alabama , Florida", "One of the deadliest and most destructive hurricanes in U.S. history"], ["2017", "Hurricane", "2972", "2017 Atlantic hurricane season", "Caribbean Sea , Gulf of Mexico , United States East Coast", "Deadliest hurricane season in more than a decade"], ["1970", "Tropical cyclone", "500,000+", "1970 Bhola cyclone", "East Pakistan (now Bangladesh)", "Considered one of the deadliest natural disasters in history"], ["2004", "Indian Ocean earthquake and tsunami", "230,000+", "2004 Indian Ocean earthquake and tsunami", "Countries bordering the Indian Ocean", "One of the deadliest tsunamis in recorded history"], ["2020", "COVID-19 pandemic", "3,230,000+", "COVID-19 pandemic", "Worldwide", "Pandemic caused by the SARS-CoV-2 virus"], ["2010", "Earthquake", "316,000+", "2010 Haiti earthquake", "Haiti", "One of the deadliest earthquakes in history"], ["1984", "Industrial disaster", "3,787", "Bhopal disaster", "Bhopal, India", "Gas leak at a Union Carbide India Limited pesticide plant"], ["1945", "Atomic bombing", "129,000+", "Atomic bombings of Hiroshima and Nagasaki", "Hiroshima and Nagasaki, Japan", "The only use of nuclear weapons in warfare"], ["2001", "Terrorist attack", "2,996", "September 11 attacks", "New York, Virginia, Pennsylvania, USA", "Coordinated terrorist attacks carried out by the Islamic terrorist group al-Qaeda"], ["2011", "Earthquake and tsunami", "15,898", "2011 T\u014dhoku earthquake and tsunami", "Japan", "One of the deadliest earthquakes in history, followed by a devastating tsunami"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Type", "Fatalities", "Article", "Location", "Comments"], "add_description": "The name of this table is Disasters, and the headers of this table are Year,Type,Fatalities,Article,Location,Comments.", "source": "hybridqa", "answer_md5": "[('c9c2e98445acb735097e3df11990231b',)]"} +{"description": "Change Andile Jali's position to DF in the Footballers table.", "label": ["UPDATE Footballers SET Position='DF' WHERE Footballer='Andile Jali'"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Footballers", "table_info": {"columns": [{"name": "Season", "type": "TEXT"}, {"name": "Footballer", "type": "TEXT"}, {"name": "Club", "type": "TEXT"}, {"name": "Position", "type": "TEXT"}, {"name": "Nationality", "type": "TEXT"}], "rows": [["2012-13", "Itumeleng Khune", "Kaizer Chiefs", "GK", "South Africa"], ["2011-12", "Siyabonga Nomvethe", "Moroka Swallows", "FW", "South Africa"], ["2010-11", "Thulani Serero", "Ajax Cape Town", "MF", "South Africa"], ["2009-10", "Katlego Mphela", "Mamelodi Sundowns", "FW", "South Africa"], ["2008-09", "Teko Modise", "Orlando Pirates", "MF", "South Africa"], ["2007-08", "Itumeleng Khune", "Kaizer Chiefs", "GK", "South Africa"], ["2006-07", "Godfrey Sapula", "Mamelodi Sundowns", "MF", "South Africa"], ["2005-06", "Surprise Moriri", "Mamelodi Sundowns", "MF", "South Africa"], ["2004-05", "Sandile Ndlovu", "Dynamos", "FW", "South Africa"], ["2003-04", "Tinashe Nengomasha", "Kaizer Chiefs", "MF", "Zimbabwe"], ["2002-03", "Moeneeb Josephs", "Ajax Cape Town", "GK", "South Africa"], ["2001-02", "Jabu Pule", "Kaizer Chiefs", "MF", "South Africa"], ["2000-01", "Benjani Mwaruwari", "Jomo Cosmos", "FW", "Zimbabwe"], ["1999-00", "Siyabonga Nomvethe", "Kaizer Chiefs", "FW", "South Africa"], ["1998-99", "Roger Feutmba", "Mamelodi Sundowns", "MF", "Cameroon"], ["1997-98", "Raphael Chukwu", "Mamelodi Sundowns", "FW", "Nigeria"], ["1996-97", "Wilfred Mugeyi", "Bush Bucks", "FW", "Zimbabwe"], ["2020-21", "Percy Tau", "Brighton & Hove Albion", "FW", "South Africa"], ["2019-20", "Sifiso Hlanti", "Bidvest Wits", "DF", "South Africa"], ["2018-19", "Themba Zwane", "Mamelodi Sundowns", "MF", "South Africa"], ["2017-18", "Sibusiso Vilakazi", "Mamelodi Sundowns", "FW", "South Africa"], ["2016-17", "Keagan Dolly", "Mamelodi Sundowns", "MF", "South Africa"], ["2015-16", "Khama Billiat", "Mamelodi Sundowns", "FW", "Zimbabwe"], ["2014-15", "Bernard Parker", "Kaizer Chiefs", "FW", "South Africa"], ["2013-14", "Thamsanqa Gabuza", "Golden Arrows", "FW", "South Africa"], ["2012-13", "Oupa Manyisa", "Orlando Pirates", "MF", "South Africa"], ["2011-12", "Andile Jali", "Orlando Pirates", "MF", "South Africa"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Season", "Footballer", "Club", "Position", "Nationality"], "add_description": "The name of this table is Footballers, and the headers of this table are Season,Footballer,Club,Position,Nationality.", "source": "sqa", "answer_md5": "[('5878a8a55f2d6f5a49b690cea0f92567',)]"} +{"description": "Great Britain's bronze count in the Olympic Medal Table is updated to 5 and their total count is incremented by 1.", "label": ["UPDATE `Olympic Medal Table` SET Bronze = 5, Total = Total+1 WHERE Nation = 'Great Britain';"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Olympic Medal Table", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Nation", "type": "TEXT"}, {"name": "Gold", "type": "TEXT"}, {"name": "Silver", "type": "TEXT"}, {"name": "Bronze", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}], "rows": [["1", "Japan", "3", "3", "1", "7"], ["2", "Netherlands", "1", "0", "1", "2"], ["3", "Soviet Union", "0", "1", "2", "3"], ["4", "South Korea", "0", "0", "2", "2"], ["5", "Canada", "0", "0", "1", "1"], ["5", "United States", "0", "0", "1", "1"], ["6", "Germany", "0", "2", "0", "2"], ["7", "China", "0", "1", "1", "2"], ["8", "Italy", "0", "1", "0", "1"], ["9", "France", "0", "0", "2", "2"], ["10", "Great Britain", "0", "0", "1", "1"], ["10", "Australia", "0", "0", "1", "1"], ["12", "Switzerland", "0", "0", "1", "1"], ["13", "Sweden", "0", "0", "1", "1"], ["14", "Taiwan", "0", "0", "1", "1"], ["14", "Brazil", "0", "0", "1", "1"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Nation", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medal Table, and the headers of this table are Rank,Nation,Gold,Silver,Bronze,Total.", "source": "wikisql", "answer_md5": "[('5cf55dc8105e934e68f9ebd92bd30778',)]"} +{"description": "Set the number of episodes as '21' for season '8' in the TV_Show_Seasons table.", "label": ["UPDATE TV_Show_Seasons SET Episodes='21' WHERE Season='8'"], "create": {"database": "wikitq", "init": "wikitq_init.sql"}, "table": {"table_name": "TV_Show_Seasons", "table_info": {"columns": [{"name": "Season", "type": "INT"}, {"name": "Episodes", "type": "INT"}, {"name": "Season Premiere", "type": "DATE"}, {"name": "Season Finale", "type": "DATE"}], "rows": [["1", "20", "March 4, 2006", "May 13, 2006"], ["2", "52", "October 7, 2006", "July 16, 2007"], ["3", "44", "October 15, 2007", "June 2, 2008"], ["4", "48", "October 13, 2008", "May 11, 2009"], ["5", "40", "October 12, 2009", "June 14, 2010"], ["6", "20", "September 6, 2010", "December 6, 2010"], ["7", "8", "October 29, 2013", "December 17, 2013"], ["8", "18", "September 22, 2014", "January 19, 2015"], ["9", "22", "October 5, 2015", "May 23, 2016"], ["10", "16", "October 23, 2017", "February 12, 2018"], ["11", "10", "October 7, 2019", "December 9, 2019"], ["12", "12", "September 14, 2020", "December 14, 2020"], ["13", "8", "October 19, 2020", "December 7, 2020"], ["14", "22", "September 27, 2021", "May 9, 2022"], ["15", "20", "October 3, 2022", "February 6, 2023"], ["16", "10", "October 9, 2023", "December 11, 2023"], ["17", "12", "September 30, 2024", "December 30, 2024"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Season", "Episodes", "Season Premiere", "Season Finale"], "add_description": "The name of this table is TV_Show_Seasons, and the headers of this table are Season,Episodes,Season Premiere,Season Finale.", "source": "wikitq", "answer_md5": "[('05d1faf99ef4f98760ca09117b678d17',)]"} +{"description": "Change the values of Unknown's Pos and Name columns to 'FW' and 'Yuji Senuma' respectively, WHERE the No column is equal to '20'.", "label": ["UPDATE unknown SET Pos = 'FW', Name = 'Yuji Senuma' WHERE No = '20'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "unknown", "table_info": {"columns": [{"name": "No", "type": "INT"}, {"name": "Pos", "type": "TEXT"}, {"name": "Name", "type": "TEXT"}, {"name": "MS", "type": "INT"}], "rows": [["21", "GK", "Masaaki Higashiguchi", "24"], ["22", "RB", "Daigo Nishi", "26"], ["3", "CB", "Kazuhiko Chiba", "33"], ["6", "CB", "Mitsuru Nagata", "34"], ["24", "LB", "Gotoku Sakai", "28"], ["15", "DM", "Isao Homma", "31"], ["32", "DM", "Yoshiyuki Kobayashi", "23"], ["10", "RM", "M\u00e1rcio Richardes", "26"], ["9", "LM", "Cho Young-Cheol", "28"], ["8", "SS", "Michael", "23"], ["11", "FW", "Kisho Yano", "19"], ["18", "CB", "Shota Fujio", "25"], ["5", "CB", "Junichiro Kuroda", "29"], ["19", "RB", "Kota Fujimoto", "21"], ["33", "DM", "Toshihiko Sakai", "27"], ["27", "LB", "Shinya Ishii", "30"], ["7", "RM", "Takashi Tsukamoto", "24"], ["14", "LM", "Park Sun-Young", "26"], ["25", "SS", "Yuan Yamada", "22"], ["20", "FW", "Shota Fujimoto", "19"], ["17", "GK", "Mirza Mustafic", "32"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["No", "Pos", "Name", "MS"], "add_description": "The name of this table is unknown, and the headers of this table are No,Pos,Name,MS.", "source": "hybridqa", "answer_md5": "[('23ad0b50709f6a89edb5fb1e07b1fe69',)]"} +{"description": "Change the sport of the first Olympic Flag Bearer to Basketball in the table 'Olympic Flag Bearers'.", "label": ["UPDATE `Olympic Flag Bearers` SET `Sport` = 'Basketball' WHERE `#` = 1"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Olympic Flag Bearers", "table_info": {"columns": [{"name": "#", "type": "INT"}, {"name": "Event year", "type": "TEXT"}, {"name": "Season", "type": "TEXT"}, {"name": "Ceremony", "type": "TEXT"}, {"name": "Flag bearer", "type": "TEXT"}, {"name": "Sport", "type": "TEXT"}], "rows": [["1", "1972", "Summer", "Opening", "Peter Rull Sr", "Shooting"], ["2", "1984", "Summer", "Opening", "Solomon Lee", "Shooting"], ["3", "1988", "Summer", "Opening", "Liu Fuk Man", "Table tennis"], ["4", "1996", "Summer", "Opening", "Chan Sau Ying", "Athletics"], ["5", "1996", "Summer", "Closing", "Lee Lai Shan", "Sailing"], ["6", "2000", "Summer", "Opening", "Fenella Ng", "Rowing"], ["7", "2000", "Summer", "Closing", "Mark Kwok", "Swimming"], ["8", "2002", "Winter", "Opening", "Cordia Tsoi", "Short track speed skating"], ["9", "2004", "Summer", "Opening", "Sherry Tsai", "Swimming"], ["10", "2004", "Summer", "Closing", "Ko Lai Chak Li Ching", "Table tennis"], ["11", "2006", "Winter", "Opening", "Han Yueshuang", "Short track speed skating"], ["12", "2008", "Summer", "Opening", "Wong Kam Po", "Cycling"], ["13", "2008", "Summer", "Closing", "Law Hiu Fung", "Rowing"], ["14", "2010", "Winter", "Opening", "Han Yueshuang", "Short track speed skating"], ["15", "2012", "Summer", "Opening", "Lee Wai Sze", "Cycling"], ["16", "2012", "Summer", "Closing", "Tang Peng", "Table tennis"], ["17", "2014", "Winter", "Opening", "Pan-To Barton Lui", "Short track speed skating"], ["18", "2016", "Summer", "Opening", "Stephanie Au", "Swimming"], ["19", "2016", "Summer", "Closing", "Chan Chun Hing", "Cycling"], ["20", "2018", "Winter", "Opening", "Arabella Ng", "Alpine skiing"], ["21", "2020", "Summer", "Opening", "Maggie So", "Taekwondo"], ["22", "2020", "Summer", "Closing", "Tiffany Chan", "Badminton"], ["23", "2022", "Winter", "Opening", "Cyrus Tang", "Snowboarding"], ["24", "2024", "Summer", "Opening", "Benjamin Wong", "Gymnastics"], ["25", "2024", "Summer", "Closing", "Karen Yeung", "Diving"], ["26", "2026", "Winter", "Opening", "Sabrina Choi", "Figure skating"], ["27", "2028", "Summer", "Opening", "Nathan Ho", "Sailing"], ["28", "2028", "Summer", "Closing", "Cindy Yau", "Judo"], ["29", "2030", "Winter", "Opening", "Timothy Chan", "Ice hockey"], ["30", "2032", "Summer", "Opening", "Grace Wong", "Archery"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["#", "Event year", "Season", "Ceremony", "Flag bearer", "Sport"], "add_description": "The name of this table is Olympic Flag Bearers, and the headers of this table are #,Event year,Season,Ceremony,Flag bearer,Sport.", "source": "hybridqa", "answer_md5": "[('bb03c9bdbd646997e934ff9a67258470',)]"} +{"description": "Set the score of tie number 1 in the Football Matches table to '2 - 2'.", "label": ["UPDATE `Football Matches` SET `Score`='2 - 2' WHERE `Tie no`=1"], "create": {"database": "sqa", "init": "sqa_init.sql"}, "table": {"table_name": "Football Matches", "table_info": {"columns": [{"name": "Tie no", "type": "INT"}, {"name": "Home team", "type": "TEXT"}, {"name": "Score", "type": "TEXT"}, {"name": "Away team", "type": "TEXT"}, {"name": "Date", "type": "DATE"}, {"name": "Attendance", "type": "TEXT"}], "rows": [["1", "Rochdale", "2 - 0", "Coventry City", "25 January 2003", "nan"], ["2", "Southampton", "1 - 1", "Millwall", "25 January 2003", "23,809"], ["Replay", "Millwall", "1 - 2", "Southampton", "5 February 2003", "10,197"], ["3", "Watford", "1 - 0", "West Bromwich Albion", "25 January 2003", "16,975"], ["4", "Walsall", "2 - 0", "Wimbledon", "25 January 2003", "6,693"], ["5", "Gillingham", "1 - 1", "Leeds United", "25 January 2003", "11,093"], ["Replay", "Leeds United", "2 - 1", "Gillingham", "4 February 2003", "29,359"], ["6", "Blackburn Rovers", "3 - 3", "Sunderland", "25 January 2003", "14,315"], ["Replay", "Sunderland", "2 - 2", "Blackburn Rovers", "5 February 2003", "15,745"], ["7", "Wolverhampton Wanderers", "4 - 1", "Leicester City", "25 January 2003", "28,164"], ["8", "Shrewsbury Town", "0 - 4", "Chelsea", "26 January 2003", "7,950"], ["9", "Sheffield United", "4 - 3", "Ipswich Town", "25 January 2003", "12,757"], ["10", "Fulham", "3 - 0", "Charlton Athletic", "26 January 2003", "12,203"], ["11", "Brentford", "0 - 3", "Burnley", "25 January 2003", "9,563"], ["12", "Manchester United", "6 - 0", "West Ham United", "26 January 2003", "67,181"], ["13", "Norwich City", "1 - 0", "Dagenham & Redbridge", "25 January 2003", "21,164"], ["14", "Crystal Palace", "0 - 0", "Liverpool", "26 January 2003", "26,054"], ["Replay", "Liverpool", "0 - 2", "Crystal Palace", "5 February 2003", "35,109"], ["15", "Farnborough Town", "1 - 5", "Arsenal", "25 January 2003", "35,108"], ["16", "Stoke City", "3 - 0", "Bournemouth", "26 January 2003", "12,004"], ["17", "Leeds United", "2 - 1", "Southampton", "1 February 2003", "23,456"], ["18", "West Bromwich Albion", "1 - 1", "Wolverhampton Wanderers", "1 February 2003", "17,892"], ["Replay", "Wolverhampton Wanderers", "3 - 2", "West Bromwich Albion", "7 February 2003", "20,378"], ["19", "Chelsea", "4 - 0", "Blackburn Rovers", "2 February 2003", "47,890"], ["20", "Norwich City", "2 - 2", "Fulham", "1 February 2003", "13,456"], ["Replay", "Fulham", "1 - 3", "Norwich City", "6 February 2003", "18,901"], ["21", "Crystal Palace", "5 - 1", "Brentford", "1 February 2003", "19,345"], ["22", "Manchester United", "2 - 0", "Sheffield United", "2 February 2003", "75,432"], ["23", "Liverpool", "3 - 1", "Watford", "1 February 2003", "44,567"], ["24", "Arsenal", "2 - 0", "Stoke City", "2 February 2003", "38,901"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Tie no", "Home team", "Score", "Away team", "Date", "Attendance"], "add_description": "The name of this table is Football Matches, and the headers of this table are Tie no,Home team,Score,Away team,Date,Attendance.", "source": "sqa", "answer_md5": "[('5fe4b5d24ffeb288dd8bdeddeefb5f37',)]"} +{"description": "The Olympic Medal Table was updated to set the gold medal count to 2 and total medal count to 3 for the rank of 6.", "label": ["UPDATE `Olympic Medal Table` SET `Gold`='2',`Total`='3' WHERE `Rank`='6'"], "create": {"database": "wikisql", "init": "wikisql_init.sql"}, "table": {"table_name": "Olympic Medal Table", "table_info": {"columns": [{"name": "Rank", "type": "TEXT"}, {"name": "Gold", "type": "TEXT"}, {"name": "Silver", "type": "TEXT"}, {"name": "Bronze", "type": "TEXT"}, {"name": "Total", "type": "TEXT"}], "rows": [["1", "2", "0", "1", "3"], ["2", "1", "1", "0", "2"], ["3", "1", "0", "0", "1"], ["4", "0", "1", "1", "2"], ["5", "0", "1", "0", "1"], ["7", "0", "0", "1", "1"], ["Total", "4", "4", "4", "12"], ["1", "3", "1", "0", "4"], ["2", "0", "2", "1", "3"], ["3", "1", "1", "0", "2"], ["4", "0", "0", "2", "2"], ["5", "2", "1", "0", "3"], ["6", "1", "2", "1", "4"], ["7", "0", "1", "1", "2"], ["8", "2", "0", "0", "2"], ["9", "1", "0", "2", "3"], ["Total", "8", "8", "7", "23"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Rank", "Gold", "Silver", "Bronze", "Total"], "add_description": "The name of this table is Olympic Medal Table, and the headers of this table are Rank,Gold,Silver,Bronze,Total.", "source": "wikisql", "answer_md5": "[('3b252252283f4a3c451391d9745762aa',)]"} +{"description": "Update the 2030 Central European Jamboree's theme to 'Unity'.", "label": ["UPDATE `Central European Jamboree` SET `Theme`='Unity' WHERE `Year`='2030'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Central European Jamboree", "table_info": {"columns": [{"name": "Year", "type": "INTEGER"}, {"name": "Event name", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Host City", "type": "TEXT"}, {"name": "Theme", "type": "TEXT"}, {"name": "Attendance", "type": "INTEGER"}], "rows": [["1931", "Camp of Slavic Scouts", "Prague", "Czechoslovakia", "", ""], ["1935", "Jubilee Jamboree of Polish Scouting and Guiding Association", "Spa\u0142a", "Poland", "", ""], ["1997", "F\u00e9nix", "Prague", "Czech Republic", "", ""], ["1998", "Eurocor", "\u017darnovica", "Slovakia", "", ""], ["1999", "San '99", "Sanok", "Poland", "", ""], ["2001", "Carpathia 2001", "Csob\u00e1nka", "Hungary", "Closer to each other", "1000"], ["2004", "Tatracor", "Tatransk\u00e1 Lomnica", "Slovakia", "Reach the Top", "2000"], ["2006", "Orbis 2006", "Brno", "Czech Republic", "Many cultures - one world", "3000"], ["2008", "Silesia 2008", "Chorz\u00f3w", "Poland", "Discover new world", "1400"], ["2010", "ConCordia 2010", "Budapest", "Hungary", "Many Hearts , One Beat", ""], ["2012", "11th Central European Jamboree", "Liptovsk\u00fd Mikul\u00e1\u0161", "Slovakia", "Experience Elements", "1000"], ["2014", "12th Central European Jamboree", "Doksy", "Czech Republic", "Prepared for the future", "1012"], ["2016", "13th Central European Jamboree", "Wroc\u0142aw", "Poland", "Art of Scouting", "1800"], ["2018", "14th Central European Jamboree", "Szalki Island ( Duna\u00fajv\u00e1ros )", "Hungary", "Scouting on new waves", "700"], ["2022", "15th Central European Jamboree", "TBA", "Czech Republic", "", ""], ["2024", "16th Central European Jamboree", "TBA", "Slovakia", "", ""], ["2025", "Mountain Quest", "Zakopane", "Poland", "Exploring the Alps", "1200"], ["2026", "Danube Adventure", "Budapest", "Hungary", "Paddling through history", "800"], ["2027", "Castles and Legends", "Prague", "Czech Republic", "Uncovering ancient stories", "1500"], ["2028", "Tatra Trek", "Poprad", "Slovakia", "Hiking the Carpathians", "1000"], ["2029", "Wilderness Survival", "Bieszczady Mountains", "Poland", "Living off the land", "600"], ["2030", "Riverside Rendezvous", "Bratislava", "Slovakia", "Canoeing and camaraderie", "900"], ["2031", "History in the Making", "Krakow", "Poland", "Exploring the past to shape the future", "2000"], ["2032", "Vineyard Ventures", "Budapest", "Hungary", "Sampling local flavors", "700"], ["2033", "Highland Haven", "Tatras", "Czech Republic", "Skiing and snowboarding", "800"], ["2034", "Danubian Delight", "Bratislava", "Slovakia", "Enjoying the river life", "1200"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Year", "Event name", "Location", "Host City", "Theme", "Attendance"], "add_description": "The name of this table is Central European Jamboree, and the headers of this table are Year,Event name,Location,Host City,Theme,Attendance.", "source": "hybridqa", "answer_md5": "[('8c50aa730fb772a4ab935adea2b5c4cc',)]"} +{"description": "Modify the stadium capacity to 45,000 for Suwon Samsung Bluewings in team_stadiums table.", "label": ["UPDATE team_stadiums SET `Stadium capacity`='45,000' WHERE Team='Suwon Samsung Bluewings'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "team_stadiums", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Stadium", "type": "TEXT"}, {"name": "Stadium capacity", "type": "TEXT"}], "rows": [["Busan Transportation Corporation", "Busan", "Busan Gudeok Stadium", "24,363"], ["Changwon City", "Changwon", "Changwon Football Center", "15,500"], ["Cheonan City", "Cheonan", "Cheonan Stadium", "32,000"], ["Gangneung City", "Gangneung", "Gangneung Stadium", "22,333"], ["Gimhae City", "Gimhae", "Gimhae Stadium", "30,000"], ["Gyeongju Korea Hydro & Nuclear Power", "Gyeongju", "Gyeongju Civic Stadium", "12,199"], ["Incheon Korail", "Incheon", "Incheon Munhak Stadium", "49,084"], ["Mokpo City", "Mokpo", "Mokpo International Football Center", "5,952"], ["Ulsan Hyundai Mipo Dockyard Dolphin", "Ulsan", "Ulsan Stadium", "19,665"], ["Yongin City", "Yongin", "Yongin Football Center", "12,000"], ["Jeju United", "Jeju", "Jeju World Cup Stadium", "35,657"], ["Daejeon Citizen", "Daejeon", "Daejeon World Cup Stadium", "40,535"], ["Suwon Samsung Bluewings", "Suwon", "Suwon World Cup Stadium", "43,959"], ["Jeonbuk Hyundai Motors", "Jeonju", "Jeonju World Cup Stadium", "42,477"], ["Pohang Steelers", "Pohang", "Pohang Steel Yard", "17,443"], ["Seoul E-Land", "Seoul", "Seoul Olympic Stadium", "69,950"], ["FC Anyang", "Anyang", "Anyang Sports Complex", "25,000"], ["Ansan Greeners", "Ansan", "Ansan Wa~ Stadium", "25,000"], ["Bucheon FC 1995", "Bucheon", "Bucheon Stadium", "23,467"], ["Gyeongnam FC", "Changwon", "Gyeongsangnam-do Football Center", "15,500"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Team", "Location", "Stadium", "Stadium capacity"], "add_description": "The name of this table is team_stadiums, and the headers of this table are Team,Location,Stadium,Stadium capacity.", "source": "hybridqa", "answer_md5": "[('21301c997c869bd65ce51b7c761d0a4f',)]"} +{"description": "Modify the capacity of the 'Princeton Tigers' team in the 'Team Information' table to '45,000'.", "label": ["UPDATE `Team Information` SET Capacity = '45,000' WHERE Team = 'Princeton Tigers'"], "create": {"database": "hybridqa", "init": "hybridqa_init.sql"}, "table": {"table_name": "Team Information", "table_info": {"columns": [{"name": "Team", "type": "TEXT"}, {"name": "Location", "type": "TEXT"}, {"name": "Stadium", "type": "TEXT"}, {"name": "Capacity", "type": "TEXT"}], "rows": [["Brown Bears", "Providence , Rhode Island", "Stevenson Field", "3,500"], ["Columbia Lions", "New York City , New York", "Columbia Soccer Stadium", "3,500"], ["Cornell Big Red", "Ithaca , New York", "Berman Field", "1,000"], ["Dartmouth Big Green", "Hanover , New Hampshire", "Burnham Field", "1,600"], ["Harvard Crimson", "Cambridge , Massachusetts", "Soldiers Field Soccer Stadium", "2,500"], ["Penn Quakers", "Philadelphia , Pennsylvania", "Rhodes Field", "2,000"], ["Princeton Tigers", "Princeton , New Jersey", "Roberts Stadium", "1,750"], ["Yale Bulldogs", "New Haven , Connecticut", "Reese Stadium", "3,000"], ["Arizona Cardinals", "Glendale, Arizona", "State Farm Stadium", "63,400"], ["Dallas Cowboys", "Arlington, Texas", "AT&T Stadium", "80,000"], ["Green Bay Packers", "Green Bay, Wisconsin", "Lambeau Field", "81,441"], ["Kansas City Chiefs", "Kansas City, Missouri", "Arrowhead Stadium", "76,416"], ["New England Patriots", "Foxborough, Massachusetts", "Gillette Stadium", "66,829"], ["New Orleans Saints", "New Orleans, Louisiana", "Mercedes-Benz Superdome", "74,295"], ["Pittsburgh Steelers", "Pittsburgh, Pennsylvania", "Heinz Field", "68,400"], ["San Francisco 49ers", "Santa Clara, California", "Levi's Stadium", "68,500"], ["Seattle Seahawks", "Seattle, Washington", "CenturyLink Field", "69,000"], ["Tampa Bay Buccaneers", "Tampa, Florida", "Raymond James Stadium", "65,890"]]}}, "evaluation": "", "example": "", "type": ["UPDATE"], "heads": ["Team", "Location", "Stadium", "Capacity"], "add_description": "The name of this table is Team Information, and the headers of this table are Team,Location,Stadium,Capacity.", "source": "hybridqa", "answer_md5": "[('99c46996d7dd6d2d5c8d13d622c8ac62',)]"} diff --git a/AgentBench.old/data/knowledgegraph/dev.json b/AgentBench.old/data/knowledgegraph/dev.json new file mode 100644 index 0000000..26bec1a --- /dev/null +++ b/AgentBench.old/data/knowledgegraph/dev.json @@ -0,0 +1,573 @@ +[ + { + "question": "what position did pat connaughton, author of did you see that thing? that\u2019s sidat-singh! the syracuse walking dream!, play?", + "qid": "4300563004000_grailqa", + "source": "grailqa", + "entities": { + "Did you see that thing? That\u2019s Sidat-Singh! The Syracuse Walking Dream!": "m.09rl290", + "Pat Connaughton": "m.0j50kb6" + }, + "s_expression": "(AND basketball.basketball_position (AND (JOIN basketball.basketball_position.players (JOIN (R media_common.quotation.author) m.09rl290)) (JOIN basketball.basketball_position.players m.0j50kb6)))", + "actions": [ + "get_relations(m.09rl290)", + "get_neighbors(m.09rl290,media_common.quotation.author)", + "get_relations(#0)", + "get_neighbors(#0,basketball.basketball_player.position_s)", + "get_relations(m.0j50kb6)", + "get_neighbors(m.0j50kb6,basketball.basketball_player.position_s)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.05ch8k4", + "entity_name": "Guard" + } + ] + }, + { + "question": "name the sensor type of a digital camera that has the color filter array type of bayer and iso settings of 5000?", + "qid": "4300861012000_grailqa", + "source": "grailqa", + "entities": { + "bayer": "m.02r8js", + "5000": "m.0h27q91" + }, + "s_expression": "(AND digicams.camera_sensor_type (JOIN (R digicams.digital_camera.sensor_type) (AND (JOIN digicams.digital_camera.color_filter_array_type m.02r8js) (JOIN digicams.digital_camera.iso_setting m.0h27q91))))", + "actions": [ + "get_relations(m.02r8js)", + "get_neighbors(m.02r8js,digicams.camera_color_filter_array_type.cameras)", + "get_relations(m.0h27q91)", + "get_neighbors(m.0h27q91,digicams.camera_iso.cameras)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,digicams.digital_camera.sensor_type)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02x3xhq", + "entity_name": "Live MOS" + } + ] + }, + { + "question": "what are the common symptoms of fip and some disease caused by old age?", + "qid": "246000102_graphquestions", + "source": "graphquestions", + "entities": { + "fip": "m.06_1k9", + "Old age": "m.01hbgs" + }, + "s_expression": "(AND base.pethealth.symptom (AND (JOIN (R base.pethealth.pet_disease_or_medical_condition.symptoms) m.06_1k9) (JOIN (R base.pethealth.pet_disease_or_medical_condition.symptoms) (JOIN (R base.pethealth.pet_disease_risk_factor.pet_diseases_with_this_risk_factor) m.01hbgs))))", + "actions": [ + "get_relations(m.06_1k9)", + "get_neighbors(m.06_1k9,base.pethealth.pet_disease_or_medical_condition.symptoms)", + "get_relations(m.01hbgs)", + "get_neighbors(m.01hbgs,base.pethealth.pet_disease_risk_factor.pet_diseases_with_this_risk_factor)", + "get_relations(#1)", + "get_neighbors(#1,base.pethealth.pet_disease_or_medical_condition.symptoms)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.023s6n", + "entity_name": "Weight loss" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0brgy", + "entity_name": "Anorexia" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0f3kl", + "entity_name": "Diarrhea" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cjf0", + "entity_name": "Fever" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01j6t0", + "entity_name": "Fatigue" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0lcdk", + "entity_name": "Anemia" + } + ] + }, + { + "question": "what are the characteristics of feline infectious peritonitis and old diseases?", + "qid": "246000201_graphquestions", + "source": "graphquestions", + "entities": { + "Feline infectious peritonitis": "m.06_1k9", + "old": "m.01hbgs" + }, + "s_expression": "(AND base.pethealth.symptom (AND (JOIN (R base.pethealth.pet_disease_or_medical_condition.symptoms) m.06_1k9) (JOIN (R base.pethealth.pet_disease_or_medical_condition.symptoms) (JOIN (R base.pethealth.pet_disease_risk_factor.pet_diseases_with_this_risk_factor) m.01hbgs))))", + "actions": [ + "get_relations(m.06_1k9)", + "get_neighbors(m.06_1k9,base.pethealth.pet_disease_or_medical_condition.symptoms)", + "get_relations(m.01hbgs)", + "get_neighbors(m.01hbgs,base.pethealth.pet_disease_risk_factor.pet_diseases_with_this_risk_factor)", + "get_relations(#1)", + "get_neighbors(#1,base.pethealth.pet_disease_or_medical_condition.symptoms)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.023s6n", + "entity_name": "Weight loss" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0brgy", + "entity_name": "Anorexia" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0f3kl", + "entity_name": "Diarrhea" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cjf0", + "entity_name": "Fever" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01j6t0", + "entity_name": "Fatigue" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0lcdk", + "entity_name": "Anemia" + } + ] + }, + { + "question": "how many mac models used motorola 68040 processors?", + "qid": "3205922013000_grailqa", + "source": "grailqa", + "entities": { + "mac": "m.0zd6", + "Motorola 68040": "m.05397" + }, + "s_expression": "(COUNT (AND computer.computer (AND (JOIN (R computer.computer.includes_models) m.0zd6) (JOIN computer.computer.processor m.05397))))", + "actions": [ + "get_relations(m.0zd6)", + "get_neighbors(m.0zd6,computer.computer.includes_models)", + "get_relations(m.05397)", + "get_neighbors(m.05397,computer.computer_processor.used_in_computers)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "ab\u016b ray\u1e25\u0101n al-b\u012br\u016bn\u012b works in what department of university", + "qid": "4301362010000_grailqa", + "source": "grailqa", + "entities": { + "Ab\u016b Ray\u1e25\u0101n al-B\u012br\u016bn\u012b": "m.01ny93", + "university": "m.0j_sncb" + }, + "s_expression": "(AND education.department (AND (JOIN education.department.field (JOIN education.field_of_study.academics_in_this_field m.01ny93)) (JOIN (R education.university.departments) m.0j_sncb)))", + "actions": [ + "get_relations(m.01ny93)", + "get_neighbors(m.01ny93,education.academic.research_areas)", + "get_relations(#0)", + "get_neighbors(#0,education.field_of_study.academic_departments)", + "get_relations(m.0j_sncb)", + "get_neighbors(m.0j_sncb,education.university.departments)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0dl5_c_", + "entity_name": "University of Florida Department of History" + } + ] + }, + { + "question": "what rocket function is supported by saturn v as well as another rocket made by chrysler llc?", + "qid": "242000202_graphquestions", + "source": "graphquestions", + "entities": { + "chrysler llc": "m.01_bp", + "Saturn V": "m.07932" + }, + "s_expression": "(AND spaceflight.rocket_function (AND (JOIN spaceflight.rocket_function.rockets_supporting_this_function (JOIN (R spaceflight.rocket_manufacturer.rockets_manufactured) m.01_bp)) (JOIN (R spaceflight.rocket.rocket_function) m.07932)))", + "actions": [ + "get_relations(m.01_bp)", + "get_neighbors(m.01_bp,spaceflight.rocket_manufacturer.rockets_manufactured)", + "get_relations(#0)", + "get_neighbors(#0,spaceflight.rocket.rocket_function)", + "get_relations(m.07932)", + "get_neighbors(m.07932,spaceflight.rocket.rocket_function)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0cspd", + "entity_name": "Low Earth orbit" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04rkwz", + "entity_name": "Launch vehicle" + } + ] + }, + { + "question": "identify the tropical cyclones that are in the same category with hurricane marie and also affected eastern north america.", + "qid": "4300198000000_grailqa", + "source": "grailqa", + "entities": { + "Hurricane Marie": "m.011q1wmr", + "Eastern North America": "m.01xs1j8" + }, + "s_expression": "(AND meteorology.tropical_cyclone (AND (JOIN (R meteorology.tropical_cyclone_category.tropical_cyclones) (JOIN (R meteorology.tropical_cyclone.category) m.011q1wmr)) (JOIN meteorology.tropical_cyclone.affected_areas m.01xs1j8)))", + "actions": [ + "get_relations(m.011q1wmr)", + "get_neighbors(m.011q1wmr,meteorology.tropical_cyclone.category)", + "get_relations(#0)", + "get_neighbors(#0,meteorology.tropical_cyclone_category.tropical_cyclones)", + "get_relations(m.01xs1j8)", + "get_neighbors(m.01xs1j8,meteorology.cyclone_affected_area.cyclones)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.07nnlb", + "entity_name": "Hurricane Katrina" + } + ] + }, + { + "question": "find the camera storage type that is supported by olympus fe-130 and the digital camera with iso setting of 2000.", + "qid": "4302372004000_grailqa", + "source": "grailqa", + "entities": { + "Olympus FE-130": "m.03q2k5k", + "2000": "m.04l497s" + }, + "s_expression": "(AND digicams.camera_storage_type (AND (JOIN (R digicams.digital_camera.supported_storage_types) (JOIN digicams.digital_camera.iso_setting m.04l497s)) (JOIN (R digicams.digital_camera.supported_storage_types) m.03q2k5k)))", + "actions": [ + "get_relations(m.04l497s)", + "get_neighbors(m.04l497s,digicams.camera_iso.cameras)", + "get_relations(#0)", + "get_neighbors(#0,digicams.digital_camera.supported_storage_types)", + "get_relations(m.03q2k5k)", + "get_neighbors(m.03q2k5k,digicams.digital_camera.supported_storage_types)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02zmtt", + "entity_name": "xD-Picture Card" + } + ] + }, + { + "question": "which martial art has the same category as silat and has internal?", + "qid": "4301064012000_grailqa", + "source": "grailqa", + "entities": { + "Silat": "m.03hfzm1", + "Internal": "m.02_yl6z" + }, + "s_expression": "(AND martial_arts.martial_art (AND (JOIN martial_arts.martial_art.category (JOIN (R martial_arts.martial_art.category) m.03hfzm1)) (JOIN (R martial_arts.martial_art_category.martial_arts) m.02_yl6z)))", + "actions": [ + "get_relations(m.03hfzm1)", + "get_neighbors(m.03hfzm1,martial_arts.martial_art.category)", + "get_relations(#0)", + "get_neighbors(#0,martial_arts.martial_art_category.martial_arts)", + "get_relations(m.02_yl6z)", + "get_neighbors(m.02_yl6z,martial_arts.martial_art_category.martial_arts)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.07k4r", + "entity_name": "Tai chi" + } + ] + }, + { + "question": "how many electronic arts games are available for purchase in the united states of america?", + "qid": "444000200_graphquestions", + "source": "graphquestions", + "entities": { + "Electronic Arts": "m.01n073", + "United States of America": "m.09c7w0" + }, + "s_expression": "(COUNT (AND cvg.game_version (AND (JOIN (R cvg.cvg_publisher.game_versions_published) m.01n073) (JOIN cvg.game_version.regions m.09c7w0))))", + "actions": [ + "get_relations(m.01n073)", + "get_neighbors(m.01n073,cvg.cvg_publisher.game_versions_published)", + "get_relations(m.09c7w0)", + "get_neighbors(m.09c7w0,cvg.computer_game_region.versions_released_in_this_region)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "5" + } + ] + }, + { + "question": "list all quotations from nikodemos that are addressed to whom \u201cequality must be maintained, if it is promised.\u201d was addressed to.", + "qid": "4302343002000_grailqa", + "source": "grailqa", + "entities": { + "nikodemos": "m.0cpg05_", + "\u201cEquality must be maintained, if it is promised.\u201d": "m.0cvbnm3" + }, + "s_expression": "(AND media_common.quotation_addressee (AND (JOIN media_common.quotation_addressee.quotations (JOIN (R fictional_universe.fictional_character.quotations) m.0cpg05_)) (JOIN media_common.quotation_addressee.quotations m.0cvbnm3)))", + "actions": [ + "get_relations(m.0cpg05_)", + "get_neighbors(m.0cpg05_,fictional_universe.fictional_character.quotations)", + "get_relations(#0)", + "get_neighbors(#0,media_common.quotation.addressee)", + "get_relations(m.0cvbnm3)", + "get_neighbors(m.0cvbnm3,media_common.quotation.addressee)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0cpg042", + "entity_name": "Charon" + } + ] + }, + { + "question": "which song is the longest song of handel: messiah (dublin version, 1742) ?", + "qid": "4301467006000_grailqa", + "source": "grailqa", + "entities": { + "Handel: Messiah (Dublin Version, 1742)": "m.03xxf2z" + }, + "s_expression": "(ARGMAX (AND music.recording (JOIN (R music.release.track) (JOIN (R music.album.releases) m.03xxf2z))) music.recording.length)", + "actions": [ + "get_relations(m.03xxf2z)", + "get_neighbors(m.03xxf2z,music.album.releases)", + "get_relations(#0)", + "get_neighbors(#0,music.release.track)", + "get_attributes(#1)", + "argmax(#1,music.recording.length)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.017nbgl", + "entity_name": "The Messiah, Part 3 (Nos. 45-53): Aria, the Trumpet Shall Sound" + } + ] + }, + { + "question": "which is the longest release track of recordings that baeho \"bobby\" shin has written?", + "qid": "4300020012000_grailqa", + "source": "grailqa", + "entities": { + "Baeho \"Bobby\" Shin": "m.012cr5h8" + }, + "s_expression": "(ARGMAX (AND music.release_track (JOIN (R music.recording.tracks) (JOIN (R music.engineer.tracks_engineered) m.012cr5h8))) music.release_track.length)", + "actions": [ + "get_relations(m.012cr5h8)", + "get_neighbors(m.012cr5h8,music.engineer.tracks_engineered)", + "get_relations(#0)", + "get_neighbors(#0,music.recording.tracks)", + "get_attributes(#1)", + "argmax(#1,music.release_track.length)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.012c1xs6", + "entity_name": "Bliss" + } + ] + }, + { + "question": "Name the last time the team with the mascot named Miles won the super bowl.?", + "qid": "WebQTest-969_7621d2b69f15f44aba9e557f4af9764c_cwq", + "source": "cwq", + "entities": { + "Super Bowl": "m.06x5s", + "Miles": "m.027l54x" + }, + "s_expression": "(ARGMAX (AND (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.team_mascot m.027l54x)) (JOIN time.event.instance_of_recurring_event m.06x5s)) time.event.end_date)", + "actions": [ + "get_relations(m.027l54x)", + "get_neighbors(m.027l54x,sports.mascot.team)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_relations(m.06x5s)", + "get_neighbors(m.06x5s,time.recurring_event.instances)", + "intersection(#1,#2)", + "get_attributes(#3)", + "argmax(#3,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.076y0", + "answer_type": "Entity", + "entity_name": "Super Bowl XXXIII" + } + ] + }, + { + "question": "what is the subject of the quote what is faith but a kind of betting or speculation after all? it should be, i bet that my redeemer liveth. which was spoken quoted by the angel of remembrance?", + "qid": "4300443013000_grailqa", + "source": "grailqa", + "entities": { + "What is faith but a kind of betting or speculation after all? It should be, I bet that my Redeemer liveth.": "m.048g4sk", + "Angel of Remembrance": "m.0h3grm9" + }, + "s_expression": "(AND media_common.quotation_subject (AND (JOIN (R media_common.quotation.subjects) (JOIN media_common.quotation.spoken_by_character m.0h3grm9)) (JOIN (R media_common.quotation.subjects) m.048g4sk)))", + "actions": [ + "get_relations(m.0h3grm9)", + "get_neighbors(m.0h3grm9,fictional_universe.fictional_character.quotations)", + "get_relations(#0)", + "get_neighbors(#0,media_common.quotation.subjects)", + "get_relations(m.048g4sk)", + "get_neighbors(m.048g4sk,media_common.quotation.subjects)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02zq2", + "entity_name": "Faith" + } + ] + }, + { + "question": "the nissan cefiro and the model with predecesser renault is included in what class of automobiles?", + "qid": "4301079014000_grailqa", + "source": "grailqa", + "entities": { + "renault": "m.032b7p", + "Nissan Cefiro": "m.03vynb" + }, + "s_expression": "(AND automotive.automotive_class (AND (JOIN automotive.automotive_class.examples (JOIN (R automotive.model.predecessor) m.032b7p)) (JOIN automotive.automotive_class.examples m.03vynb)))", + "actions": [ + "get_relations(m.032b7p)", + "get_neighbors(m.032b7p,automotive.model.predecessor)", + "get_relations(#0)", + "get_neighbors(#0,automotive.model.automotive_class)", + "get_relations(m.03vynb)", + "get_neighbors(m.03vynb,automotive.model.automotive_class)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.016gvg", + "entity_name": "Station Wagon" + }, + { + "answer_type": "Entity", + "answer_argument": "m.021mp2", + "entity_name": "Sedan" + } + ] + }, + { + "question": "What is the predominant language of the region where \"Into the Arms of Strangers: Stories of the Kindertransport\" was located?", + "qid": "WebQTrn-1215_20ae9a3ac5a1d4d40671f15de04edb15_cwq", + "source": "cwq", + "entities": { + "Into the Arms of Strangers: Stories of the Kindertransport": "m.0bd1d4" + }, + "s_expression": "(JOIN (R location.country.languages_spoken) (AND (JOIN (R language.human_language.main_country) common.topic) (JOIN film.film_location.featured_in_films m.0bd1d4)))", + "actions": [ + "get_relations(common.topic)", + "get_neighbors(common.topic,language.human_language.main_country)", + "get_relations(m.0bd1d4)", + "get_neighbors(m.0bd1d4,film.film.featured_film_locations)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,location.country.languages_spoken)" + ], + "answer": [ + { + "answer_argument": "m.05p2d", + "answer_type": "Entity", + "entity_name": "Old English" + } + ] + }, + { + "question": "name the camera storage type supported by konica minolta dimage g600 and a digital camera with an iso setting of 64.", + "qid": "4302372010000_grailqa", + "source": "grailqa", + "entities": { + "Konica Minolta DiMAGE G600": "m.03q2r5h", + "64": "m.04l497_" + }, + "s_expression": "(AND digicams.camera_storage_type (AND (JOIN (R digicams.digital_camera.supported_storage_types) (JOIN digicams.digital_camera.iso_setting m.04l497_)) (JOIN (R digicams.digital_camera.supported_storage_types) m.03q2r5h)))", + "actions": [ + "get_relations(m.04l497_)", + "get_neighbors(m.04l497_,digicams.camera_iso.cameras)", + "get_relations(#0)", + "get_neighbors(#0,digicams.digital_camera.supported_storage_types)", + "get_relations(m.03q2r5h)", + "get_neighbors(m.03q2r5h,digicams.digital_camera.supported_storage_types)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01tthm", + "entity_name": "Secure Digital" + } + ] + }, + { + "question": "what is the number of infectious diseases that are transmitted by the deer tick?", + "qid": "4303160014000_grailqa", + "source": "grailqa", + "entities": { + "deer tick": "m.02qmvh1" + }, + "s_expression": "(COUNT (AND medicine.infectious_disease (JOIN (R medicine.type_of_infectious_agent.diseases) (JOIN (R medicine.infectious_disease.infectious_agent_type) (JOIN (R medicine.vector_of_disease.disease) m.02qmvh1)))))", + "actions": [ + "get_relations(m.02qmvh1)", + "get_neighbors(m.02qmvh1,medicine.vector_of_disease.disease)", + "get_relations(#0)", + "get_neighbors(#0,medicine.infectious_disease.infectious_agent_type)", + "get_relations(#1)", + "get_neighbors(#1,medicine.type_of_infectious_agent.diseases)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "133" + } + ] + } +] \ No newline at end of file diff --git a/AgentBench.old/data/knowledgegraph/std.json b/AgentBench.old/data/knowledgegraph/std.json new file mode 100644 index 0000000..ac5939d --- /dev/null +++ b/AgentBench.old/data/knowledgegraph/std.json @@ -0,0 +1,5724 @@ +[ + { + "question": "what is the attitude of the first dog and the german shepherds?", + "qid": "4300459012000_grailqa", + "source": "grailqa", + "entities": { + "first dog": "m.05t073s", + "german shepherds": "m.0km5c" + }, + "s_expression": "(AND biology.breed_temperament (AND (JOIN (R biology.animal_breed.temperament) (JOIN (R biology.pedigreed_animal.breed) m.05t073s)) (JOIN (R biology.animal_breed.temperament) m.0km5c)))", + "actions": [ + "get_relations(m.05t073s)", + "get_neighbors(m.05t073s,biology.pedigreed_animal.breed)", + "get_relations(#0)", + "get_neighbors(#0,biology.animal_breed.temperament)", + "get_relations(m.0km5c)", + "get_neighbors(m.0km5c,biology.animal_breed.temperament)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.04kqpjd", + "entity_name": "Obedient" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04kpkld", + "entity_name": "Intelligent" + } + ] + }, + { + "question": "When was the last superbowl to inlucde the team that had Rise as thier mascot?", + "qid": "WebQTest-595_5dd0eeca79ae03b7711252c032849eb2_cwq", + "source": "cwq", + "entities": { + "superbowl": "m.06x5s", + "Rise": "m.0nz45zc" + }, + "s_expression": "(ARGMAX (AND (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.team_mascot m.0nz45zc)) (JOIN sports.sports_championship_event.championship m.06x5s)) time.event.end_date)", + "actions": [ + "get_relations(m.0nz45zc)", + "get_neighbors(m.0nz45zc,sports.mascot.team)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_relations(m.06x5s)", + "get_neighbors(m.06x5s,sports.sports_championship.events)", + "intersection(#1,#2)", + "get_attributes(#3)", + "argmax(#3,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.0642vqv", + "answer_type": "Entity", + "entity_name": "Super Bowl XLVII" + } + ] + }, + { + "question": "Which form of government was practiced within Sparta and within the countries ruled by Philip III of Spain?", + "qid": "WebQTrn-73_12781e726ed82c2dac09fcd2dce236fb_cwq", + "source": "cwq", + "entities": { + "Sparta": "m.09472", + "Philip III of Spain": "m.012rkn" + }, + "s_expression": "(AND (JOIN (R location.country.form_of_government) m.09472) (JOIN government.form_of_government.countries (JOIN royalty.kingdom.rulers m.012rkn)))", + "actions": [ + "get_relations(m.09472)", + "get_neighbors(m.09472,location.country.form_of_government)", + "get_relations(m.012rkn)", + "get_neighbors(m.012rkn,royalty.monarch.kingdom)", + "get_relations(#1)", + "get_neighbors(#1,location.country.form_of_government)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.04szc", + "answer_type": "Entity", + "entity_name": "Monarchy" + } + ] + }, + { + "question": "what type of menstrual cramps treatments have sludge syndrome side effects?", + "qid": "4301182007000_grailqa", + "source": "grailqa", + "entities": { + "menstrual cramps": "m.0255t_", + "SLUDGE syndrome": "m.025yc7f" + }, + "s_expression": "(AND medicine.medical_treatment (AND (JOIN medicine.medical_treatment.side_effects (JOIN medicine.symptom.parent_symptom m.025yc7f)) (JOIN medicine.medical_treatment.used_to_treat m.0255t_)))", + "actions": [ + "get_relations(m.025yc7f)", + "get_neighbors(m.025yc7f,medicine.symptom.includes_symptoms)", + "get_relations(#0)", + "get_neighbors(#0,medicine.symptom.side_effect_of)", + "get_relations(m.0255t_)", + "get_neighbors(m.0255t_,medicine.disease.treatments)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.014d3g", + "entity_name": "Ibuprofen" + } + ] + }, + { + "question": "how many different religious texts have oriental orthodox and hidden christians of japan texts?", + "qid": "3206221004000_grailqa", + "source": "grailqa", + "entities": { + "Hidden Christians of Japan": "m.044f0r", + "oriental orthodox": "m.05pbd" + }, + "s_expression": "(COUNT (AND religion.religious_text (AND (JOIN religion.religious_text.religious_text_of m.044f0r) (JOIN (R religion.religion.texts) m.05pbd))))", + "actions": [ + "get_relations(m.044f0r)", + "get_neighbors(m.044f0r,religion.religion.texts)", + "get_relations(m.05pbd)", + "get_neighbors(m.05pbd,religion.religion.texts)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "how many camera iso capabilities are the iso setting used by kodak z712 is zoom digital camera and samsung s1050?", + "qid": "3205827000000_grailqa", + "source": "grailqa", + "entities": { + "Kodak Z712 IS ZOOM digital camera": "m.03hpfyz", + "Samsung S1050": "m.03q2r11" + }, + "s_expression": "(COUNT (AND digicams.camera_iso (AND (JOIN (R digicams.digital_camera.iso_setting) m.03hpfyz) (JOIN (R digicams.digital_camera.iso_setting) m.03q2r11))))", + "actions": [ + "get_relations(m.03hpfyz)", + "get_neighbors(m.03hpfyz,digicams.digital_camera.iso_setting)", + "get_relations(m.03q2r11)", + "get_neighbors(m.03q2r11,digicams.digital_camera.iso_setting)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "7" + } + ] + }, + { + "question": "which types of storage are compatible with casio exilim ex-v8 as well as color filter array of bayer?", + "qid": "4302099013000_grailqa", + "source": "grailqa", + "entities": { + "Casio Exilim EX-V8": "m.03q2ljb", + "bayer": "m.02r8js" + }, + "s_expression": "(AND digicams.camera_storage_type (AND (JOIN digicams.camera_storage_type.compatible_cameras m.03q2ljb) (JOIN (R digicams.digital_camera.supported_storage_types) (JOIN digicams.digital_camera.color_filter_array_type m.02r8js))))", + "actions": [ + "get_relations(m.03q2ljb)", + "get_neighbors(m.03q2ljb,digicams.digital_camera.supported_storage_types)", + "get_relations(m.02r8js)", + "get_neighbors(m.02r8js,digicams.camera_color_filter_array_type.cameras)", + "get_relations(#1)", + "get_neighbors(#1,digicams.digital_camera.supported_storage_types)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01tthm", + "entity_name": "Secure Digital" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0220vm1", + "entity_name": "SDHC Card" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01z76m", + "entity_name": "MultiMediaCard" + } + ] + }, + { + "question": "What is the ocean that the water flowing underneath the Bethanga Bridge empties into?", + "qid": "WebQTrn-1234_7051979c1a99a094b204a20afe3b82ec_cwq", + "source": "cwq", + "entities": { + "Ocean": "m.05kq4", + "Bethanga Bridge": "m.010hrn7g" + }, + "s_expression": "(AND (JOIN (R geography.river.mouth) (JOIN geography.body_of_water.bridges m.010hrn7g)) (JOIN geography.geographical_feature.category m.05kq4))", + "actions": [ + "get_relations(m.010hrn7g)", + "get_neighbors(m.010hrn7g,transportation.bridge.body_of_water_spanned)", + "get_relations(#0)", + "get_neighbors(#0,geography.river.mouth)", + "get_relations(m.05kq4)", + "get_neighbors(m.05kq4,geography.geographical_feature_category.features)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_argument": "m.06nqw", + "answer_type": "Entity", + "entity_name": "Southern Ocean" + } + ] + }, + { + "question": "a camera with a bayer and iso setting of 800 has what type of sensor type?", + "qid": "4300861003000_grailqa", + "source": "grailqa", + "entities": { + "bayer": "m.02r8js", + "800": "m.01xrg58" + }, + "s_expression": "(AND digicams.camera_sensor_type (JOIN (R digicams.digital_camera.sensor_type) (AND (JOIN digicams.digital_camera.color_filter_array_type m.02r8js) (JOIN digicams.digital_camera.iso_setting m.01xrg58))))", + "actions": [ + "get_relations(m.02r8js)", + "get_neighbors(m.02r8js,digicams.camera_color_filter_array_type.cameras)", + "get_relations(m.01xrg58)", + "get_neighbors(m.01xrg58,digicams.camera_iso.cameras)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,digicams.digital_camera.sensor_type)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01zqt", + "entity_name": "Charge-coupled device" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02x3xhq", + "entity_name": "Live MOS" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0d17kj", + "entity_name": "CMOS sensor" + } + ] + }, + { + "question": "What was the earliest event that George W. Bush was sworn in at?", + "qid": "WebQTrn-923_c0b877813c04f2a410d526fdd6acbaed_cwq", + "source": "cwq", + "entities": { + "United States presidential inauguration": "m.03bxbl6", + "George W. Bush": "m.09b6zr" + }, + "s_expression": "(ARGMIN (AND (JOIN (R time.recurring_event.instances) m.03bxbl6) (JOIN base.inaugurations.inauguration.president m.09b6zr)) time.event.end_date)", + "actions": [ + "get_relations(m.03bxbl6)", + "get_neighbors(m.03bxbl6,time.recurring_event.instances)", + "get_relations(m.09b6zr)", + "get_neighbors(m.09b6zr,base.inaugurations.inauguration_speaker.inauguration)", + "intersection(#0,#1)", + "get_attributes(#2)", + "argmin(#2,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.05bryps", + "answer_type": "Entity", + "entity_name": "George W. Bush 2001 presidential inauguration" + } + ] + }, + { + "question": "what rocket engine designer designs a bipropellant rocket engine with rp-1 and gas-generator cycle?", + "qid": "4300753003000_grailqa", + "source": "grailqa", + "entities": { + "Gas-generator cycle": "m.04qqvv", + "RP-1": "m.021vvd" + }, + "s_expression": "(AND spaceflight.rocket_engine_designer (JOIN spaceflight.rocket_engine_designer.rocket_engines (AND (JOIN (R spaceflight.rocket_engine_cycle.rocket_engines) m.04qqvv) (JOIN (R spaceflight.rocket_engine_fuel.rocket_engines) m.021vvd))))", + "actions": [ + "get_relations(m.04qqvv)", + "get_neighbors(m.04qqvv,spaceflight.rocket_engine_cycle.rocket_engines)", + "get_relations(m.021vvd)", + "get_neighbors(m.021vvd,spaceflight.rocket_engine_fuel.rocket_engines)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,spaceflight.rocket_engine.designed_by)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.03fkyw", + "entity_name": "SpaceX" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01vhl6", + "entity_name": "Rocketdyne" + } + ] + }, + { + "question": "how much content about technology is produced by the person that produces let the good times roll?", + "qid": "4303008011000_grailqa", + "source": "grailqa", + "entities": { + "Technology": "m.07c1v", + "Let the Good Times Roll": "m.05v8gm9" + }, + "s_expression": "(COUNT (AND broadcast.content (AND (JOIN (R broadcast.genre.content) m.07c1v) (JOIN (R broadcast.producer.produces) (JOIN broadcast.producer.produces m.05v8gm9)))))", + "actions": [ + "get_relations(m.07c1v)", + "get_neighbors(m.07c1v,broadcast.genre.content)", + "get_relations(m.05v8gm9)", + "get_neighbors(m.05v8gm9,broadcast.content.producer)", + "get_relations(#1)", + "get_neighbors(#1,broadcast.producer.produces)", + "intersection(#0,#2)", + "count(#3)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "what website, using really simple syndication as api, has the category of jovem nerd?", + "qid": "4300801015000_grailqa", + "source": "grailqa", + "entities": { + "Jovem Nerd": "m.0ywgx93", + "really simple syndication": "m.0n5tx" + }, + "s_expression": "(AND internet.website (AND (JOIN (R internet.website_category.sites) (JOIN (R internet.website.category) m.0ywgx93)) (JOIN internet.website.api m.0n5tx)))", + "actions": [ + "get_relations(m.0ywgx93)", + "get_neighbors(m.0ywgx93,internet.website.category)", + "get_relations(#0)", + "get_neighbors(#0,internet.website_category.sites)", + "get_relations(m.0n5tx)", + "get_neighbors(m.0n5tx,internet.api.site)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0mzwd", + "entity_name": "LiveJournal" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02kdzwd", + "entity_name": "High level bits" + } + ] + }, + { + "question": "What standard time zone is used in Michigan and locations near Venice Municipal Airport?", + "qid": "WebQTest-1264_623b8370871966e2e8aeb301482e1558_cwq", + "source": "cwq", + "entities": { + "Michigan": "m.04rrx", + "Venice Municipal Airport": "m.026w2y7" + }, + "s_expression": "(AND (JOIN (R location.location.time_zones) m.04rrx) (JOIN time.time_zone.locations_in_this_time_zone (JOIN location.location.nearby_airports m.026w2y7)))", + "actions": [ + "get_relations(m.04rrx)", + "get_neighbors(m.04rrx,location.location.time_zones)", + "get_relations(m.026w2y7)", + "get_neighbors(m.026w2y7,aviation.airport.serves)", + "get_relations(#1)", + "get_neighbors(#1,location.location.time_zones)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.02hcv8", + "answer_type": "Entity", + "entity_name": "Eastern Time Zone" + } + ] + }, + { + "question": "what is the isos that kodak easyshare m753 by canon, inc. supports?", + "qid": "4304013002000_grailqa", + "source": "grailqa", + "entities": { + "Kodak EasyShare M753": "m.04wk7k7", + "canon, inc.": "m.01bvx1" + }, + "s_expression": "(AND digicams.camera_iso (AND (JOIN digicams.camera_iso.cameras m.04wk7k7) (JOIN (R digicams.digital_camera.iso_setting) (JOIN (R digicams.camera_sensor_manufacturer.cameras) m.01bvx1))))", + "actions": [ + "get_relations(m.04wk7k7)", + "get_neighbors(m.04wk7k7,digicams.digital_camera.iso_setting)", + "get_relations(m.01bvx1)", + "get_neighbors(m.01bvx1,digicams.camera_sensor_manufacturer.cameras)", + "get_relations(#1)", + "get_neighbors(#1,digicams.digital_camera.iso_setting)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01xrf_x", + "entity_name": "100" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrf_7", + "entity_name": "Auto" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrf_g", + "entity_name": "400" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrf_p", + "entity_name": "200" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrg58", + "entity_name": "800" + } + ] + }, + { + "question": "what type of viewfinder is uses a unknown sensor and uses a jpeg (exif 2.2) format?", + "qid": "4302274012000_grailqa", + "source": "grailqa", + "entities": { + "JPEG (EXIF 2.2)": "m.03q44xr", + "Unknown": "m.01xrf_0" + }, + "s_expression": "(AND digicams.camera_viewfinder_type (JOIN digicams.camera_viewfinder_type.digital_cameras (AND (JOIN (R digicams.camera_compressed_format.cameras) m.03q44xr) (JOIN digicams.digital_camera.camera_sensor_manufacturer m.01xrf_0))))", + "actions": [ + "get_relations(m.03q44xr)", + "get_neighbors(m.03q44xr,digicams.camera_compressed_format.cameras)", + "get_relations(m.01xrf_0)", + "get_neighbors(m.01xrf_0,digicams.camera_sensor_manufacturer.cameras)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,digicams.digital_camera.viewfinder_type)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01xrg6z", + "entity_name": "TTL" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrg1f", + "entity_name": "Optical" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0220vpb", + "entity_name": "Electronic" + } + ] + }, + { + "question": "what is the name of the position that stephen wilson played in which the player who authored did you see that thing? that\u2019s sidat-singh! the syracuse walking dream! also play?", + "qid": "4300563007000_grailqa", + "source": "grailqa", + "entities": { + "Did you see that thing? That\u2019s Sidat-Singh! The Syracuse Walking Dream!": "m.09rl290", + "Stephen Wilson": "m.0w4pvjj" + }, + "s_expression": "(AND basketball.basketball_position (AND (JOIN basketball.basketball_position.players (JOIN (R media_common.quotation.author) m.09rl290)) (JOIN basketball.basketball_position.players m.0w4pvjj)))", + "actions": [ + "get_relations(m.09rl290)", + "get_neighbors(m.09rl290,media_common.quotation.author)", + "get_relations(#0)", + "get_neighbors(#0,basketball.basketball_player.position_s)", + "get_relations(m.0w4pvjj)", + "get_neighbors(m.0w4pvjj,basketball.basketball_player.position_s)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.05ch8k4", + "entity_name": "Guard" + } + ] + }, + { + "question": "The team that won the 1969 World Series championship won the World Series last when?", + "qid": "WebQTest-1556_d47235946e6c9112db92fd6fbb6e26b3_cwq", + "source": "cwq", + "entities": { + "1969 World Series": "m.04jg9_" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.championships m.04jg9_)) time.event.end_date)", + "actions": [ + "get_relations(m.04jg9_)", + "get_neighbors(m.04jg9_,sports.sports_championship_event.champion)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmax(#1,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.01q9lc", + "answer_type": "Entity", + "entity_name": "1986 World Series" + } + ] + }, + { + "question": "the harrier and chinese crested dog dog breeds share how many temperaments?", + "qid": "3205485002000_grailqa", + "source": "grailqa", + "entities": { + "Harrier": "m.0fsg8", + "Chinese Crested Dog": "m.01f57_" + }, + "s_expression": "(COUNT (AND biology.breed_temperament (AND (JOIN biology.breed_temperament.breeds m.0fsg8) (JOIN (R biology.animal_breed.temperament) m.01f57_))))", + "actions": [ + "get_relations(m.0fsg8)", + "get_neighbors(m.0fsg8,biology.animal_breed.temperament)", + "get_relations(m.01f57_)", + "get_neighbors(m.01f57_,biology.animal_breed.temperament)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "what regions sell vc nintendo games?", + "qid": "498000101_graphquestions", + "source": "graphquestions", + "entities": { + "Nintendo": "m.059wk", + "vc": "m.07sg3j" + }, + "s_expression": "(AND cvg.computer_game_region (JOIN (R cvg.game_version.regions) (AND (JOIN cvg.game_version.developer m.059wk) (JOIN cvg.game_version.distributed_through m.07sg3j))))", + "actions": [ + "get_relations(m.059wk)", + "get_neighbors(m.059wk,cvg.cvg_developer.game_versions_developed)", + "get_relations(m.07sg3j)", + "get_neighbors(m.07sg3j,cvg.computer_game_distribution_system.games_distributed)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,cvg.game_version.regions)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02j9z", + "entity_name": "Europe" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03_3d", + "entity_name": "Japan" + }, + { + "answer_type": "Entity", + "answer_argument": "m.059g4", + "entity_name": "North America" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0chghy", + "entity_name": "Australia" + } + ] + }, + { + "question": "hazelwood west high school and the publisher of folia fall under which category of schools?", + "qid": "4301751011000_grailqa", + "source": "grailqa", + "entities": { + "Folia": "m.03p0sq7", + "Hazelwood West High School": "m.08w6sy" + }, + "s_expression": "(AND education.school_category (AND (JOIN (R education.educational_institution.school_type) (JOIN (R education.school_magazine.school) m.03p0sq7)) (JOIN (R education.educational_institution.school_type) m.08w6sy)))", + "actions": [ + "get_relations(m.03p0sq7)", + "get_neighbors(m.03p0sq7,education.school_magazine.school)", + "get_relations(#0)", + "get_neighbors(#0,education.educational_institution.school_type)", + "get_relations(m.08w6sy)", + "get_neighbors(m.08w6sy,education.educational_institution.school_type)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0fjrb", + "entity_name": "Public school" + } + ] + }, + { + "question": "the character that resides in the palaces of sacred band of stepsons is named what?", + "qid": "4300742011000_grailqa", + "source": "grailqa", + "entities": { + "palaces": "m.05zp8", + "Sacred Band of Stepsons": "m.0b_wsry" + }, + "s_expression": "(AND fictional_universe.fictional_character (JOIN fictional_universe.fictional_character.places_lived (AND (JOIN fictional_universe.fictional_setting.setting_type m.05zp8) (JOIN (R fictional_universe.fictional_universe.locations) m.0b_wsry))))", + "actions": [ + "get_relations(m.05zp8)", + "get_neighbors(m.05zp8,fictional_universe.type_of_fictional_setting.settings)", + "get_relations(m.0b_wsry)", + "get_neighbors(m.0b_wsry,fictional_universe.fictional_universe.locations)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,fictional_universe.fictional_setting.characters_that_have_lived_here)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0c0b19n", + "entity_name": "Cime" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0ll9p", + "entity_name": "Faun" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0c1dhy_", + "entity_name": "Faun, Shepherd of Sandia" + } + ] + }, + { + "question": "Where is the greatest population in the country where the Domari is spoken?", + "qid": "WebQTrn-3037_602d3e74c7063895f149a8f44b9e406f_cwq", + "source": "cwq", + "entities": { + "domari": "m.0c4chg" + }, + "s_expression": "(ARGMAX (JOIN (R location.location.contains) (JOIN location.country.languages_spoken m.0c4chg)) topic_server.population_number)", + "actions": [ + "get_relations(m.0c4chg)", + "get_neighbors(m.0c4chg,language.human_language.countries_spoken_in)", + "get_relations(#0)", + "get_neighbors(#0,location.location.contains)", + "get_attributes(#1)", + "argmax(#1,topic_server.population_number)" + ], + "answer": [ + { + "answer_argument": "m.080msrv", + "answer_type": "Entity", + "entity_name": "Greater Cairo" + } + ] + }, + { + "question": "What Canadian government exists where Baldur von Schirach was born?", + "qid": "WebQTrn-1702_3f76d491e90682cc29e3de2546e1f9c5_cwq", + "source": "cwq", + "entities": { + "canadian": "m.0d060g", + "Baldur von Schirach": "m.0143sn" + }, + "s_expression": "(AND (JOIN (R location.country.form_of_government) m.0d060g) (JOIN government.form_of_government.countries (JOIN location.location.people_born_here m.0143sn)))", + "actions": [ + "get_relations(m.0d060g)", + "get_neighbors(m.0d060g,location.country.form_of_government)", + "get_relations(m.0143sn)", + "get_neighbors(m.0143sn,people.person.place_of_birth)", + "get_relations(#1)", + "get_neighbors(#1,location.country.form_of_government)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.01q20", + "answer_type": "Entity", + "entity_name": "Constitutional monarchy" + } + ] + }, + { + "question": "for the casinos owned by the same person as bellagio, which one is the smallest?", + "qid": "496000200_graphquestions", + "source": "graphquestions", + "entities": { + "Bellagio": "m.033bxs" + }, + "s_expression": "(ARGMIN (AND base.casinos.casino (JOIN (R base.casinos.casino_owner.casinos_owned) (JOIN base.casinos.casino_owner.casinos_owned m.033bxs))) base.casinos.casino.rooms)", + "actions": [ + "get_relations(m.033bxs)", + "get_neighbors(m.033bxs,base.casinos.casino.owner)", + "get_relations(#0)", + "get_neighbors(#0,base.casinos.casino_owner.casinos_owned)", + "get_attributes(#1)", + "argmin(#1,base.casinos.casino.rooms)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0937y7", + "entity_name": "Nevada Landing Hotel and Casino" + } + ] + }, + { + "question": "The artist who had a concert tour named I'm Your Baby Tonight World Tour died from what drugs?", + "qid": "WebQTrn-2600_498797c759f6119ac48af1f70b11e2c1_cwq", + "source": "cwq", + "entities": { + "Drug overdose": "m.01tf_6", + "I'm Your Baby Tonight World Tour": "m.047bc2r" + }, + "s_expression": "(AND (JOIN (R people.deceased_person.cause_of_death) (JOIN music.artist.concert_tours m.047bc2r)) (JOIN people.cause_of_death.parent_cause_of_death m.01tf_6))", + "actions": [ + "get_relations(m.047bc2r)", + "get_neighbors(m.047bc2r,music.concert_tour.artist)", + "get_relations(#0)", + "get_neighbors(#0,people.deceased_person.cause_of_death)", + "get_relations(m.01tf_6)", + "get_neighbors(m.01tf_6,people.cause_of_death.includes_causes_of_death)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_argument": "m.02nx6jb", + "answer_type": "Entity", + "entity_name": "Cocaine overdose" + } + ] + }, + { + "question": "which musical release is produced by it can happen and labelled warner bros records?", + "qid": "4301990005000_grailqa", + "source": "grailqa", + "entities": { + "It Can Happen": "m.0ph2bx", + "warner bros records": "m.03rhqg" + }, + "s_expression": "(AND music.release (AND (JOIN music.release.producers (JOIN (R music.recording.producer) m.0ph2bx)) (JOIN music.release.label m.03rhqg)))", + "actions": [ + "get_relations(m.0ph2bx)", + "get_neighbors(m.0ph2bx,music.recording.producer)", + "get_relations(#0)", + "get_neighbors(#0,music.producer.releases_produced)", + "get_relations(m.03rhqg)", + "get_neighbors(m.03rhqg,music.record_label.releases)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0393p0f", + "entity_name": "Human Being" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03bkpjp", + "entity_name": "Seal" + } + ] + }, + { + "question": "what number of contents about classical music are produced by the same producer as radio lab?", + "qid": "4303008005000_grailqa", + "source": "grailqa", + "entities": { + "Classical music": "m.0ggq0m", + "radio lab": "m.02rpln2" + }, + "s_expression": "(COUNT (AND broadcast.content (AND (JOIN (R broadcast.genre.content) m.0ggq0m) (JOIN (R broadcast.producer.produces) (JOIN broadcast.producer.produces m.02rpln2)))))", + "actions": [ + "get_relations(m.0ggq0m)", + "get_neighbors(m.0ggq0m,broadcast.genre.content)", + "get_relations(m.02rpln2)", + "get_neighbors(m.02rpln2,broadcast.content.producer)", + "get_relations(#1)", + "get_neighbors(#1,broadcast.producer.produces)", + "intersection(#0,#2)", + "count(#3)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "what kind of government does japan have now and in locations where Emanuel Lasker was born in?", + "qid": "WebQTest-738_3ce332b703593e71708a5604865c5758_cwq", + "source": "cwq", + "entities": { + "Japan": "m.03_3d", + "Emanuel Lasker": "m.01kfm7" + }, + "s_expression": "(AND (JOIN (R location.country.form_of_government) m.03_3d) (JOIN government.form_of_government.countries (JOIN location.location.people_born_here m.01kfm7)))", + "actions": [ + "get_relations(m.03_3d)", + "get_neighbors(m.03_3d,location.country.form_of_government)", + "get_relations(m.01kfm7)", + "get_neighbors(m.01kfm7,people.person.place_of_birth)", + "get_relations(#1)", + "get_neighbors(#1,location.country.form_of_government)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.01q20", + "answer_type": "Entity", + "entity_name": "Constitutional monarchy" + } + ] + }, + { + "question": "which was the most recently formed cyclone that is in the same category as tropical storm rachel?", + "qid": "4303808000000_grailqa", + "source": "grailqa", + "entities": { + "Tropical Storm Rachel": "m.0crbvqz" + }, + "s_expression": "(ARGMAX (AND meteorology.tropical_cyclone (JOIN meteorology.tropical_cyclone.category (JOIN (R meteorology.tropical_cyclone.category) m.0crbvqz))) meteorology.tropical_cyclone.formed)", + "actions": [ + "get_relations(m.0crbvqz)", + "get_neighbors(m.0crbvqz,meteorology.tropical_cyclone.category)", + "get_relations(#0)", + "get_neighbors(#0,meteorology.tropical_cyclone_category.tropical_cyclones)", + "get_attributes(#1)", + "argmax(#1,meteorology.tropical_cyclone.formed)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.011jnng3", + "entity_name": "Hurricane Iselle" + } + ] + }, + { + "question": "Which World series was the last one to be won by the team that had Crazy Crab as the mascot?", + "qid": "WebQTest-832_e3d40457273785e46c5b71732713a5f4_cwq", + "source": "cwq", + "entities": { + "Crazy Crab": "m.02q_hzh" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.team_mascot m.02q_hzh)) time.event.start_date)", + "actions": [ + "get_relations(m.02q_hzh)", + "get_neighbors(m.02q_hzh,sports.mascot.team)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmax(#1,time.event.start_date)" + ], + "answer": [ + { + "answer_argument": "m.0117q3yz" + } + ] + }, + { + "question": "what is the number of religious practices that practices tibetan buddhism and taoism?", + "qid": "3204573000000_grailqa", + "source": "grailqa", + "entities": { + "Tibetan Buddhism": "m.07mc4", + "Taoism": "m.07gvx" + }, + "s_expression": "(COUNT (AND religion.religious_practice (AND (JOIN (R religion.religion.practices) m.07mc4) (JOIN (R religion.religion.practices) m.07gvx))))", + "actions": [ + "get_relations(m.07mc4)", + "get_neighbors(m.07mc4,religion.religion.practices)", + "get_relations(m.07gvx)", + "get_neighbors(m.07gvx,religion.religion.practices)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "What's the home stadium of the team that won the 2014 AFC Championship Game?", + "qid": "WebQTrn-2684_9635bb1f7252e813d1dfe70f82d62cad_cwq", + "source": "cwq", + "entities": { + "2014 AFC Championship Game": "m.0_gtzbl" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.arena_stadium) (JOIN sports.sports_team.championships m.0_gtzbl)) architecture.structure.opened)", + "actions": [ + "get_relations(m.0_gtzbl)", + "get_neighbors(m.0_gtzbl,sports.sports_championship_event.champion)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.arena_stadium)", + "get_attributes(#1)", + "argmax(#1,architecture.structure.opened)" + ], + "answer": [ + { + "answer_argument": "m.02hxv8", + "answer_type": "Entity", + "entity_name": "Sports Authority Field at Mile High" + } + ] + }, + { + "question": "npr news and the producer of the world produce what content?", + "qid": "4300832010000_grailqa", + "source": "grailqa", + "entities": { + "The World": "m.068xhb", + "npr news": "m.0c0sl" + }, + "s_expression": "(AND broadcast.content (AND (JOIN broadcast.content.producer (JOIN broadcast.producer.produces m.068xhb)) (JOIN broadcast.content.producer m.0c0sl)))", + "actions": [ + "get_relations(m.068xhb)", + "get_neighbors(m.068xhb,broadcast.content.producer)", + "get_relations(#0)", + "get_neighbors(#0,broadcast.producer.produces)", + "get_relations(m.0c0sl)", + "get_neighbors(m.0c0sl,broadcast.producer.produces)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.03d7q1y", + "entity_name": "PRI's The World - Geo Quiz" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03bv0hk", + "entity_name": "PRI: Selected Shorts" + } + ] + }, + { + "question": "how many electronic arts games are available for purchase in the united states?", + "qid": "444000202_graphquestions", + "source": "graphquestions", + "entities": { + "Electronic Arts": "m.01n073", + "united states": "m.09c7w0" + }, + "s_expression": "(COUNT (AND cvg.game_version (AND (JOIN (R cvg.cvg_publisher.game_versions_published) m.01n073) (JOIN cvg.game_version.regions m.09c7w0))))", + "actions": [ + "get_relations(m.01n073)", + "get_neighbors(m.01n073,cvg.cvg_publisher.game_versions_published)", + "get_relations(m.09c7w0)", + "get_neighbors(m.09c7w0,cvg.computer_game_region.versions_released_in_this_region)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "5" + } + ] + }, + { + "question": "what is the number of religious texts that include both buddhists and buddhism texts?", + "qid": "3206221006000_grailqa", + "source": "grailqa", + "entities": { + "Buddhism": "m.092bf5", + "buddhists": "m.01c2mz" + }, + "s_expression": "(COUNT (AND religion.religious_text (AND (JOIN religion.religious_text.religious_text_of m.092bf5) (JOIN (R religion.religion.texts) m.01c2mz))))", + "actions": [ + "get_relations(m.092bf5)", + "get_neighbors(m.092bf5,religion.religion.texts)", + "get_relations(m.01c2mz)", + "get_neighbors(m.01c2mz,religion.religion.texts)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "how many contents about radio documentary were produced by the producer of small things considered?", + "qid": "4303008000000_grailqa", + "source": "grailqa", + "entities": { + "Radio documentary": "m.03hxd3", + "Small Things Considered": "m.05v2fbl" + }, + "s_expression": "(COUNT (AND broadcast.content (AND (JOIN (R broadcast.genre.content) m.03hxd3) (JOIN (R broadcast.producer.produces) (JOIN broadcast.producer.produces m.05v2fbl)))))", + "actions": [ + "get_relations(m.03hxd3)", + "get_neighbors(m.03hxd3,broadcast.genre.content)", + "get_relations(m.05v2fbl)", + "get_neighbors(m.05v2fbl,broadcast.content.producer)", + "get_relations(#1)", + "get_neighbors(#1,broadcast.producer.produces)", + "intersection(#0,#2)", + "count(#3)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "which medications to treat pains have sludge syndrome as a side effect?", + "qid": "4301182004000_grailqa", + "source": "grailqa", + "entities": { + "pains": "m.062t2", + "SLUDGE syndrome": "m.025yc7f" + }, + "s_expression": "(AND medicine.medical_treatment (AND (JOIN medicine.medical_treatment.side_effects (JOIN medicine.symptom.parent_symptom m.025yc7f)) (JOIN medicine.medical_treatment.used_to_treat m.062t2)))", + "actions": [ + "get_relations(m.025yc7f)", + "get_neighbors(m.025yc7f,medicine.symptom.includes_symptoms)", + "get_relations(#0)", + "get_neighbors(#0,medicine.symptom.side_effect_of)", + "get_relations(m.062t2)", + "get_neighbors(m.062t2,medicine.disease.treatments)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.03brks", + "entity_name": "Buprenorphine" + } + ] + }, + { + "question": "What is the name of the student that is credited with creating Google?", + "qid": "WebQTrn-2393_562282f8faca4648a9c8ec98e3e4415d_cwq", + "source": "cwq", + "entities": { + "google": "m.0387r", + "Student": "m.014cnc" + }, + "s_expression": "(AND (JOIN (R law.invention.inventor) m.0387r) (JOIN influence.influence_node.influenced (JOIN people.person.profession m.014cnc)))", + "actions": [ + "get_relations(m.0387r)", + "get_neighbors(m.0387r,law.invention.inventor)", + "get_relations(m.014cnc)", + "get_neighbors(m.014cnc,people.profession.people_with_this_profession)", + "get_relations(#1)", + "get_neighbors(#1,influence.influence_node.influenced_by)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.0gjpq", + "answer_type": "Entity", + "entity_name": "Larry Page" + } + ] + }, + { + "question": "what diseases transmitted via sex have the same type of infectious agent as tb?", + "qid": "481000301_graphquestions", + "source": "graphquestions", + "entities": { + "Sex": "m.06ng1", + "tb": "m.07jwr" + }, + "s_expression": "(AND medicine.infectious_disease (AND (JOIN (R medicine.transmission_route.infections_that_travel_this_way) m.06ng1) (JOIN medicine.infectious_disease.infectious_agent_type (JOIN medicine.type_of_infectious_agent.diseases m.07jwr))))", + "actions": [ + "get_relations(m.06ng1)", + "get_neighbors(m.06ng1,medicine.transmission_route.infections_that_travel_this_way)", + "get_relations(m.07jwr)", + "get_neighbors(m.07jwr,medicine.infectious_disease.infectious_agent_type)", + "get_relations(#1)", + "get_neighbors(#1,medicine.type_of_infectious_agent.diseases)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.020gd", + "entity_name": "Chlamydia infection" + }, + { + "answer_type": "Entity", + "answer_argument": "m.023zy9", + "entity_name": "Chancroid" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0254zq", + "entity_name": "Granuloma inguinale" + }, + { + "answer_type": "Entity", + "answer_argument": "m.074m2", + "entity_name": "Syphilis" + } + ] + }, + { + "question": "which character with an item destroyed by tempus had powers which included control bodies of others?", + "qid": "4302209010000_grailqa", + "source": "grailqa", + "entities": { + "Tempus": "m.0bxj80p", + "Control bodies of others": "m.0c82m0y" + }, + "s_expression": "(AND fictional_universe.fictional_character (AND (JOIN fictional_universe.fictional_character.has_possessed (JOIN fictional_universe.fictional_object.destroyer m.0bxj80p)) (JOIN fictional_universe.fictional_character.powers_or_abilities m.0c82m0y)))", + "actions": [ + "get_relations(m.0bxj80p)", + "get_neighbors(m.0bxj80p,fictional_universe.fictional_object_destroyer.fictional_objects_destroyed)", + "get_relations(#0)", + "get_neighbors(#0,fictional_universe.fictional_object.owner)", + "get_relations(m.0c82m0y)", + "get_neighbors(m.0c82m0y,fictional_universe.character_powers.characters_with_this_ability)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0bxtt5p", + "entity_name": "Askelon of Meridian" + } + ] + }, + { + "question": "What are things to see in downtown Chicago with an image of the skyline?", + "qid": "WebQTrn-825_20030c80de39b4c9d510ac6a48eaf840_cwq", + "source": "cwq", + "entities": { + "Skyline of City of Chicago": "m.03sd6x6" + }, + "s_expression": "(JOIN (R travel.travel_destination.tourist_attractions) (AND (JOIN (R location.location.containedby) common.topic) (JOIN common.topic.image m.03sd6x6)))", + "actions": [ + "get_relations(common.topic)", + "get_neighbors(common.topic,location.location.containedby)", + "get_relations(m.03sd6x6)", + "get_neighbors(m.03sd6x6,common.image.appears_in_topic_gallery)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,travel.travel_destination.tourist_attractions)" + ], + "answer": [ + { + "answer_argument": "m.01dlzc", + "answer_type": "Entity", + "entity_name": "Adler Planetarium" + }, + { + "answer_argument": "m.021czc", + "answer_type": "Entity", + "entity_name": "Field Museum of Natural History" + }, + { + "answer_argument": "m.025v4fb", + "answer_type": "Entity", + "entity_name": "Lincoln Park Zoo" + }, + { + "answer_argument": "m.027hqc_", + "answer_type": "Entity", + "entity_name": "Art Institute of Chicago" + }, + { + "answer_argument": "m.02jw0z", + "answer_type": "Entity", + "entity_name": "Shedd Aquarium" + }, + { + "answer_argument": "m.02rvwrv", + "answer_type": "Entity", + "entity_name": "Art Institute of Chicago Building" + }, + { + "answer_argument": "m.05zv09", + "answer_type": "Entity", + "entity_name": "Chicago Cultural Center" + }, + { + "answer_argument": "m.06_7k", + "answer_type": "Entity", + "entity_name": "Willis Tower" + }, + { + "answer_argument": "m.0b0sh", + "answer_type": "Entity", + "entity_name": "Wrigley Field" + }, + { + "answer_argument": "m.0b28z", + "answer_type": "Entity", + "entity_name": "John Hancock Center" + }, + { + "answer_argument": "m.0bl8mx", + "answer_type": "Entity", + "entity_name": "DuSable Museum of African American History" + }, + { + "answer_argument": "m.0c7ln", + "answer_type": "Entity", + "entity_name": "Navy Pier" + }, + { + "answer_argument": "m.0d9wz", + "answer_type": "Entity", + "entity_name": "Museum of Science and Industry" + }, + { + "answer_argument": "m.0g_8d0", + "answer_type": "Entity", + "entity_name": "Cadillac Palace Theatre" + }, + { + "answer_argument": "m.0w7m2x9", + "answer_type": "Entity", + "entity_name": "Muslim Community Center" + } + ] + }, + { + "question": "how many religious practices are there that practices jainism and krishna?", + "qid": "3204573002000_grailqa", + "source": "grailqa", + "entities": { + "Jainism": "m.042s9", + "krishna": "m.017j3y" + }, + "s_expression": "(COUNT (AND religion.religious_practice (AND (JOIN (R religion.religion.practices) m.042s9) (JOIN (R religion.religion.practices) m.017j3y))))", + "actions": [ + "get_relations(m.042s9)", + "get_neighbors(m.042s9,religion.religion.practices)", + "get_relations(m.017j3y)", + "get_neighbors(m.017j3y,religion.religion.practices)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "mormonites and eastern christians are practiced by how many religious practices?", + "qid": "3204573013000_grailqa", + "source": "grailqa", + "entities": { + "mormonites": "m.058x5", + "eastern christians": "m.0blk0" + }, + "s_expression": "(COUNT (AND religion.religious_practice (AND (JOIN (R religion.religion.practices) m.058x5) (JOIN (R religion.religion.practices) m.0blk0))))", + "actions": [ + "get_relations(m.058x5)", + "get_neighbors(m.058x5,religion.religion.practices)", + "get_relations(m.0blk0)", + "get_neighbors(m.0blk0,religion.religion.practices)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "2" + } + ] + }, + { + "question": "name all types of museums that are of the same type as independence seaport museum and erie maritime museum.", + "qid": "5400031000000_grailqa", + "source": "grailqa", + "entities": { + "Independence Seaport Museum": "m.02qk116", + "Erie Maritime Museum": "m.08x7h8" + }, + "s_expression": "(AND architecture.type_of_museum (JOIN (R architecture.museum.type_of_museum) (JOIN (R architecture.type_of_museum.museums) (AND (JOIN architecture.type_of_museum.museums m.02qk116) (JOIN architecture.type_of_museum.museums m.08x7h8)))))", + "actions": [ + "get_relations(m.02qk116)", + "get_neighbors(m.02qk116,architecture.museum.type_of_museum)", + "get_relations(m.08x7h8)", + "get_neighbors(m.08x7h8,architecture.museum.type_of_museum)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,architecture.type_of_museum.museums)", + "get_relations(#3)", + "get_neighbors(#3,architecture.museum.type_of_museum)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0j58y", + "entity_name": "Science museum" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03lgh_k", + "entity_name": "History museum" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01t372", + "entity_name": "Natural History Museum, London" + } + ] + }, + { + "question": "in abrahamic faith, who is the founding figure of feast of assumption?", + "qid": "4302278015000_grailqa", + "source": "grailqa", + "entities": { + "Feast of Assumption": "m.0_mrbts", + "abrahamic faith": "m.0f_h6" + }, + "s_expression": "(AND religion.founding_figure (JOIN (R religion.religion.founding_figures) (AND (JOIN (R time.holiday.featured_in_religions) m.0_mrbts) (JOIN religion.religion.is_part_of m.0f_h6))))", + "actions": [ + "get_relations(m.0_mrbts)", + "get_neighbors(m.0_mrbts,time.holiday.featured_in_religions)", + "get_relations(m.0f_h6)", + "get_neighbors(m.0f_h6,religion.religion.includes)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,religion.religion.founding_figures)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.060nc", + "entity_name": "Paul the Apostle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.045m1_", + "entity_name": "Jesus Christ" + }, + { + "answer_type": "Entity", + "answer_argument": "m.071wp", + "entity_name": "Saint Peter" + } + ] + }, + { + "question": "when did the colts last win the superbowl", + "qid": "WebQTrn-1771_webqsp", + "source": "webqsp", + "entities": { + "colts": "m.03wnh", + "superbowl": "m.06x5s" + }, + "s_expression": "(ARGMAX (AND (JOIN (R sports.sports_team.championships) m.03wnh) (JOIN sports.sports_championship_event.championship m.06x5s)) time.event.end_date)", + "actions": [ + "get_relations(m.03wnh)", + "get_neighbors(m.03wnh,sports.sports_team.championships)", + "get_relations(m.06x5s)", + "get_neighbors(m.06x5s,sports.sports_championship.events)", + "intersection(#0,#1)", + "get_attributes(#2)", + "argmax(#2,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.04k5qm", + "answer_type": "Entity", + "entity_name": "Super Bowl XLI" + } + ] + }, + { + "question": "the religion featuring christmas day, which is part of abrahamic faiths, has a founding leader who is named what?", + "qid": "4302278011000_grailqa", + "source": "grailqa", + "entities": { + "christmas day": "m.01vq3", + "abrahamic faiths": "m.0f_h6" + }, + "s_expression": "(AND religion.founding_figure (JOIN (R religion.religion.founding_figures) (AND (JOIN (R time.holiday.featured_in_religions) m.01vq3) (JOIN religion.religion.is_part_of m.0f_h6))))", + "actions": [ + "get_relations(m.01vq3)", + "get_neighbors(m.01vq3,time.holiday.featured_in_religions)", + "get_relations(m.0f_h6)", + "get_neighbors(m.0f_h6,religion.religion.includes)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,religion.religion.founding_figures)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.060nc", + "entity_name": "Paul the Apostle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.045m1_", + "entity_name": "Jesus Christ" + }, + { + "answer_type": "Entity", + "answer_argument": "m.071wp", + "entity_name": "Saint Peter" + } + ] + }, + { + "question": "what is the farthest variable stars?", + "qid": "4303393000000_grailqa", + "source": "grailqa", + "entities": { + "variable stars": "m.0gzxf" + }, + "s_expression": "(ARGMAX (AND astronomy.celestial_object (JOIN (R astronomy.celestial_object_category.objects) (JOIN (R astronomy.celestial_object_category.subcategories) m.0gzxf))) astronomy.celestial_object.cosmological_distance)", + "actions": [ + "get_relations(m.0gzxf)", + "get_neighbors(m.0gzxf,astronomy.celestial_object_category.subcategories)", + "get_relations(#0)", + "get_neighbors(#0,astronomy.celestial_object_category.objects)", + "get_attributes(#1)", + "argmax(#1,astronomy.celestial_object.cosmological_distance)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0l1js", + "entity_name": "Proxima Centauri" + } + ] + }, + { + "question": "what kind of viewfinder does the matsushita electric industrial's camera with a sensor that compresses image files into mts use?", + "qid": "4302274007000_grailqa", + "source": "grailqa", + "entities": { + "mts": "m.042zv3q", + "matsushita electric industrial": "m.0nk5b" + }, + "s_expression": "(AND digicams.camera_viewfinder_type (JOIN digicams.camera_viewfinder_type.digital_cameras (AND (JOIN (R digicams.camera_compressed_format.cameras) m.042zv3q) (JOIN digicams.digital_camera.camera_sensor_manufacturer m.0nk5b))))", + "actions": [ + "get_relations(m.042zv3q)", + "get_neighbors(m.042zv3q,digicams.camera_compressed_format.cameras)", + "get_relations(m.0nk5b)", + "get_neighbors(m.0nk5b,digicams.camera_sensor_manufacturer.cameras)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,digicams.digital_camera.viewfinder_type)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.026krtn", + "entity_name": "Live preview" + }, + { + "answer_type": "Entity", + "answer_argument": "m.036132", + "entity_name": "Electronic viewfinder" + } + ] + }, + { + "question": "What city do a majority of the people who live in the location that contains Gebel Elba reside?", + "qid": "WebQTrn-3037_8b3815ec57389b13892dd5abb108cc4e_cwq", + "source": "cwq", + "entities": { + "Gebel Elba": "m.026cy73" + }, + "s_expression": "(ARGMAX (JOIN (R location.location.contains) (JOIN location.location.partially_contains m.026cy73)) topic_server.population_number)", + "actions": [ + "get_relations(m.026cy73)", + "get_neighbors(m.026cy73,location.location.partially_containedby)", + "get_relations(#0)", + "get_neighbors(#0,location.location.contains)", + "get_attributes(#1)", + "argmax(#1,topic_server.population_number)" + ], + "answer": [ + { + "answer_argument": "m.080msrv", + "answer_type": "Entity", + "entity_name": "Greater Cairo" + } + ] + }, + { + "question": "Who was the Vice President of the man about whom \"Gore Vidal's Lincoln\" was written?", + "qid": "WebQTrn-1777_5096e7f87655bfead420edf88c0629f0_cwq", + "source": "cwq", + "entities": { + "Gore Vidal's Lincoln": "m.04j21rb" + }, + "s_expression": "(ARGMAX (JOIN (R government.us_president.vice_president) (JOIN film.film_subject.films m.04j21rb)) government.us_vice_president.vice_president_number)", + "actions": [ + "get_relations(m.04j21rb)", + "get_neighbors(m.04j21rb,film.film.subjects)", + "get_relations(#0)", + "get_neighbors(#0,government.us_president.vice_president)", + "get_attributes(#1)", + "argmax(#1,government.us_vice_president.vice_president_number)" + ], + "answer": [ + { + "answer_argument": "m.0rmg", + "answer_type": "Entity", + "entity_name": "Andrew Johnson" + } + ] + }, + { + "question": "how many active websites are owned by monsoon multimedia?", + "qid": "3206340012000_grailqa", + "source": "grailqa", + "entities": { + "Active": "m.02hsn4g", + "Monsoon Multimedia": "m.02v_qm2" + }, + "s_expression": "(COUNT (AND internet.website (AND (JOIN internet.website.status m.02hsn4g) (JOIN (R internet.website_owner.websites_owned) m.02v_qm2))))", + "actions": [ + "get_relations(m.02hsn4g)", + "get_neighbors(m.02hsn4g,internet.website_status.sites)", + "get_relations(m.02v_qm2)", + "get_neighbors(m.02v_qm2,internet.website_owner.websites_owned)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "When is the last time that the champion of the 1956 Peque\u00c3\u00b1a Copa del Mundo de Clubes win the champions league?", + "qid": "WebQTrn-1606_d67df69c150ced0428b3bfedaa731cf9_cwq", + "source": "cwq", + "entities": { + "UEFA Champions League Final": "m.05nblxt", + "1956 peque\u00e3\u00b1a copa del mundo de clubes": "m.011q6011" + }, + "s_expression": "(ARGMAX (AND (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.championships m.011q6011)) (JOIN sports.sports_championship_event.championship m.05nblxt)) time.event.end_date)", + "actions": [ + "get_relations(m.011q6011)", + "get_neighbors(m.011q6011,sports.sports_championship_event.champion)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_relations(m.05nblxt)", + "get_neighbors(m.05nblxt,sports.sports_championship.events)", + "intersection(#1,#2)", + "get_attributes(#3)", + "argmax(#3,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.0gytd9j", + "answer_type": "Entity", + "entity_name": "2014 UEFA Champions League Final" + } + ] + }, + { + "question": "What film in the same genre as The True Story of The Three Little Pigs starred Adam Sandler?", + "qid": "WebQTrn-1677_4c971bef32fb5777fb8b18ead5a702fe_cwq", + "source": "cwq", + "entities": { + "Adam Sandler": "m.0pz91", + "The True Story of the Three Little Pigs": "g.11b5lzm6b0" + }, + "s_expression": "(AND (JOIN (R film.producer.film) m.0pz91) (JOIN film.film.genre (JOIN film.film_genre.films_in_this_genre g.11b5lzm6b0)))", + "actions": [ + "get_relations(m.0pz91)", + "get_neighbors(m.0pz91,film.producer.film)", + "get_relations(g.11b5lzm6b0)", + "get_neighbors(g.11b5lzm6b0,film.film.genre)", + "get_relations(#1)", + "get_neighbors(#1,film.film_genre.films_in_this_genre)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.010rdrd1" + }, + { + "answer_argument": "m.02m7tn" + } + ] + }, + { + "question": "electronic arts has how many games found in the united states?", + "qid": "444000002_graphquestions", + "source": "graphquestions", + "entities": { + "Electronic Arts": "m.01n073", + "united states": "m.09c7w0" + }, + "s_expression": "(COUNT (AND cvg.game_version (AND (JOIN (R cvg.cvg_publisher.game_versions_published) m.01n073) (JOIN cvg.game_version.regions m.09c7w0))))", + "actions": [ + "get_relations(m.01n073)", + "get_neighbors(m.01n073,cvg.cvg_publisher.game_versions_published)", + "get_relations(m.09c7w0)", + "get_neighbors(m.09c7w0,cvg.computer_game_region.versions_released_in_this_region)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "5" + } + ] + }, + { + "question": "resurrection high school and the publisher of cairn magazine fall under which category of schools?", + "qid": "4301751001000_grailqa", + "source": "grailqa", + "entities": { + "Cairn Magazine": "m.010pldkg", + "Resurrection High School": "m.02r89nh" + }, + "s_expression": "(AND education.school_category (AND (JOIN (R education.educational_institution.school_type) (JOIN (R education.school_magazine.school) m.010pldkg)) (JOIN (R education.educational_institution.school_type) m.02r89nh)))", + "actions": [ + "get_relations(m.010pldkg)", + "get_neighbors(m.010pldkg,education.school_magazine.school)", + "get_relations(#0)", + "get_neighbors(#0,education.educational_institution.school_type)", + "get_relations(m.02r89nh)", + "get_neighbors(m.02r89nh,education.educational_institution.school_type)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01rs41", + "entity_name": "Private school" + } + ] + }, + { + "question": "what type of dish contains crawfish tails and is common in louisiana creole cuisine?", + "qid": "4301356011000_grailqa", + "source": "grailqa", + "entities": { + "Crawfish tails": "m.07706lz", + "Louisiana Creole cuisine": "m.016w_c" + }, + "s_expression": "(AND food.type_of_dish (JOIN food.type_of_dish.dishes (AND (JOIN food.dish.ingredients m.07706lz) (JOIN (R dining.cuisine.dishes) m.016w_c))))", + "actions": [ + "get_relations(m.07706lz)", + "get_neighbors(m.07706lz,food.ingredient.dishes)", + "get_relations(m.016w_c)", + "get_neighbors(m.016w_c,dining.cuisine.dishes)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,food.dish.type_of_dish1)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01z1m1x", + "entity_name": "Soup" + } + ] + }, + { + "question": "the plymouth caravelle and \u0161koda 110 r are in which class of automobiles?", + "qid": "4301079001000_grailqa", + "source": "grailqa", + "entities": { + "\u0160koda 110 R": "m.026ksp4", + "Plymouth Caravelle": "m.03jbwv" + }, + "s_expression": "(AND automotive.automotive_class (AND (JOIN automotive.automotive_class.examples (JOIN (R automotive.model.predecessor) m.026ksp4)) (JOIN automotive.automotive_class.examples m.03jbwv)))", + "actions": [ + "get_relations(m.026ksp4)", + "get_neighbors(m.026ksp4,automotive.model.predecessor)", + "get_relations(#0)", + "get_neighbors(#0,automotive.model.automotive_class)", + "get_relations(m.03jbwv)", + "get_neighbors(m.03jbwv,automotive.model.automotive_class)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01d1dj", + "entity_name": "Coup\u00e9" + }, + { + "answer_type": "Entity", + "answer_argument": "m.021mp2", + "entity_name": "Sedan" + } + ] + }, + { + "question": "what is the sensor type of a digital camera that has the color filter array type of bayer and iso settings of 120?", + "qid": "4300861022000_grailqa", + "source": "grailqa", + "entities": { + "bayer": "m.02r8js", + "120": "m.04pf295" + }, + "s_expression": "(AND digicams.camera_sensor_type (JOIN (R digicams.digital_camera.sensor_type) (AND (JOIN digicams.digital_camera.color_filter_array_type m.02r8js) (JOIN digicams.digital_camera.iso_setting m.04pf295))))", + "actions": [ + "get_relations(m.02r8js)", + "get_neighbors(m.02r8js,digicams.camera_color_filter_array_type.cameras)", + "get_relations(m.04pf295)", + "get_neighbors(m.04pf295,digicams.camera_iso.cameras)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,digicams.digital_camera.sensor_type)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01zqt", + "entity_name": "Charge-coupled device" + } + ] + }, + { + "question": "what are the diseases transmitted through sex that have the same type of infectious agents as tuberculosis?", + "qid": "481000400_graphquestions", + "source": "graphquestions", + "entities": { + "Sex": "m.06ng1", + "Tuberculosis": "m.07jwr" + }, + "s_expression": "(AND medicine.infectious_disease (AND (JOIN (R medicine.transmission_route.infections_that_travel_this_way) m.06ng1) (JOIN medicine.infectious_disease.infectious_agent_type (JOIN medicine.type_of_infectious_agent.diseases m.07jwr))))", + "actions": [ + "get_relations(m.06ng1)", + "get_neighbors(m.06ng1,medicine.transmission_route.infections_that_travel_this_way)", + "get_relations(m.07jwr)", + "get_neighbors(m.07jwr,medicine.infectious_disease.infectious_agent_type)", + "get_relations(#1)", + "get_neighbors(#1,medicine.type_of_infectious_agent.diseases)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.020gd", + "entity_name": "Chlamydia infection" + }, + { + "answer_type": "Entity", + "answer_argument": "m.023zy9", + "entity_name": "Chancroid" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0254zq", + "entity_name": "Granuloma inguinale" + }, + { + "answer_type": "Entity", + "answer_argument": "m.074m2", + "entity_name": "Syphilis" + } + ] + }, + { + "question": "the same rocket manufacturer who manufactured ares i and saturn-v created what other rocket?", + "qid": "4300129004000_grailqa", + "source": "grailqa", + "entities": { + "Ares I": "m.0dqk5f", + "saturn-v": "m.07932" + }, + "s_expression": "(AND spaceflight.rocket (JOIN spaceflight.rocket.manufacturer (AND (JOIN (R spaceflight.rocket.manufacturer) m.0dqk5f) (JOIN spaceflight.rocket_manufacturer.rockets_manufactured m.07932))))", + "actions": [ + "get_relations(m.0dqk5f)", + "get_neighbors(m.0dqk5f,spaceflight.rocket.manufacturer)", + "get_relations(m.07932)", + "get_neighbors(m.07932,spaceflight.rocket.manufacturer)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,spaceflight.rocket_manufacturer.rockets_manufactured)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0269d32", + "entity_name": "Saturn-Shuttle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02_9dl", + "entity_name": "Delta IV" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03pvlp", + "entity_name": "Delta III" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0d8cz_", + "entity_name": "Saturn INT-21" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0fbp58", + "entity_name": "Saturn INT-20" + }, + { + "answer_type": "Entity", + "answer_argument": "m.026j5q", + "entity_name": "Delta II" + } + ] + }, + { + "question": "In what city do most of the people in the place where the Egyptian Mau breed originated?", + "qid": "WebQTrn-3037_6ca8cba7511811830a04cd64a8a4cf77_cwq", + "source": "cwq", + "entities": { + "Egyptian Mau": "m.0229mb" + }, + "s_expression": "(ARGMAX (JOIN (R location.location.contains) (JOIN biology.breed_origin.breeds_originating_here m.0229mb)) topic_server.population_number)", + "actions": [ + "get_relations(m.0229mb)", + "get_neighbors(m.0229mb,biology.animal_breed.place_of_origin)", + "get_relations(#0)", + "get_neighbors(#0,location.location.contains)", + "get_attributes(#1)", + "argmax(#1,topic_server.population_number)" + ], + "answer": [ + { + "answer_argument": "m.080msrv", + "answer_type": "Entity", + "entity_name": "Greater Cairo" + } + ] + }, + { + "question": "tempus destroyed an item belonging to which character with the ability of soul destruction?", + "qid": "4302209012000_grailqa", + "source": "grailqa", + "entities": { + "Tempus": "m.0bxj80p", + "soul destruction": "m.0c1rylz" + }, + "s_expression": "(AND fictional_universe.fictional_character (AND (JOIN fictional_universe.fictional_character.has_possessed (JOIN fictional_universe.fictional_object.destroyer m.0bxj80p)) (JOIN fictional_universe.fictional_character.powers_or_abilities m.0c1rylz)))", + "actions": [ + "get_relations(m.0bxj80p)", + "get_neighbors(m.0bxj80p,fictional_universe.fictional_object_destroyer.fictional_objects_destroyed)", + "get_relations(#0)", + "get_neighbors(#0,fictional_universe.fictional_object.owner)", + "get_relations(m.0c1rylz)", + "get_neighbors(m.0c1rylz,fictional_universe.character_powers.characters_with_this_ability)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0c0b19n", + "entity_name": "Cime" + } + ] + }, + { + "question": "which olympic event was officially contested in the 1936 olympics,as well as other olympic games in amesterdam?", + "qid": "4300161011000_grailqa", + "source": "grailqa", + "entities": { + "amesterdam": "m.0k3p", + "1936 olympics": "m.09x3r" + }, + "s_expression": "(AND olympics.olympic_event (AND (JOIN olympics.olympic_event.olympic_games_contested (JOIN olympics.olympic_games.host_city m.0k3p)) (JOIN olympics.olympic_event.olympic_games_contested m.09x3r)))", + "actions": [ + "get_relations(m.0k3p)", + "get_neighbors(m.0k3p,olympics.olympic_host_city.olympics_hosted)", + "get_relations(#0)", + "get_neighbors(#0,olympics.olympic_games.events)", + "get_relations(m.09x3r)", + "get_neighbors(m.09x3r,olympics.olympic_games.events)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.04fk3lm", + "entity_name": "Women's Discus throw" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07gnx9y", + "entity_name": "Men's 300m Free Rifle, 3 Positions" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3cx", + "entity_name": "Men's \u00c9p\u00e9e individual" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07fp6sy", + "entity_name": "Men's Weightlifting, Light Heavyweight 75-82.5kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2_w", + "entity_name": "Men's Track cycling, Sprint individual" + }, + { + "answer_type": "Entity", + "answer_argument": "m.079rjhk", + "entity_name": "Track Cycling, Men's 1000m Time Trial" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3cl", + "entity_name": "Men's Shot put" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk326", + "entity_name": "Men's 200m breaststroke" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2pv", + "entity_name": "Men's Javelin throw" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2hx", + "entity_name": "Men's 1500m freestyle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07ngnwg", + "entity_name": "Men's Boxing, Middleweight 66.7-72.6kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2pc", + "entity_name": "Men's Discus throw" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk368", + "entity_name": "Women's High jump" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04f9lcn", + "entity_name": "Women's 3 metre springboard" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04f9ld0", + "entity_name": "Men's 3 metre springboard" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04f9ld6", + "entity_name": "Women's 10 metre platform" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk29t", + "entity_name": "Men's Parallel bars" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2c_", + "entity_name": "Men's Gymnastics, individual all-round" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2cj", + "entity_name": "Men's Long jump" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2dm", + "entity_name": "Women's Foil individual" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2f7", + "entity_name": "Men's 50m pistol" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2gh", + "entity_name": "Eventing, individual" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2hl", + "entity_name": "Men's Athletics, 100m" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2jp", + "entity_name": "Men's Athletics, 5000m" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2lq", + "entity_name": "Men's Foil individual" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2mz", + "entity_name": "Men's Marathon" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2qm", + "entity_name": "Men's Athletics, 400m" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2qs", + "entity_name": "Men's 100m freestyle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2rd", + "entity_name": "Men's Pole vault" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2sn", + "entity_name": "Women's 100m backstroke" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2tl", + "entity_name": "Men's Athletics, 400m hurdles" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2tx", + "entity_name": "Women's 400m freestyle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2x7", + "entity_name": "Men's Pommel horse" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2xq", + "entity_name": "Men's Sabre individual" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2yb", + "entity_name": "Jumping, individual" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2yh", + "entity_name": "Men's Athletics, 200m" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2zl", + "entity_name": "Men's Horizontal bar" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk300", + "entity_name": "Men's Hammer throw" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk30h", + "entity_name": "Men's Athletics, 110m hurdles" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk30t", + "entity_name": "Men's 400m freestyle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk32_", + "entity_name": "Men's Triple jump" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk32p", + "entity_name": "Men's High jump" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk33m", + "entity_name": "Women's 200m breaststroke" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk35z", + "entity_name": "Men's Modern pentathlon" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk39d", + "entity_name": "Men's Vault" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk39q", + "entity_name": "Women's 100m freestyle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk39w", + "entity_name": "Men's Athletics, 10000m" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3b5", + "entity_name": "Men's Athletics, 800m" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3bh", + "entity_name": "Men's 100m backstroke" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3d6", + "entity_name": "Men's 50m rifle prone" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3dj", + "entity_name": "Men's Decathlon" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3fm", + "entity_name": "Men's 3000m steeplechase" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3kp", + "entity_name": "Men's Rings" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3l9", + "entity_name": "Men's Single sculls" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk3n5", + "entity_name": "Men's Athletics, 1500m" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07fp6br", + "entity_name": "Men's Weightlifting, Middleweight 67.5-75kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07fp6rz", + "entity_name": "Men's Weightlifting, Lightweight 60-67.5kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mrmgy", + "entity_name": "Men's Freestyle Wrestling, Heavyweight +87" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mrmq7", + "entity_name": "Men's Freestyle Wrestling, Light Heavyweight 79-87kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mvl2f", + "entity_name": "Men's Weightlifting, Heavyweight +82.5" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mx9ns", + "entity_name": "Men's Boxing, Flyweight -50.8kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mx9p9", + "entity_name": "Men's Boxing, Featherweight 53.5-57.2kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mx9pt", + "entity_name": "Men's Boxing, Welterweight 61.2-66.7kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mx9qd", + "entity_name": "Men's Boxing, Light Heavyweight 72.6-79.4kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mx9r1", + "entity_name": "Men's Boxing, Heavyweight +79.4kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07mxbhd", + "entity_name": "Men's Freestyle Wrestling, Lightweight 61-66kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07n660_", + "entity_name": "Men's Boxing, Bantamweight 50.8-53.5kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07n661m", + "entity_name": "Men's boxing, lightweight 57.2-61.2 kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07n668v", + "entity_name": "Men's Freestyle Wrestling, Welterweight 66-72kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07n6tlh", + "entity_name": "Men's Freestyle Wrestling, Middleweight 72-79 kg" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07ngwtp", + "entity_name": "Men's Weightlifting, featherweight -60" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0k1nqc0", + "entity_name": "Individual Dressage" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fk2mn", + "entity_name": "Women's Athletics, 100m" + } + ] + }, + { + "question": "of tropical cyclones that affected tci, which are in the same category with tropical storm linda?", + "qid": "4300198002000_grailqa", + "source": "grailqa", + "entities": { + "Tropical Storm Linda": "m.0bhbf6b", + "tci": "m.07fr_" + }, + "s_expression": "(AND meteorology.tropical_cyclone (AND (JOIN (R meteorology.tropical_cyclone_category.tropical_cyclones) (JOIN (R meteorology.tropical_cyclone.category) m.0bhbf6b)) (JOIN meteorology.tropical_cyclone.affected_areas m.07fr_)))", + "actions": [ + "get_relations(m.0bhbf6b)", + "get_neighbors(m.0bhbf6b,meteorology.tropical_cyclone.category)", + "get_relations(#0)", + "get_neighbors(#0,meteorology.tropical_cyclone_category.tropical_cyclones)", + "get_relations(m.07fr_)", + "get_neighbors(m.07fr_,meteorology.cyclone_affected_area.cyclones)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.04jhm3w", + "entity_name": "Hurricane Hanna" + } + ] + }, + { + "question": "which breeds have similar temperament as the picardy spaniel and the seppala siberian sleddogs?", + "qid": "4300795005000_grailqa", + "source": "grailqa", + "entities": { + "Picardy Spaniel": "m.02qx_df", + "seppala siberian sleddogs": "m.01p08w" + }, + "s_expression": "(AND biology.animal_breed (JOIN biology.animal_breed.temperament (AND (JOIN (R biology.animal_breed.temperament) m.02qx_df) (JOIN biology.breed_temperament.breeds m.01p08w))))", + "actions": [ + "get_relations(m.02qx_df)", + "get_neighbors(m.02qx_df,biology.animal_breed.temperament)", + "get_relations(m.01p08w)", + "get_neighbors(m.01p08w,biology.animal_breed.temperament)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,biology.breed_temperament.breeds)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02r4blp", + "entity_name": "Braque d'Auvergne" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01f57_", + "entity_name": "Chinese Crested Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01p39m", + "entity_name": "American Water Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03htgw", + "entity_name": "Koolie" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03ysz", + "entity_name": "Italian Greyhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05sfy0", + "entity_name": "L\u00f6wchen" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08s0ws", + "entity_name": "Boykin Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02kwdc", + "entity_name": "German Wirehaired Pointer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0gx1zf", + "entity_name": "Billy" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0dhvj7", + "entity_name": "Kromfohrl\u00e4nder" + }, + { + "answer_type": "Entity", + "answer_argument": "m.074g8y", + "entity_name": "Manchester Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05h0h0", + "entity_name": "Bull Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0182yx", + "entity_name": "Shetland Sheepdog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.062dgz", + "entity_name": "Lagotto Romagnolo" + }, + { + "answer_type": "Entity", + "answer_argument": "g.121bvrw_", + "entity_name": "Biewer Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.011lh", + "entity_name": "Azawakh" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0183xd", + "entity_name": "Vizsla" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01cx_v", + "entity_name": "Chesapeake Bay Retriever" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01hzb8", + "entity_name": "Great Pyrenees" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01j0x", + "entity_name": "Basenji" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01kv93", + "entity_name": "Staffordshire Bull Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01p3d7", + "entity_name": "Alaskan Malamute" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01p5rd", + "entity_name": "Bernese Mountain Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01pm38", + "entity_name": "Clumber Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01s7fj", + "entity_name": "Shih Tzu" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01x5q1", + "entity_name": "J\u00e4mthund" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xtxb", + "entity_name": "Cavalier King Charles Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.020z5t", + "entity_name": "English Springer Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.025wmcw", + "entity_name": "Cavapoo" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0266ts8", + "entity_name": "Basset Bleu de Gascogne" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02700gv", + "entity_name": "Ariegeois" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0271kpq", + "entity_name": "Spanish Water Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.027dtrb", + "entity_name": "Swedish Lapphund" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02_73c", + "entity_name": "Rat Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02cyl6", + "entity_name": "Maltese" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02kf24", + "entity_name": "Australian Shepherd" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02kgrx", + "entity_name": "Cardigan Welsh Corgi" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02kw9d", + "entity_name": "German Shorthaired Pointer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02nscg", + "entity_name": "Bearded Collie" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02rfz5", + "entity_name": "Irish Soft-coated Wheaten Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02vjrc", + "entity_name": "Groenendael" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02wbf7", + "entity_name": "Bedlington Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02wbgd", + "entity_name": "English Cocker Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02wcn0z", + "entity_name": "Russian Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.031pqh", + "entity_name": "Peruvian Hairless Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0353h4", + "entity_name": "Border Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0353qr", + "entity_name": "Dandie Dinmont Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0388_c", + "entity_name": "Japanese Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.038wt3", + "entity_name": "French Bulldog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.039rzl", + "entity_name": "Irish Setter" + }, + { + "answer_type": "Entity", + "answer_argument": "m.039s48", + "entity_name": "Irish Red and White Setter" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03_7wn", + "entity_name": "Pointer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03_vlr", + "entity_name": "Smooth Fox Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03cq_p", + "entity_name": "Kerry Blue Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03d12", + "entity_name": "Greyhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03fyyd", + "entity_name": "Shar Pei" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03jjm4", + "entity_name": "Norwich Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03l5cy", + "entity_name": "Spinone Italiano" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03ydd_", + "entity_name": "Havanese" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0403wp9", + "entity_name": "Muggin" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0410k_5", + "entity_name": "Treeing Tennessee Brindle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04dm6", + "entity_name": "Komondor" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04gp8k", + "entity_name": "English Mastiff" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04jj62w", + "entity_name": "Llewellyn" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04mgcx", + "entity_name": "Bench-Legged Feist" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04nmst", + "entity_name": "King Charles Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04prkf", + "entity_name": "Small M\u00fcnsterl\u00e4nder" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04svjlt", + "entity_name": "American Squirrel Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04svljl", + "entity_name": "Braque Saint-Germain" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04swl7y", + "entity_name": "Halden Hound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04swlxt", + "entity_name": "Hellenikos Ichnilatis" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04sxcxt", + "entity_name": "Posavac Hound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04t5jl6", + "entity_name": "American Leopard Hound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.057_4d", + "entity_name": "Canadian Eskimo Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05kz7n", + "entity_name": "Rajapalayam" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05t252", + "entity_name": "Volpino Italiano" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05tbqb", + "entity_name": "Coton de Tulear" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05y236", + "entity_name": "New Guinea singing dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.06h8yy", + "entity_name": "Dogo Argentino" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0708qt", + "entity_name": "Artois Hound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.074pqh", + "entity_name": "Spanish Mastiff" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0773fb", + "entity_name": "Treeing Walker Coonhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0778jb", + "entity_name": "Redbone Coonhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07blj0", + "entity_name": "Large M\u00fcnsterl\u00e4nder" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07dx0m", + "entity_name": "Japanese Spitz" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07j9bq", + "entity_name": "Alano Espa\u00f1ol" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08626", + "entity_name": "Whippet" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08f_zh", + "entity_name": "Pont-Audemer Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08gl4z", + "entity_name": "Dutch Shepherd Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08mgkp", + "entity_name": "American Staghound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0bjrtp", + "entity_name": "Cirneco dell'Etna" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0bllpv", + "entity_name": "Puggle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0bq1jd", + "entity_name": "Kaikadi" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cbgst", + "entity_name": "Kintamani" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0djh8b", + "entity_name": "Silken Windhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0dpx6y", + "entity_name": "German Longhaired Pointer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0f339h", + "entity_name": "Portuguese Pointer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0fgh8v", + "entity_name": "Cesky Fousek" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0fl887", + "entity_name": "Braque du Bourbonnais" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0gt5n2", + "entity_name": "Cretan Hound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0gvx7", + "entity_name": "Pharaoh Hound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0hw_s", + "entity_name": "Basset Hound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0nr94", + "entity_name": "Bichon Frise" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04p3f7", + "entity_name": "Standard Schnauzer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01p29g", + "entity_name": "Alapaha Blue Blood Bulldog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01pyhj", + "entity_name": "Shiloh Shepherd Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.020dr1", + "entity_name": "Bluetick coonhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.025_s2m", + "entity_name": "Black Mouth Cur" + }, + { + "answer_type": "Entity", + "answer_argument": "m.025tcp1", + "entity_name": "Russell Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.026qz0j", + "entity_name": "Polish Hunting Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02fvym", + "entity_name": "Goldendoodle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02fxgn", + "entity_name": "Cockapoo" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02kfwr", + "entity_name": "Poodle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02ktbm", + "entity_name": "Smooth Collie" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02n_s4", + "entity_name": "Korean Jindo" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02pp4mc", + "entity_name": "Bohemian Shepherd" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02pxllv", + "entity_name": "Blue Picardy Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02z57c", + "entity_name": "Cairn Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03b6hk", + "entity_name": "Catalan Sheepdog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03jgg9", + "entity_name": "Cesky Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0408cgh", + "entity_name": "Stephens Cur" + }, + { + "answer_type": "Entity", + "answer_argument": "m.044lwh", + "entity_name": "Irish Water Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04sxb0m", + "entity_name": "Kemmer Stock Hybrid Squirrel Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04sxbjk", + "entity_name": "Parnell's Carolina Cur" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05py4h", + "entity_name": "Old Danish Pointer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.06k88g", + "entity_name": "Hovawart" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07bln6", + "entity_name": "Curly Coated Retriever" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07p7st", + "entity_name": "Portuguese Podengo" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07t_h2", + "entity_name": "Africanis" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07vgwn", + "entity_name": "Pumi" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08c5h8", + "entity_name": "Brazilian Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.09v1cn", + "entity_name": "Ratonero Bodeguero Andaluz" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0b26w3", + "entity_name": "Schnoodle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0b3s8y", + "entity_name": "Czechoslovakian Wolfdog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0bq2r1", + "entity_name": "Indian Spitz" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0c3k58", + "entity_name": "Pra\u017esk\u00fd Krysa\u0159\u00edk" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cqpth", + "entity_name": "Hortaya borzaya" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0fsg8", + "entity_name": "Harrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0hkfc", + "entity_name": "Kooikerhondje" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0m1ct", + "entity_name": "Wirehaired Pointing Griffon" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0blw4s", + "entity_name": "Huntaway" + }, + { + "answer_type": "Entity", + "answer_argument": "m.016wfy", + "entity_name": "Pomeranian" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01z404", + "entity_name": "Newfoundland" + }, + { + "answer_type": "Entity", + "answer_argument": "m.027z5xc", + "entity_name": "Gull Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02f1fz", + "entity_name": "West Highland White Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02kdvy", + "entity_name": "Pyrenean Shepherd" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02l61f", + "entity_name": "Rough Collie" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02pl0tr", + "entity_name": "Dorgi" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02ppbk1", + "entity_name": "American English Coonhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02qllrh", + "entity_name": "Porcelaine" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02rf9c3", + "entity_name": "Central Anatolian Shepherd Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02rjc05", + "entity_name": "Dalmatian" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02rwwfw", + "entity_name": "Kyi-Leo" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02ryncw", + "entity_name": "Ariege Pointer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02vjst", + "entity_name": "Laekenois" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02xp9c", + "entity_name": "Miniature Australian Shepherd" + }, + { + "answer_type": "Entity", + "answer_argument": "m.032xlb", + "entity_name": "Irish Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.032xv1", + "entity_name": "Lakeland Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.038wvd", + "entity_name": "Toy Bulldog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03grfxm", + "entity_name": "Taigan" + }, + { + "answer_type": "Entity", + "answer_argument": "m.045lcs", + "entity_name": "Chien Fran\u00e7ais Blanc et Noir" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04fzvx", + "entity_name": "Cane Corso" + }, + { + "answer_type": "Entity", + "answer_argument": "m.051ppn", + "entity_name": "Glen of Imaal Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.053_t0", + "entity_name": "Stabyhoun" + }, + { + "answer_type": "Entity", + "answer_argument": "m.055br8", + "entity_name": "Thai Bangkaew Dog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05bkt9", + "entity_name": "German Spitz" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05c21l", + "entity_name": "South Russian Ovcharka" + }, + { + "answer_type": "Entity", + "answer_argument": "m.06m828", + "entity_name": "Petit Basset Griffon Vend\u00e9en" + }, + { + "answer_type": "Entity", + "answer_argument": "m.06w066", + "entity_name": "English Foxhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08c4cj", + "entity_name": "Irish Bull Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08pmt0", + "entity_name": "Alaskan Klee Kai" + }, + { + "answer_type": "Entity", + "answer_argument": "m.08r0rx", + "entity_name": "Norrbottenspets" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0dflqz", + "entity_name": "Blue Lacy" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0dgnzvz", + "entity_name": "Burgos Pointer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.018z4d", + "entity_name": "Bloodhound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01p2dp", + "entity_name": "Affenpinscher" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02bp0t", + "entity_name": "Pekingese" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02vjtz", + "entity_name": "Malinois" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02xlqx", + "entity_name": "Basset Fauve de Bretagne" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0353wm", + "entity_name": "English Toy Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03cr7fw", + "entity_name": "Morkie" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03ys4", + "entity_name": "Ibizan Hound" + }, + { + "answer_type": "Entity", + "answer_argument": "m.049jr6", + "entity_name": "American Pit Bull Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04dzzn", + "entity_name": "Neapolitan Mastiff" + }, + { + "answer_type": "Entity", + "answer_argument": "m.05pyhd", + "entity_name": "Tibetan Terrier" + }, + { + "answer_type": "Entity", + "answer_argument": "m.06c5rq", + "entity_name": "Grand Bleu de Gascogne" + }, + { + "answer_type": "Entity", + "answer_argument": "m.081zj5", + "entity_name": "Welsh Springer Spaniel" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0fxnkq", + "entity_name": "Moscow Watchdog" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0fzb8x", + "entity_name": "Bracco Italiano" + } + ] + }, + { + "question": "what is the number of programming language paradigms for euclid and bliss ?", + "qid": "3205793006000_grailqa", + "source": "grailqa", + "entities": { + "Euclid": "m.03fbrg", + "BLISS": "m.022l9v" + }, + "s_expression": "(COUNT (AND computer.programming_language_paradigm (AND (JOIN (R computer.programming_language.language_paradigms) m.03fbrg) (JOIN computer.programming_language_paradigm.languages m.022l9v))))", + "actions": [ + "get_relations(m.03fbrg)", + "get_neighbors(m.03fbrg,computer.programming_language.language_paradigms)", + "get_relations(m.022l9v)", + "get_neighbors(m.022l9v,computer.programming_language.language_paradigms)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "2" + } + ] + }, + { + "question": "which type of symptoms does the fip and old age diseases have in common?", + "qid": "246000302_graphquestions", + "source": "graphquestions", + "entities": { + "fip": "m.06_1k9", + "Old age": "m.01hbgs" + }, + "s_expression": "(AND base.pethealth.symptom (AND (JOIN (R base.pethealth.pet_disease_or_medical_condition.symptoms) m.06_1k9) (JOIN (R base.pethealth.pet_disease_or_medical_condition.symptoms) (JOIN (R base.pethealth.pet_disease_risk_factor.pet_diseases_with_this_risk_factor) m.01hbgs))))", + "actions": [ + "get_relations(m.06_1k9)", + "get_neighbors(m.06_1k9,base.pethealth.pet_disease_or_medical_condition.symptoms)", + "get_relations(m.01hbgs)", + "get_neighbors(m.01hbgs,base.pethealth.pet_disease_risk_factor.pet_diseases_with_this_risk_factor)", + "get_relations(#1)", + "get_neighbors(#1,base.pethealth.pet_disease_or_medical_condition.symptoms)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.023s6n", + "entity_name": "Weight loss" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0brgy", + "entity_name": "Anorexia" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0f3kl", + "entity_name": "Diarrhea" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cjf0", + "entity_name": "Fever" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01j6t0", + "entity_name": "Fatigue" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0lcdk", + "entity_name": "Anemia" + } + ] + }, + { + "question": "which unit mass utilises a system of measurement that uses the energy density unit of joule per cubic metre and has a maximum weightmass in kilograms?", + "qid": "4302823001000_grailqa", + "source": "grailqa", + "entities": { + "Joule per cubic metre": "m.02sj51f" + }, + "s_expression": "(ARGMAX (AND measurement_unit.mass_unit (JOIN (R measurement_unit.measurement_system.weight_units) (JOIN (R measurement_unit.energy_density_unit.measurement_system) m.02sj51f))) measurement_unit.mass_unit.weightmass_in_kilograms)", + "actions": [ + "get_relations(m.02sj51f)", + "get_neighbors(m.02sj51f,measurement_unit.energy_density_unit.measurement_system)", + "get_relations(#0)", + "get_neighbors(#0,measurement_unit.measurement_system.weight_units)", + "get_attributes(#1)", + "argmax(#1,measurement_unit.mass_unit.weightmass_in_kilograms)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.07ny7", + "entity_name": "Tonne" + } + ] + }, + { + "question": "the industry within which the international ladies garment workers union operates has what common parent industry that also is parent to the railway?", + "qid": "4301917003000_grailqa", + "source": "grailqa", + "entities": { + "international ladies garment workers union": "m.054w78", + "railway": "m.06d_3" + }, + "s_expression": "(AND business.industry (AND (JOIN (R business.industry.child_industry) (JOIN business.industry.trade_unions m.054w78)) (JOIN (R business.industry.child_industry) m.06d_3)))", + "actions": [ + "get_relations(m.054w78)", + "get_neighbors(m.054w78,business.trade_union.industry)", + "get_relations(#0)", + "get_neighbors(#0,business.industry.child_industry)", + "get_relations(m.06d_3)", + "get_neighbors(m.06d_3,business.industry.child_industry)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0126b6d7", + "entity_name": "Ballyclare Limited" + } + ] + }, + { + "question": "which cheese made from milk of ram has the same texture as black butte does?", + "qid": "4302129015000_grailqa", + "source": "grailqa", + "entities": { + "ram": "m.07bgp", + "Black Butte": "m.02h8b_j" + }, + "s_expression": "(AND food.cheese (AND (JOIN food.cheese.source_of_milk m.07bgp) (JOIN (R food.cheese_texture.cheeses) (JOIN food.cheese_texture.cheeses m.02h8b_j))))", + "actions": [ + "get_relations(m.07bgp)", + "get_neighbors(m.07bgp,food.cheese_milk_source.cheeses)", + "get_relations(m.02h8b_j)", + "get_neighbors(m.02h8b_j,food.cheese.texture)", + "get_relations(#1)", + "get_neighbors(#1,food.cheese_texture.cheeses)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02h89g8", + "entity_name": "Azeitao" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02h8b66", + "entity_name": "Beenleigh Blue" + } + ] + }, + { + "question": "a digital camera that has the color filter array type of bayer and iso settings of 2000 has what sensor type?", + "qid": "4300861000000_grailqa", + "source": "grailqa", + "entities": { + "bayer": "m.02r8js", + "2000": "m.04l497s" + }, + "s_expression": "(AND digicams.camera_sensor_type (JOIN (R digicams.digital_camera.sensor_type) (AND (JOIN digicams.digital_camera.color_filter_array_type m.02r8js) (JOIN digicams.digital_camera.iso_setting m.04l497s))))", + "actions": [ + "get_relations(m.02r8js)", + "get_neighbors(m.02r8js,digicams.camera_color_filter_array_type.cameras)", + "get_relations(m.04l497s)", + "get_neighbors(m.04l497s,digicams.camera_iso.cameras)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,digicams.digital_camera.sensor_type)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02x3xhq", + "entity_name": "Live MOS" + } + ] + }, + { + "question": "What attractions can a visitor see if they are visiting the place where the film Eden Court was located?", + "qid": "WebQTrn-825_498677b7af0b61e338f886059e90f2d7_cwq", + "source": "cwq", + "entities": { + "Eden Court": "m.0cr696l" + }, + "s_expression": "(JOIN (R travel.travel_destination.tourist_attractions) (AND (JOIN (R location.location.containedby) common.topic) (JOIN film.film_location.featured_in_films m.0cr696l)))", + "actions": [ + "get_relations(common.topic)", + "get_neighbors(common.topic,location.location.containedby)", + "get_relations(m.0cr696l)", + "get_neighbors(m.0cr696l,film.film.featured_film_locations)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,travel.travel_destination.tourist_attractions)" + ], + "answer": [ + { + "answer_argument": "m.01dlzc", + "answer_type": "Entity", + "entity_name": "Adler Planetarium" + }, + { + "answer_argument": "m.021czc", + "answer_type": "Entity", + "entity_name": "Field Museum of Natural History" + }, + { + "answer_argument": "m.025v4fb", + "answer_type": "Entity", + "entity_name": "Lincoln Park Zoo" + }, + { + "answer_argument": "m.027hqc_", + "answer_type": "Entity", + "entity_name": "Art Institute of Chicago" + }, + { + "answer_argument": "m.02jw0z", + "answer_type": "Entity", + "entity_name": "Shedd Aquarium" + }, + { + "answer_argument": "m.02rvwrv", + "answer_type": "Entity", + "entity_name": "Art Institute of Chicago Building" + }, + { + "answer_argument": "m.05zv09", + "answer_type": "Entity", + "entity_name": "Chicago Cultural Center" + }, + { + "answer_argument": "m.06_7k", + "answer_type": "Entity", + "entity_name": "Willis Tower" + }, + { + "answer_argument": "m.0b0sh", + "answer_type": "Entity", + "entity_name": "Wrigley Field" + }, + { + "answer_argument": "m.0b28z", + "answer_type": "Entity", + "entity_name": "John Hancock Center" + }, + { + "answer_argument": "m.0bl8mx", + "answer_type": "Entity", + "entity_name": "DuSable Museum of African American History" + }, + { + "answer_argument": "m.0c7ln", + "answer_type": "Entity", + "entity_name": "Navy Pier" + }, + { + "answer_argument": "m.0d9wz", + "answer_type": "Entity", + "entity_name": "Museum of Science and Industry" + }, + { + "answer_argument": "m.0g_8d0", + "answer_type": "Entity", + "entity_name": "Cadillac Palace Theatre" + }, + { + "answer_argument": "m.0w7m2x9", + "answer_type": "Entity", + "entity_name": "Muslim Community Center" + } + ] + }, + { + "question": "feline infectious peritonitis and some disease caused by old share which symptoms?", + "qid": "246000001_graphquestions", + "source": "graphquestions", + "entities": { + "Feline infectious peritonitis": "m.06_1k9", + "old": "m.01hbgs" + }, + "s_expression": "(AND base.pethealth.symptom (AND (JOIN (R base.pethealth.pet_disease_or_medical_condition.symptoms) m.06_1k9) (JOIN (R base.pethealth.pet_disease_or_medical_condition.symptoms) (JOIN (R base.pethealth.pet_disease_risk_factor.pet_diseases_with_this_risk_factor) m.01hbgs))))", + "actions": [ + "get_relations(m.06_1k9)", + "get_neighbors(m.06_1k9,base.pethealth.pet_disease_or_medical_condition.symptoms)", + "get_relations(m.01hbgs)", + "get_neighbors(m.01hbgs,base.pethealth.pet_disease_risk_factor.pet_diseases_with_this_risk_factor)", + "get_relations(#1)", + "get_neighbors(#1,base.pethealth.pet_disease_or_medical_condition.symptoms)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.023s6n", + "entity_name": "Weight loss" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0brgy", + "entity_name": "Anorexia" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0f3kl", + "entity_name": "Diarrhea" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cjf0", + "entity_name": "Fever" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01j6t0", + "entity_name": "Fatigue" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0lcdk", + "entity_name": "Anemia" + } + ] + }, + { + "question": "besides paper embossing, what other art forms were made by pierre redon?", + "qid": "4302283009000_grailqa", + "source": "grailqa", + "entities": { + "Pierre Redon": "m.05c96m6", + "Paper embossing": "m.020fn9" + }, + "s_expression": "(AND visual_art.visual_art_form (JOIN (R visual_art.artwork.art_form) (AND (JOIN visual_art.artwork.artist m.05c96m6) (JOIN visual_art.artwork.art_form m.020fn9))))", + "actions": [ + "get_relations(m.05c96m6)", + "get_neighbors(m.05c96m6,visual_art.visual_artist.artworks)", + "get_relations(m.020fn9)", + "get_neighbors(m.020fn9,visual_art.visual_art_form.artworks)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,visual_art.artwork.art_form)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01ng72", + "entity_name": "Metalworking" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01pkk0", + "entity_name": "Bas-relief" + } + ] + }, + { + "question": "how many elements about public affairs programming are made by the producer of communism, u.s. brand?", + "qid": "4303008012000_grailqa", + "source": "grailqa", + "entities": { + "public affairs programming": "m.026pm0p", + "Communism, U.S. Brand": "m.05sv4yy" + }, + "s_expression": "(COUNT (AND broadcast.content (AND (JOIN (R broadcast.genre.content) m.026pm0p) (JOIN (R broadcast.producer.produces) (JOIN broadcast.producer.produces m.05sv4yy)))))", + "actions": [ + "get_relations(m.026pm0p)", + "get_neighbors(m.026pm0p,broadcast.genre.content)", + "get_relations(m.05sv4yy)", + "get_neighbors(m.05sv4yy,broadcast.content.producer)", + "get_relations(#1)", + "get_neighbors(#1,broadcast.producer.produces)", + "intersection(#0,#2)", + "count(#3)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "what are the number of religious practices that practice buddhism and krishna consciousness?", + "qid": "3204573006000_grailqa", + "source": "grailqa", + "entities": { + "Buddhism": "m.092bf5", + "krishna consciousness": "m.017j3y" + }, + "s_expression": "(COUNT (AND religion.religious_practice (AND (JOIN (R religion.religion.practices) m.092bf5) (JOIN (R religion.religion.practices) m.017j3y))))", + "actions": [ + "get_relations(m.092bf5)", + "get_neighbors(m.092bf5,religion.religion.practices)", + "get_relations(m.017j3y)", + "get_neighbors(m.017j3y,religion.religion.practices)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "find all quotations from tempus that are addressed to whom \"men make their own fates -- it's personal, not a matter for debate\" was addressed to", + "qid": "4302343001000_grailqa", + "source": "grailqa", + "entities": { + "Tempus": "m.0bxj80p", + "\"Men make their own fates -- it's personal, not a matter for debate\"": "m.0g9qhhd" + }, + "s_expression": "(AND media_common.quotation_addressee (AND (JOIN media_common.quotation_addressee.quotations (JOIN (R fictional_universe.fictional_character.quotations) m.0bxj80p)) (JOIN media_common.quotation_addressee.quotations m.0g9qhhd)))", + "actions": [ + "get_relations(m.0bxj80p)", + "get_neighbors(m.0bxj80p,fictional_universe.fictional_character.quotations)", + "get_relations(#0)", + "get_neighbors(#0,media_common.quotation.addressee)", + "get_relations(m.0g9qhhd)", + "get_neighbors(m.0g9qhhd,media_common.quotation.addressee)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0cpg0cq", + "entity_name": "Straton" + } + ] + }, + { + "question": "how many other typefaces from microsoft are designed by the same person who designed verdana?", + "qid": "491000200_graphquestions", + "source": "graphquestions", + "entities": { + "Verdana": "m.0h56_", + "Microsoft": "m.04sv4" + }, + "s_expression": "(COUNT (AND base.typefaces.typeface (AND (JOIN base.typefaces.typeface.typeface_creator (JOIN (R base.typefaces.typeface.typeface_creator) m.0h56_)) (JOIN base.typefaces.typeface.foundry m.04sv4))))", + "actions": [ + "get_relations(m.0h56_)", + "get_neighbors(m.0h56_,base.typefaces.typeface.typeface_creator)", + "get_relations(#0)", + "get_neighbors(#0,base.typefaces.typeface_creator.typefaces_created)", + "get_relations(m.04sv4)", + "get_neighbors(m.04sv4,base.typefaces.typeface_foundry.typefaces)", + "intersection(#1,#2)", + "count(#3)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "the text at the core of c&ma and honored by prayer practitioners is what?", + "qid": "4300898014000_grailqa", + "source": "grailqa", + "entities": { + "c&ma": "m.03yvh5", + "Prayer": "m.0687y" + }, + "s_expression": "(AND religion.religious_text (AND (JOIN (R religion.religion.texts) m.03yvh5) (JOIN (R religion.religion.texts) (JOIN religion.religion.practices m.0687y))))", + "actions": [ + "get_relations(m.03yvh5)", + "get_neighbors(m.03yvh5,religion.religion.texts)", + "get_relations(m.0687y)", + "get_neighbors(m.0687y,religion.religious_practice.practice_of)", + "get_relations(#1)", + "get_neighbors(#1,religion.religion.texts)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.015j7", + "entity_name": "The Bible" + } + ] + }, + { + "question": "Find the artist responsible for Something In Common, what drugs were found in their system at the time of their death?", + "qid": "WebQTrn-2600_01c839018be55a06350a42544b4d4fd8_cwq", + "source": "cwq", + "entities": { + "Drug overdose": "m.01tf_6", + "Something in Common": "m.0p58j2" + }, + "s_expression": "(AND (JOIN (R people.deceased_person.cause_of_death) (JOIN music.featured_artist.recordings m.0p58j2)) (JOIN people.cause_of_death.parent_cause_of_death m.01tf_6))", + "actions": [ + "get_relations(m.0p58j2)", + "get_neighbors(m.0p58j2,music.recording.featured_artists)", + "get_relations(#0)", + "get_neighbors(#0,people.deceased_person.cause_of_death)", + "get_relations(m.01tf_6)", + "get_neighbors(m.01tf_6,people.cause_of_death.includes_causes_of_death)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_argument": "m.02nx6jb", + "answer_type": "Entity", + "entity_name": "Cocaine overdose" + } + ] + }, + { + "question": "Who was influenced by Melanie Klein and in turn influenced Whitman's poetry?", + "qid": "WebQTrn-3358_5dcd3d0995310bd9bcaea14ff53b887e_cwq", + "source": "cwq", + "entities": { + "whitman": "m.085gk", + "Melanie Klein": "m.014shr" + }, + "s_expression": "(AND (JOIN (R influence.influence_node.influenced_by) m.085gk) (JOIN influence.influence_node.influenced (JOIN influence.influence_node.influenced_by m.014shr)))", + "actions": [ + "get_relations(m.085gk)", + "get_neighbors(m.085gk,influence.influence_node.influenced_by)", + "get_relations(m.014shr)", + "get_neighbors(m.014shr,influence.influence_node.influenced)", + "get_relations(#1)", + "get_neighbors(#1,influence.influence_node.influenced_by)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.039n1", + "answer_type": "Entity", + "entity_name": "Georg Wilhelm Friedrich Hegel" + } + ] + }, + { + "question": "the setting that is used by canon eos 450d and samsung gx-20 has how many camera iso capabilities?", + "qid": "3205827006000_grailqa", + "source": "grailqa", + "entities": { + "Canon EOS 450D": "m.03m6znn", + "Samsung GX-20": "m.04wjr5m" + }, + "s_expression": "(COUNT (AND digicams.camera_iso (AND (JOIN (R digicams.digital_camera.iso_setting) m.03m6znn) (JOIN (R digicams.digital_camera.iso_setting) m.04wjr5m))))", + "actions": [ + "get_relations(m.03m6znn)", + "get_neighbors(m.03m6znn,digicams.digital_camera.iso_setting)", + "get_relations(m.04wjr5m)", + "get_neighbors(m.04wjr5m,digicams.digital_camera.iso_setting)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "6" + } + ] + }, + { + "question": "which person designed the imac dv and next computer?", + "qid": "4301299014000_grailqa", + "source": "grailqa", + "entities": { + "NeXT Computer": "m.04_1mz4", + "imac dv": "m.02p3xw8" + }, + "s_expression": "(AND computer.computer_designer (AND (JOIN computer.computer_designer.computers_designed (JOIN (R computer.computer.parent_model) m.02p3xw8)) (JOIN (R computer.computer.key_designers) m.04_1mz4)))", + "actions": [ + "get_relations(m.02p3xw8)", + "get_neighbors(m.02p3xw8,computer.computer.parent_model)", + "get_relations(#0)", + "get_neighbors(#0,computer.computer.key_designers)", + "get_relations(m.04_1mz4)", + "get_neighbors(m.04_1mz4,computer.computer.key_designers)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.06y3r", + "entity_name": "Steve Jobs" + } + ] + }, + { + "question": "which type of dish common in manado cuisine contains sugars?", + "qid": "4301356000000_grailqa", + "source": "grailqa", + "entities": { + "sugars": "m.06x4c", + "Manado cuisine": "m.0102k5v9" + }, + "s_expression": "(AND food.type_of_dish (JOIN food.type_of_dish.dishes (AND (JOIN food.dish.ingredients m.06x4c) (JOIN (R dining.cuisine.dishes) m.0102k5v9))))", + "actions": [ + "get_relations(m.06x4c)", + "get_neighbors(m.06x4c,food.ingredient.dishes)", + "get_relations(m.0102k5v9)", + "get_neighbors(m.0102k5v9,dining.cuisine.dishes)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,food.dish.type_of_dish1)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0318f4", + "entity_name": "Main course" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0gtdm", + "entity_name": "Condiment" + } + ] + }, + { + "question": "what category of schools does london business school and the publisher of opus fall under?", + "qid": "4301751002000_grailqa", + "source": "grailqa", + "entities": { + "Opus": "m.02x6y16", + "London Business School": "m.02kzfw" + }, + "s_expression": "(AND education.school_category (AND (JOIN (R education.educational_institution.school_type) (JOIN (R education.school_magazine.school) m.02x6y16)) (JOIN (R education.educational_institution.school_type) m.02kzfw)))", + "actions": [ + "get_relations(m.02x6y16)", + "get_neighbors(m.02x6y16,education.school_magazine.school)", + "get_relations(#0)", + "get_neighbors(#0,education.educational_institution.school_type)", + "get_relations(m.02kzfw)", + "get_neighbors(m.02kzfw,education.educational_institution.school_type)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.05jxkf", + "entity_name": "Public university" + } + ] + }, + { + "question": "what programming language paradigm is followed by programming languages such as angelscript and derivatives of prolog?", + "qid": "4300417003000_grailqa", + "source": "grailqa", + "entities": { + "AngelScript": "m.0vsgr58", + "Prolog": "m.05vpz" + }, + "s_expression": "(AND computer.programming_language_paradigm (AND (JOIN computer.programming_language_paradigm.languages (JOIN computer.programming_language.parent_language m.05vpz)) (JOIN (R computer.programming_language.language_paradigms) m.0vsgr58)))", + "actions": [ + "get_relations(m.05vpz)", + "get_neighbors(m.05vpz,computer.programming_language.dialects)", + "get_relations(#0)", + "get_neighbors(#0,computer.programming_language.language_paradigms)", + "get_relations(m.0vsgr58)", + "get_neighbors(m.0vsgr58,computer.programming_language.language_paradigms)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.05prj", + "entity_name": "Object-oriented programming" + } + ] + }, + { + "question": "Birth place to Ant\u00c3\u00a3o Martins Homem, what type of government did Sparta Greece have?", + "qid": "WebQTrn-1542_89e002ff7250ffeee9ef6f385a7a0658_cwq", + "source": "cwq", + "entities": { + "Sparta": "m.09472", + "ant\u00e3\u00a3o martins homem": "g.122wbmv4" + }, + "s_expression": "(AND (JOIN (R location.country.form_of_government) m.09472) (JOIN government.form_of_government.countries (JOIN location.location.people_born_here g.122wbmv4)))", + "actions": [ + "get_relations(m.09472)", + "get_neighbors(m.09472,location.country.form_of_government)", + "get_relations(g.122wbmv4)", + "get_neighbors(g.122wbmv4,people.person.place_of_birth)", + "get_relations(#1)", + "get_neighbors(#1,location.country.form_of_government)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.04szc", + "answer_type": "Entity", + "entity_name": "Monarchy" + } + ] + }, + { + "question": "In Virginia and locations near the Venice Municipal Airport, what time zone do they use?", + "qid": "WebQTrn-3099_623b8370871966e2e8aeb301482e1558_cwq", + "source": "cwq", + "entities": { + "Virginia": "m.07z1m", + "Venice Municipal Airport": "m.026w2y7" + }, + "s_expression": "(AND (JOIN (R location.location.time_zones) m.07z1m) (JOIN time.time_zone.locations_in_this_time_zone (JOIN location.location.nearby_airports m.026w2y7)))", + "actions": [ + "get_relations(m.07z1m)", + "get_neighbors(m.07z1m,location.location.time_zones)", + "get_relations(m.026w2y7)", + "get_neighbors(m.026w2y7,aviation.airport.serves)", + "get_relations(#1)", + "get_neighbors(#1,location.location.time_zones)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.02hcv8", + "answer_type": "Entity", + "entity_name": "Eastern Time Zone" + } + ] + }, + { + "question": "When did the team with a mascot named Fred first win a trophy?", + "qid": "WebQTrn-1018_707caa73f11b1e655a0f5f6b75082734_cwq", + "source": "cwq", + "entities": { + "fred": "m.02nsyh9" + }, + "s_expression": "(ARGMIN (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.team_mascot m.02nsyh9)) time.event.end_date)", + "actions": [ + "get_relations(m.02nsyh9)", + "get_neighbors(m.02nsyh9,sports.mascot.team)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmin(#1,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.04gk9y8", + "answer_type": "Entity", + "entity_name": "1976\u201377 FA Cup" + } + ] + }, + { + "question": "bigger than life: the boundless genius of yiddish theater has how many exhibition subjects?", + "qid": "4302933004000_grailqa", + "source": "grailqa", + "entities": { + "Bigger than Life: The Boundless Genius of Yiddish Theater": "m.04ky4zp" + }, + "s_expression": "(COUNT (AND exhibitions.exhibition_subject (JOIN (R exhibitions.exhibition.subjects) (JOIN (R exhibitions.type_of_exhibition.exhibitions_of_this_type) (JOIN (R exhibitions.exhibition.exhibition_types) m.04ky4zp)))))", + "actions": [ + "get_relations(m.04ky4zp)", + "get_neighbors(m.04ky4zp,exhibitions.exhibition.exhibition_types)", + "get_relations(#0)", + "get_neighbors(#0,exhibitions.type_of_exhibition.exhibitions_of_this_type)", + "get_relations(#1)", + "get_neighbors(#1,exhibitions.exhibition.subjects)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "41" + } + ] + }, + { + "question": "how many games of electronic arts are released in the united states?", + "qid": "444000402_graphquestions", + "source": "graphquestions", + "entities": { + "Electronic Arts": "m.01n073", + "united states": "m.09c7w0" + }, + "s_expression": "(COUNT (AND cvg.game_version (AND (JOIN (R cvg.cvg_publisher.game_versions_published) m.01n073) (JOIN cvg.game_version.regions m.09c7w0))))", + "actions": [ + "get_relations(m.01n073)", + "get_neighbors(m.01n073,cvg.cvg_publisher.game_versions_published)", + "get_relations(m.09c7w0)", + "get_neighbors(m.09c7w0,cvg.computer_game_region.versions_released_in_this_region)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "5" + } + ] + }, + { + "question": "When is the most recent time the sports team whose fight song is \"Meet the Mets\" won the World Series?", + "qid": "WebQTest-1556_e4e4fb403bd2ceb5f9d9414dd63e7b64_cwq", + "source": "cwq", + "entities": { + "Meet the Mets": "m.0bqwsw" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.fight_song m.0bqwsw)) time.event.end_date)", + "actions": [ + "get_relations(m.0bqwsw)", + "get_neighbors(m.0bqwsw,sports.fight_song.sports_team)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmax(#1,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.01q9lc", + "answer_type": "Entity", + "entity_name": "1986 World Series" + } + ] + }, + { + "question": "what is the political ideology that the national unity front and the queensland state election, 1977 follow?", + "qid": "4302370004000_grailqa", + "source": "grailqa", + "entities": { + "Queensland state election, 1977": "m.025_983", + "National Unity Front": "m.0cc4np" + }, + "s_expression": "(AND government.political_ideology (AND (JOIN government.political_ideology.political_parties (JOIN (R government.parliamentary_election.government_formed_by) m.025_983)) (JOIN (R government.political_party.ideology) m.0cc4np)))", + "actions": [ + "get_relations(m.025_983)", + "get_neighbors(m.025_983,government.parliamentary_election.government_formed_by)", + "get_relations(#0)", + "get_neighbors(#0,government.political_party.ideology)", + "get_relations(m.0cc4np)", + "get_neighbors(m.0cc4np,government.political_party.ideology)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01yqp", + "entity_name": "Conservatism" + } + ] + }, + { + "question": "what number of children of eddard stark were born in winterfell?", + "qid": "448000200_graphquestions", + "source": "graphquestions", + "entities": { + "Eddard Stark": "m.03qs0n1", + "Winterfell": "m.04sstyx" + }, + "s_expression": "(COUNT (AND fictional_universe.fictional_character (AND (JOIN (R fictional_universe.fictional_character.children) m.03qs0n1) (JOIN fictional_universe.fictional_character.place_of_birth m.04sstyx))))", + "actions": [ + "get_relations(m.03qs0n1)", + "get_neighbors(m.03qs0n1,fictional_universe.fictional_character.children)", + "get_relations(m.04sstyx)", + "get_neighbors(m.04sstyx,fictional_universe.fictional_setting.fictional_characters_born_here)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "3" + } + ] + }, + { + "question": "What was the last championship won by the team coached by Tom Thiboeau?", + "qid": "WebQTrn-3707_d0d5f9f0ae25465e1efba1abf9a39089_cwq", + "source": "cwq", + "entities": { + "tom thiboeau": "m.043jv80" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.championships) (JOIN basketball.basketball_team.head_coach m.043jv80)) time.event.start_date)", + "actions": [ + "get_relations(m.043jv80)", + "get_neighbors(m.043jv80,basketball.basketball_coach.team)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmax(#1,time.event.start_date)" + ], + "answer": [ + { + "answer_argument": "m.04zt01", + "answer_type": "Entity", + "entity_name": "1998 NBA Finals" + } + ] + }, + { + "question": "When was the last time the basketball team whose head coach is Derek Fisher won the national championship?", + "qid": "WebQTest-998_47e95c73ec76579a8d66b6e1607df389_cwq", + "source": "cwq", + "entities": { + "Derek Fisher": "m.04lvwk" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.championships) (JOIN basketball.basketball_team.head_coach m.04lvwk)) time.event.start_date)", + "actions": [ + "get_relations(m.04lvwk)", + "get_neighbors(m.04lvwk,basketball.basketball_coach.team)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmax(#1,time.event.start_date)" + ], + "answer": [ + { + "answer_argument": "m.0cs1kg" + } + ] + }, + { + "question": "the computer designer for iphone4 and iphone 5 was whom?", + "qid": "4301299011000_grailqa", + "source": "grailqa", + "entities": { + "iPhone 5": "m.0gg4gh4", + "iphone4": "m.0c0bg9c" + }, + "s_expression": "(AND computer.computer_designer (AND (JOIN computer.computer_designer.computers_designed (JOIN (R computer.computer.parent_model) m.0c0bg9c)) (JOIN (R computer.computer.key_designers) m.0gg4gh4)))", + "actions": [ + "get_relations(m.0c0bg9c)", + "get_neighbors(m.0c0bg9c,computer.computer.parent_model)", + "get_relations(#0)", + "get_neighbors(#0,computer.computer.key_designers)", + "get_relations(m.0gg4gh4)", + "get_neighbors(m.0gg4gh4,computer.computer.key_designers)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02cw6w", + "entity_name": "Jonathan Ive" + } + ] + }, + { + "question": "what content does new york public radio and the producer of lost & found sound produce?", + "qid": "4300832004000_grailqa", + "source": "grailqa", + "entities": { + "Lost & Found Sound": "m.05v7hrt", + "new york public radio": "m.01_3by" + }, + "s_expression": "(AND broadcast.content (AND (JOIN broadcast.content.producer (JOIN broadcast.producer.produces m.05v7hrt)) (JOIN broadcast.content.producer m.01_3by)))", + "actions": [ + "get_relations(m.05v7hrt)", + "get_neighbors(m.05v7hrt,broadcast.content.producer)", + "get_relations(#0)", + "get_neighbors(#0,broadcast.producer.produces)", + "get_relations(m.01_3by)", + "get_neighbors(m.01_3by,broadcast.producer.produces)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.05v8dc3", + "entity_name": "The Sonic Memorial Project" + } + ] + }, + { + "question": "what other rocket did the manufacturer of saturn int-21 and delta 2 create?", + "qid": "4300129011000_grailqa", + "source": "grailqa", + "entities": { + "Saturn INT-21": "m.0d8cz_", + "delta 2": "m.026j5q" + }, + "s_expression": "(AND spaceflight.rocket (JOIN spaceflight.rocket.manufacturer (AND (JOIN (R spaceflight.rocket.manufacturer) m.0d8cz_) (JOIN spaceflight.rocket_manufacturer.rockets_manufactured m.026j5q))))", + "actions": [ + "get_relations(m.0d8cz_)", + "get_neighbors(m.0d8cz_,spaceflight.rocket.manufacturer)", + "get_relations(m.026j5q)", + "get_neighbors(m.026j5q,spaceflight.rocket.manufacturer)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,spaceflight.rocket_manufacturer.rockets_manufactured)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0269d32", + "entity_name": "Saturn-Shuttle" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02_9dl", + "entity_name": "Delta IV" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03pvlp", + "entity_name": "Delta III" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0dqk5f", + "entity_name": "Ares I" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0fbp58", + "entity_name": "Saturn INT-20" + }, + { + "answer_type": "Entity", + "answer_argument": "m.07932", + "entity_name": "Saturn V" + } + ] + }, + { + "question": "which neoplasm treatments come with the side effects of facial redness?", + "qid": "4301182001000_grailqa", + "source": "grailqa", + "entities": { + "Neoplasm": "m.07p3l", + "Facial Redness": "m.07t7mr3" + }, + "s_expression": "(AND medicine.medical_treatment (AND (JOIN medicine.medical_treatment.side_effects (JOIN medicine.symptom.parent_symptom m.07t7mr3)) (JOIN medicine.medical_treatment.used_to_treat m.07p3l)))", + "actions": [ + "get_relations(m.07t7mr3)", + "get_neighbors(m.07t7mr3,medicine.symptom.includes_symptoms)", + "get_relations(#0)", + "get_neighbors(#0,medicine.symptom.side_effect_of)", + "get_relations(m.07p3l)", + "get_neighbors(m.07p3l,medicine.disease.treatments)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02m3m3", + "entity_name": "Prednisone" + } + ] + }, + { + "question": "which rocket function can be found on the saturn v as well as on another rocket made by chrysler group llc?", + "qid": "242000100_graphquestions", + "source": "graphquestions", + "entities": { + "Chrysler Group LLC": "m.01_bp", + "Saturn V": "m.07932" + }, + "s_expression": "(AND spaceflight.rocket_function (AND (JOIN spaceflight.rocket_function.rockets_supporting_this_function (JOIN (R spaceflight.rocket_manufacturer.rockets_manufactured) m.01_bp)) (JOIN (R spaceflight.rocket.rocket_function) m.07932)))", + "actions": [ + "get_relations(m.01_bp)", + "get_neighbors(m.01_bp,spaceflight.rocket_manufacturer.rockets_manufactured)", + "get_relations(#0)", + "get_neighbors(#0,spaceflight.rocket.rocket_function)", + "get_relations(m.07932)", + "get_neighbors(m.07932,spaceflight.rocket.rocket_function)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0cspd", + "entity_name": "Low Earth orbit" + }, + { + "answer_type": "Entity", + "answer_argument": "m.04rkwz", + "entity_name": "Launch vehicle" + } + ] + }, + { + "question": "who discovered o as well as an element in the d-block?", + "qid": "480000001_graphquestions", + "source": "graphquestions", + "entities": { + "d-block": "m.0j7pr", + "o": "m.025s6bf" + }, + "s_expression": "(AND chemistry.element_discoverer (AND (JOIN (R chemistry.chemical_element.discoverer) (JOIN (R chemistry.periodic_table_block.elements) m.0j7pr)) (JOIN chemistry.element_discoverer.discovered m.025s6bf)))", + "actions": [ + "get_relations(m.0j7pr)", + "get_neighbors(m.0j7pr,chemistry.periodic_table_block.elements)", + "get_relations(#0)", + "get_neighbors(#0,chemistry.chemical_element.discoverer)", + "get_relations(m.025s6bf)", + "get_neighbors(m.025s6bf,chemistry.chemical_element.discoverer)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0g68n", + "entity_name": "Carl Wilhelm Scheele" + } + ] + }, + { + "question": "In what year did a team win the superbowl and the 2013 AFC Championship Game ?", + "qid": "WebQTest-837_c4e06c3a9e4b4f10bd1ae97f1742c198_cwq", + "source": "cwq", + "entities": { + "Superbowl": "m.06x5s", + "2013 AFC Championship Game": "m.0_gtz8t" + }, + "s_expression": "(AND (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.championships m.0_gtz8t)) (JOIN sports.sports_championship_event.championship m.06x5s))", + "actions": [ + "get_relations(m.0_gtz8t)", + "get_neighbors(m.0_gtz8t,sports.sports_championship_event.champion)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_relations(m.06x5s)", + "get_neighbors(m.06x5s,sports.sports_championship.events)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_argument": "m.0642vqv" + }, + { + "answer_argument": "m.076yq" + } + ] + }, + { + "question": "which is the number of automotive classes which are examples of ford freestar and kia sedona?", + "qid": "3206121012000_grailqa", + "source": "grailqa", + "entities": { + "Ford Freestar": "m.0224xp", + "kia sedona": "m.05pfy5" + }, + "s_expression": "(COUNT (AND automotive.automotive_class (AND (JOIN automotive.automotive_class.examples m.0224xp) (JOIN automotive.automotive_class.examples m.05pfy5))))", + "actions": [ + "get_relations(m.0224xp)", + "get_neighbors(m.0224xp,automotive.model.automotive_class)", + "get_relations(m.05pfy5)", + "get_neighbors(m.05pfy5,automotive.model.automotive_class)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "what social sciences discipline does mcclelland conduct research in?", + "qid": "4302233000000_grailqa", + "source": "grailqa", + "entities": { + "social sciences": "m.06n6p", + "mcclelland": "m.018pq1" + }, + "s_expression": "(AND education.field_of_study (AND (JOIN (R education.field_of_study.subdisciplines) m.06n6p) (JOIN (R education.field_of_study.subdiscipline_of) (JOIN (R education.academic.research_areas) m.018pq1))))", + "actions": [ + "get_relations(m.06n6p)", + "get_neighbors(m.06n6p,education.field_of_study.subdisciplines)", + "get_relations(m.018pq1)", + "get_neighbors(m.018pq1,education.academic.research_areas)", + "get_relations(#1)", + "get_neighbors(#1,education.field_of_study.subdiscipline_of)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.046d3s", + "entity_name": "Development studies" + } + ] + }, + { + "question": "When was the last time the team that won the 1973 NBA Finals championship won a championship?", + "qid": "WebQTrn-1406_920d8cef50c023e0a693d393bf609007_cwq", + "source": "cwq", + "entities": { + "1973 NBA Finals": "m.0cs1kg" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.championships m.0cs1kg)) time.event.start_date)", + "actions": [ + "get_relations(m.0cs1kg)", + "get_neighbors(m.0cs1kg,sports.sports_championship_event.champion)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmax(#1,time.event.start_date)" + ], + "answer": [ + { + "answer_argument": "m.0cs1kg", + "answer_type": "Entity", + "entity_name": "1973 NBA Finals" + } + ] + }, + { + "question": "how many different breeds from great britain have the same temperament as the otterhound?", + "qid": "4303460007000_grailqa", + "source": "grailqa", + "entities": { + "Otterhound": "m.05717m", + "Great Britain": "m.034cm" + }, + "s_expression": "(COUNT (AND biology.breed_temperament (AND (JOIN biology.breed_temperament.breeds (JOIN biology.animal_breed.place_of_origin m.034cm)) (JOIN (R biology.animal_breed.temperament) m.05717m))))", + "actions": [ + "get_relations(m.034cm)", + "get_neighbors(m.034cm,biology.breed_origin.breeds_originating_here)", + "get_relations(#0)", + "get_neighbors(#0,biology.animal_breed.temperament)", + "get_relations(m.05717m)", + "get_neighbors(m.05717m,biology.animal_breed.temperament)", + "intersection(#1,#2)", + "count(#3)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "2" + } + ] + }, + { + "question": "a digital camera that has the color filter array type of bayer and iso settings of 12800 has what sensor type?", + "qid": "4300861009000_grailqa", + "source": "grailqa", + "entities": { + "bayer": "m.02r8js", + "12800": "m.04sy2g0" + }, + "s_expression": "(AND digicams.camera_sensor_type (JOIN (R digicams.digital_camera.sensor_type) (AND (JOIN digicams.digital_camera.color_filter_array_type m.02r8js) (JOIN digicams.digital_camera.iso_setting m.04sy2g0))))", + "actions": [ + "get_relations(m.02r8js)", + "get_neighbors(m.02r8js,digicams.camera_color_filter_array_type.cameras)", + "get_relations(m.04sy2g0)", + "get_neighbors(m.04sy2g0,digicams.camera_iso.cameras)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,digicams.digital_camera.sensor_type)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0d17kj", + "entity_name": "CMOS sensor" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02x3xhq", + "entity_name": "Live MOS" + } + ] + }, + { + "question": "Wehn did the team with the mascot named Benny the Bull last win the championship?", + "qid": "WebQTrn-3707_ebbb01712f3eb1443b2895961ec14272_cwq", + "source": "cwq", + "entities": { + "Benny the Bull": "m.067z_k" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.team_mascot m.067z_k)) time.event.start_date)", + "actions": [ + "get_relations(m.067z_k)", + "get_neighbors(m.067z_k,sports.mascot.team)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmax(#1,time.event.start_date)" + ], + "answer": [ + { + "answer_argument": "m.04zt01", + "answer_type": "Entity", + "entity_name": "1998 NBA Finals" + } + ] + }, + { + "question": "what category of schools do emmaus high school and the publisher of the chattahoochee review fall under?", + "qid": "4301751015000_grailqa", + "source": "grailqa", + "entities": { + "The Chattahoochee Review": "m.05f5qnj", + "Emmaus High School": "m.0cmm22" + }, + "s_expression": "(AND education.school_category (AND (JOIN (R education.educational_institution.school_type) (JOIN (R education.school_magazine.school) m.05f5qnj)) (JOIN (R education.educational_institution.school_type) m.0cmm22)))", + "actions": [ + "get_relations(m.05f5qnj)", + "get_neighbors(m.05f5qnj,education.school_magazine.school)", + "get_relations(#0)", + "get_neighbors(#0,education.educational_institution.school_type)", + "get_relations(m.0cmm22)", + "get_neighbors(m.0cmm22,education.educational_institution.school_type)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02dk5q", + "entity_name": "State school" + } + ] + }, + { + "question": "what is the number of active websites owned by vivek rp?", + "qid": "3206340003000_grailqa", + "source": "grailqa", + "entities": { + "Active": "m.02hsn4g", + "Vivek Rp": "m.0gj5q3j" + }, + "s_expression": "(COUNT (AND internet.website (AND (JOIN internet.website.status m.02hsn4g) (JOIN (R internet.website_owner.websites_owned) m.0gj5q3j))))", + "actions": [ + "get_relations(m.02hsn4g)", + "get_neighbors(m.02hsn4g,internet.website_status.sites)", + "get_relations(m.0gj5q3j)", + "get_neighbors(m.0gj5q3j,internet.website_owner.websites_owned)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "When did the sports team whose arena is Old Trafford first win a trophy?", + "qid": "WebQTrn-1018_593632bf477d73bb33a311728d6e6f29_cwq", + "source": "cwq", + "entities": { + "Old Trafford": "m.030lpl" + }, + "s_expression": "(ARGMIN (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.arena_stadium m.030lpl)) time.event.end_date)", + "actions": [ + "get_relations(m.030lpl)", + "get_neighbors(m.030lpl,sports.sports_facility.teams)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_attributes(#1)", + "argmin(#1,time.event.end_date)" + ], + "answer": [ + { + "answer_argument": "m.04gk9y8", + "answer_type": "Entity", + "entity_name": "1976\u201377 FA Cup" + } + ] + }, + { + "question": "how many contents about tv were produced by the producer of on the media?", + "qid": "4303008015000_grailqa", + "source": "grailqa", + "entities": { + "TV": "m.03bty3x", + "On The Media": "m.03d53lc" + }, + "s_expression": "(COUNT (AND broadcast.content (AND (JOIN (R broadcast.genre.content) m.03bty3x) (JOIN (R broadcast.producer.produces) (JOIN broadcast.producer.produces m.03d53lc)))))", + "actions": [ + "get_relations(m.03bty3x)", + "get_neighbors(m.03bty3x,broadcast.genre.content)", + "get_relations(m.03d53lc)", + "get_neighbors(m.03d53lc,broadcast.content.producer)", + "get_relations(#1)", + "get_neighbors(#1,broadcast.producer.produces)", + "intersection(#0,#2)", + "count(#3)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "3" + } + ] + }, + { + "question": "who was the computer designer for atari 520 stm and atari 260 st?", + "qid": "4301299001000_grailqa", + "source": "grailqa", + "entities": { + "Atari 260 ST": "m.02h87b6", + "Atari 520 STm": "m.02h879n" + }, + "s_expression": "(AND computer.computer_designer (AND (JOIN computer.computer_designer.computers_designed (JOIN (R computer.computer.parent_model) m.02h879n)) (JOIN (R computer.computer.key_designers) m.02h87b6)))", + "actions": [ + "get_relations(m.02h879n)", + "get_neighbors(m.02h879n,computer.computer.parent_model)", + "get_relations(#0)", + "get_neighbors(#0,computer.computer.key_designers)", + "get_relations(m.02h87b6)", + "get_neighbors(m.02h87b6,computer.computer.key_designers)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0xwj", + "entity_name": "Atari" + } + ] + }, + { + "question": "what camera storage type is supported by olympus d-580 zoom and the digital camera with iso setting of 80?", + "qid": "4302372007000_grailqa", + "source": "grailqa", + "entities": { + "Olympus D-580 Zoom": "g.1jdmgz_rm", + "80": "m.0220vx9" + }, + "s_expression": "(AND digicams.camera_storage_type (AND (JOIN (R digicams.digital_camera.supported_storage_types) (JOIN digicams.digital_camera.iso_setting m.0220vx9)) (JOIN (R digicams.digital_camera.supported_storage_types) g.1jdmgz_rm)))", + "actions": [ + "get_relations(m.0220vx9)", + "get_neighbors(m.0220vx9,digicams.camera_iso.cameras)", + "get_relations(#0)", + "get_neighbors(#0,digicams.digital_camera.supported_storage_types)", + "get_relations(g.1jdmgz_rm)", + "get_neighbors(g.1jdmgz_rm,digicams.digital_camera.supported_storage_types)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02zmtt", + "entity_name": "xD-Picture Card" + } + ] + }, + { + "question": "ralph dix and the producer of wake up kentucky produce what content?", + "qid": "4300832001000_grailqa", + "source": "grailqa", + "entities": { + "Wake Up Kentucky": "m.0zg08kw", + "Ralph Dix": "m.06jj0pb" + }, + "s_expression": "(AND broadcast.content (AND (JOIN broadcast.content.producer (JOIN broadcast.producer.produces m.0zg08kw)) (JOIN broadcast.content.producer m.06jj0pb)))", + "actions": [ + "get_relations(m.0zg08kw)", + "get_neighbors(m.0zg08kw,broadcast.content.producer)", + "get_relations(#0)", + "get_neighbors(#0,broadcast.producer.produces)", + "get_relations(m.06jj0pb)", + "get_neighbors(m.06jj0pb,broadcast.producer.produces)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.05v2gz6", + "entity_name": "Down and Outside: On the Streets of Louisville" + } + ] + }, + { + "question": "What stadium does the champion of the 1931 World Series Championship play at?", + "qid": "WebQTrn-2444_8fb3f377318c9e61f47779b2c188167b_cwq", + "source": "cwq", + "entities": { + "1931 World Series": "m.04tfzf" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.arena_stadium) (JOIN sports.sports_team.championships m.04tfzf)) architecture.structure.opened)", + "actions": [ + "get_relations(m.04tfzf)", + "get_neighbors(m.04tfzf,sports.sports_championship_event.champion)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.arena_stadium)", + "get_attributes(#1)", + "argmax(#1,architecture.structure.opened)" + ], + "answer": [ + { + "answer_argument": "m.06k1v5" + } + ] + }, + { + "question": "what is the subject of the quote no woman marries for money; they are all clever enough, before marrying a millionaire, to fall in love with him first. which was spoken quoted by the angel of remembrance?", + "qid": "4300443005000_grailqa", + "source": "grailqa", + "entities": { + "No woman marries for money; they are all clever enough, before marrying a millionaire, to fall in love with him first.": "m.048kl1w", + "Angel of Remembrance": "m.0h3grm9" + }, + "s_expression": "(AND media_common.quotation_subject (AND (JOIN (R media_common.quotation.subjects) (JOIN media_common.quotation.spoken_by_character m.0h3grm9)) (JOIN (R media_common.quotation.subjects) m.048kl1w)))", + "actions": [ + "get_relations(m.0h3grm9)", + "get_neighbors(m.0h3grm9,fictional_universe.fictional_character.quotations)", + "get_relations(#0)", + "get_neighbors(#0,media_common.quotation.subjects)", + "get_relations(m.048kl1w)", + "get_neighbors(m.048kl1w,media_common.quotation.subjects)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.048knlz", + "entity_name": "Love" + } + ] + }, + { + "question": "where in massachussetts institute of technology does lee young-hee work?", + "qid": "4301362014000_grailqa", + "source": "grailqa", + "entities": { + "Lee Young-hee": "m.0z8dv3z", + "massachussetts institute of technology": "m.04rwx" + }, + "s_expression": "(AND education.department (AND (JOIN education.department.field (JOIN education.field_of_study.academics_in_this_field m.0z8dv3z)) (JOIN (R education.university.departments) m.04rwx)))", + "actions": [ + "get_relations(m.0z8dv3z)", + "get_neighbors(m.0z8dv3z,education.academic.research_areas)", + "get_relations(#0)", + "get_neighbors(#0,education.field_of_study.academic_departments)", + "get_relations(m.04rwx)", + "get_neighbors(m.04rwx,education.university.departments)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0fyy3y", + "entity_name": "MIT Physics Department" + } + ] + }, + { + "question": "there is a specific cheese with a crumbly texture that is sourced from goat and ovine, what is it called?", + "qid": "4301155006000_grailqa", + "source": "grailqa", + "entities": { + "ovine": "m.07bgp", + "Goat": "m.03fwl", + "Crumbly": "m.02wlqk0" + }, + "s_expression": "(AND food.cheese (AND (JOIN food.cheese.source_of_milk m.07bgp) (AND (JOIN food.cheese.source_of_milk m.03fwl) (JOIN food.cheese.texture m.02wlqk0))))", + "actions": [ + "get_relations(m.07bgp)", + "get_neighbors(m.07bgp,food.cheese_milk_source.cheeses)", + "get_relations(m.03fwl)", + "get_neighbors(m.03fwl,food.cheese_milk_source.cheeses)", + "get_relations(m.02wlqk0)", + "get_neighbors(m.02wlqk0,food.cheese_texture.cheeses)", + "intersection(#1,#2)", + "intersection(#0,#3)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.03cl7d5", + "entity_name": "Castelmagno cheese" + } + ] + }, + { + "question": "what programming language paradigm is used by hy and another programming language influenced by lfe?", + "qid": "4300798014000_grailqa", + "source": "grailqa", + "entities": { + "Hy": "m.011smwfp", + "LFE": "m.0_82v0s" + }, + "s_expression": "(AND computer.programming_language_paradigm (AND (JOIN (R computer.programming_language.language_paradigms) m.011smwfp) (JOIN (R computer.programming_language.language_paradigms) (JOIN computer.programming_language.influenced_by m.0_82v0s))))", + "actions": [ + "get_relations(m.011smwfp)", + "get_neighbors(m.011smwfp,computer.programming_language.language_paradigms)", + "get_relations(m.0_82v0s)", + "get_neighbors(m.0_82v0s,computer.programming_language.influenced)", + "get_relations(#1)", + "get_neighbors(#1,computer.programming_language.language_paradigms)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.02ykw", + "entity_name": "Functional programming" + } + ] + }, + { + "question": "which amusement ride is the fastest of all the ones designed by the person who designed the mansion ride?", + "qid": "482000201_graphquestions", + "source": "graphquestions", + "entities": { + "mansion": "m.01p79p" + }, + "s_expression": "(ARGMAX (AND amusement_parks.ride (JOIN amusement_parks.ride.designer (JOIN amusement_parks.ride_designer.rides m.01p79p))) amusement_parks.ride.max_speed)", + "actions": [ + "get_relations(m.01p79p)", + "get_neighbors(m.01p79p,amusement_parks.ride.designer)", + "get_relations(#0)", + "get_neighbors(#0,amusement_parks.ride_designer.rides)", + "get_attributes(#1)", + "argmax(#1,amusement_parks.ride.max_speed)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.040fq5", + "entity_name": "California Screamin'" + } + ] + }, + { + "question": "what kind of content do the producer of wait wait... don't tell me and american radio works produce?", + "qid": "4300832007000_grailqa", + "source": "grailqa", + "entities": { + "wait wait... don't tell me": "m.041z1gp", + "american radio works": "m.03n18r" + }, + "s_expression": "(AND broadcast.content (AND (JOIN broadcast.content.producer (JOIN broadcast.producer.produces m.041z1gp)) (JOIN broadcast.content.producer m.03n18r)))", + "actions": [ + "get_relations(m.041z1gp)", + "get_neighbors(m.041z1gp,broadcast.content.producer)", + "get_relations(#0)", + "get_neighbors(#0,broadcast.producer.produces)", + "get_relations(m.03n18r)", + "get_neighbors(m.03n18r,broadcast.producer.produces)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.03bty83", + "entity_name": "APM: Weekend America" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03btxkg", + "entity_name": "APM: American RadioWorks" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03bty93", + "entity_name": "APM: Word for Word" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03bty9_", + "entity_name": "APM: Garrison Keillor's The Writer's Almanac" + }, + { + "answer_type": "Entity", + "answer_argument": "m.03d6d9s", + "entity_name": "APM: Future Tense" + } + ] + }, + { + "question": "which character lives in the fictional bandaran island chain of the sacred band of stepsons universe?", + "qid": "4300742007000_grailqa", + "source": "grailqa", + "entities": { + "Bandaran island chain": "m.0d4qny9", + "The Sacred Band of Stepsons universe": "m.0ch8hcq" + }, + "s_expression": "(AND fictional_universe.fictional_character (JOIN fictional_universe.fictional_character.places_lived (AND (JOIN fictional_universe.fictional_setting.setting_type m.0d4qny9) (JOIN (R fictional_universe.fictional_universe.locations) m.0ch8hcq))))", + "actions": [ + "get_relations(m.0d4qny9)", + "get_neighbors(m.0d4qny9,fictional_universe.type_of_fictional_setting.settings)", + "get_relations(m.0ch8hcq)", + "get_neighbors(m.0ch8hcq,fictional_universe.fictional_universe.locations)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,fictional_universe.fictional_setting.characters_that_have_lived_here)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0bxw253", + "entity_name": "Cyrus, shape-changer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cvc9fk", + "entity_name": "Sturm" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0bxj80p", + "entity_name": "Tempus" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cpg08q", + "entity_name": "Randal" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0bxtyd0", + "entity_name": "Roxane, Nisibisi witch" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cpg05_", + "entity_name": "Niko" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0bxtt5p", + "entity_name": "Askelon of Meridian" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0bxttn0", + "entity_name": "Jihan, Froth Daughter" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cms8kp", + "entity_name": "Kouras" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cpg093", + "entity_name": "Arton" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0c3vjqr", + "entity_name": "Nino" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0c0mpkv", + "entity_name": "Stormbringer" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0c3w0tt", + "entity_name": "Bandaran adepts" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0cvc9f6", + "entity_name": "Levitas" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0b_k83w", + "entity_name": "Tabet" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0ck6018", + "entity_name": "Jamad" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0c0bpb_", + "entity_name": "Shamshi, Stepson" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0ck601y", + "entity_name": "Macon" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0dgdw91", + "entity_name": "Nameless adepts" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0ck601h", + "entity_name": "King Genos" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0dwxf_", + "entity_name": "Seth" + }, + { + "answer_type": "Entity", + "answer_argument": "m.0ck601q", + "entity_name": "Crevis" + } + ] + }, + { + "question": "Which Children's book about Friendship did Suzanne Collins write?", + "qid": "WebQTrn-3364_e5faa8b095f56c4563da9331fe2661c2_cwq", + "source": "cwq", + "entities": { + "Suzanne Collins": "m.0bpd5z", + "Children's literature": "m.0dwly", + "Friendship": "m.019_nn" + }, + "s_expression": "(AND (JOIN (R book.author.works_written) m.0bpd5z) (AND (JOIN book.book.genre m.0dwly) (JOIN book.written_work.subjects m.019_nn)))", + "actions": [ + "get_relations(m.0bpd5z)", + "get_neighbors(m.0bpd5z,book.author.works_written)", + "get_relations(m.0dwly)", + "get_neighbors(m.0dwly,media_common.literary_genre.books_in_this_genre)", + "get_relations(m.019_nn)", + "get_neighbors(m.019_nn,book.book_subject.works)", + "intersection(#1,#2)", + "intersection(#0,#3)" + ], + "answer": [ + { + "answer_argument": "m.0dsx8l", + "answer_type": "Entity", + "entity_name": "Gregor and the Prophecy of Bane" + } + ] + }, + { + "question": "which artwork on wood was painted in the era of juan de arellano?", + "qid": "4301655015000_grailqa", + "source": "grailqa", + "entities": { + "Juan de Arellano": "m.026z4yz", + "Wood": "m.083vt" + }, + "s_expression": "(AND visual_art.artwork (AND (JOIN visual_art.artwork.period_or_movement (JOIN visual_art.art_period_movement.associated_artists m.026z4yz)) (JOIN visual_art.artwork.support m.083vt)))", + "actions": [ + "get_relations(m.026z4yz)", + "get_neighbors(m.026z4yz,visual_art.visual_artist.associated_periods_or_movements)", + "get_relations(#0)", + "get_neighbors(#0,visual_art.art_period_movement.associated_artworks)", + "get_relations(m.083vt)", + "get_neighbors(m.083vt,visual_art.visual_art_support.artworks)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0bfng5d", + "entity_name": "The Flayed Ox" + } + ] + }, + { + "question": "what is the political ideology that the people's monarchist party and the queensland state election, 1977 follow?", + "qid": "4302370003000_grailqa", + "source": "grailqa", + "entities": { + "Queensland state election, 1977": "m.025_983", + "People's Monarchist Party": "m.069gcq" + }, + "s_expression": "(AND government.political_ideology (AND (JOIN government.political_ideology.political_parties (JOIN (R government.parliamentary_election.government_formed_by) m.025_983)) (JOIN (R government.political_party.ideology) m.069gcq)))", + "actions": [ + "get_relations(m.025_983)", + "get_neighbors(m.025_983,government.parliamentary_election.government_formed_by)", + "get_relations(#0)", + "get_neighbors(#0,government.political_party.ideology)", + "get_relations(m.069gcq)", + "get_neighbors(m.069gcq,government.political_party.ideology)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01yqp", + "entity_name": "Conservatism" + } + ] + }, + { + "question": "which programming language paradigm does php3 and java script follow?", + "qid": "4300417007000_grailqa", + "source": "grailqa", + "entities": { + "php3": "m.060kv", + "java script": "m.02p97" + }, + "s_expression": "(AND computer.programming_language_paradigm (AND (JOIN computer.programming_language_paradigm.languages (JOIN computer.programming_language.parent_language m.02p97)) (JOIN (R computer.programming_language.language_paradigms) m.060kv)))", + "actions": [ + "get_relations(m.02p97)", + "get_neighbors(m.02p97,computer.programming_language.dialects)", + "get_relations(#0)", + "get_neighbors(#0,computer.programming_language.language_paradigms)", + "get_relations(m.060kv)", + "get_neighbors(m.060kv,computer.programming_language.language_paradigms)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.05prj", + "entity_name": "Object-oriented programming" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01c3bz", + "entity_name": "Imperative programming" + } + ] + }, + { + "question": "for ned stark's children, how many of them were born in winterfell?", + "qid": "448000501_graphquestions", + "source": "graphquestions", + "entities": { + "ned stark": "m.03qs0n1", + "Winterfell": "m.04sstyx" + }, + "s_expression": "(COUNT (AND fictional_universe.fictional_character (AND (JOIN (R fictional_universe.fictional_character.children) m.03qs0n1) (JOIN fictional_universe.fictional_character.place_of_birth m.04sstyx))))", + "actions": [ + "get_relations(m.03qs0n1)", + "get_neighbors(m.03qs0n1,fictional_universe.fictional_character.children)", + "get_relations(m.04sstyx)", + "get_neighbors(m.04sstyx,fictional_universe.fictional_setting.fictional_characters_born_here)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "3" + } + ] + }, + { + "question": "face the music and apple records were both produced by whom?", + "qid": "4301847006000_grailqa", + "source": "grailqa", + "entities": { + "Face the Music": "m.031hssh", + "Apple Records": "m.019n_t" + }, + "s_expression": "(AND music.producer (AND (JOIN (R music.release.producers) (JOIN music.release.label m.019n_t)) (JOIN (R music.release.producers) m.031hssh)))", + "actions": [ + "get_relations(m.019n_t)", + "get_neighbors(m.019n_t,music.record_label.releases)", + "get_relations(#0)", + "get_neighbors(#0,music.release.producers)", + "get_relations(m.031hssh)", + "get_neighbors(m.031hssh,music.release.producers)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0473q", + "entity_name": "Jeff Lynne" + } + ] + }, + { + "question": "what programming language paradigm do programming laguages such as livescript and derivatives of lisp follow?", + "qid": "4300417000000_grailqa", + "source": "grailqa", + "entities": { + "LiveScript": "m.0_l9rcz", + "Lisp": "m.04kyw" + }, + "s_expression": "(AND computer.programming_language_paradigm (AND (JOIN computer.programming_language_paradigm.languages (JOIN computer.programming_language.parent_language m.04kyw)) (JOIN (R computer.programming_language.language_paradigms) m.0_l9rcz)))", + "actions": [ + "get_relations(m.04kyw)", + "get_neighbors(m.04kyw,computer.programming_language.dialects)", + "get_relations(#0)", + "get_neighbors(#0,computer.programming_language.language_paradigms)", + "get_relations(m.0_l9rcz)", + "get_neighbors(m.0_l9rcz,computer.programming_language.language_paradigms)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.05prj", + "entity_name": "Object-oriented programming" + }, + { + "answer_type": "Entity", + "answer_argument": "m.02ykw", + "entity_name": "Functional programming" + } + ] + }, + { + "question": "which website that belongs to the category of lokl.com has web api of python?", + "qid": "4300801007000_grailqa", + "source": "grailqa", + "entities": { + "lokl.com": "m.05lq6cx", + "Python": "m.05z1_" + }, + "s_expression": "(AND internet.website (AND (JOIN (R internet.website_category.sites) (JOIN (R internet.website.category) m.05lq6cx)) (JOIN internet.website.api m.05z1_)))", + "actions": [ + "get_relations(m.05lq6cx)", + "get_neighbors(m.05lq6cx,internet.website.category)", + "get_relations(#0)", + "get_neighbors(#0,internet.website_category.sites)", + "get_relations(m.05z1_)", + "get_neighbors(m.05z1_,internet.api.site)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.04gd48j", + "entity_name": "StopFinder" + } + ] + }, + { + "question": "In which timezone is Texas, and near, Tulsa International Airport?", + "qid": "WebQTrn-1563_72ce675be82a5655a30547169d8008e9_cwq", + "source": "cwq", + "entities": { + "Texas": "m.07b_l", + "Tulsa International Airport": "m.01qgx3" + }, + "s_expression": "(AND (JOIN (R location.location.time_zones) m.07b_l) (JOIN time.time_zone.locations_in_this_time_zone (JOIN location.location.nearby_airports m.01qgx3)))", + "actions": [ + "get_relations(m.07b_l)", + "get_neighbors(m.07b_l,location.location.time_zones)", + "get_relations(m.01qgx3)", + "get_neighbors(m.01qgx3,aviation.airport.serves)", + "get_relations(#1)", + "get_neighbors(#1,location.location.time_zones)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.02fqwt", + "answer_type": "Entity", + "entity_name": "Central Time Zone" + } + ] + }, + { + "question": "japanese whisky blend single malt with grain whisky have how many types?", + "qid": "4302561005000_grailqa", + "source": "grailqa", + "entities": { + "Grain whisky": "m.041j_x", + "Japanese whisky": "m.0bqwqs", + "single malt": "m.01k5lq" + }, + "s_expression": "(COUNT (AND distilled_spirits.blended_spirit (AND (JOIN (R distilled_spirits.distilled_spirit_type.blends) m.041j_x) (AND (JOIN distilled_spirits.blended_spirit.style m.0bqwqs) (JOIN (R distilled_spirits.distilled_spirit_type.blends) m.01k5lq)))))", + "actions": [ + "get_relations(m.041j_x)", + "get_neighbors(m.041j_x,distilled_spirits.distilled_spirit_type.blends)", + "get_relations(m.0bqwqs)", + "get_neighbors(m.0bqwqs,distilled_spirits.blended_spirit_style.blends)", + "get_relations(m.01k5lq)", + "get_neighbors(m.01k5lq,distilled_spirits.distilled_spirit_type.blends)", + "intersection(#1,#2)", + "intersection(#0,#3)", + "count(#4)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "who made the discovery of both the o and some halogen element?", + "qid": "485000201_graphquestions", + "source": "graphquestions", + "entities": { + "o": "m.025s6bf", + "Halogen": "m.03gcp" + }, + "s_expression": "(AND chemistry.element_discoverer (AND (JOIN (R chemistry.chemical_element.discoverer) (JOIN (R chemistry.chemical_series.elements) m.03gcp)) (JOIN (R chemistry.chemical_element.discoverer) m.025s6bf)))", + "actions": [ + "get_relations(m.03gcp)", + "get_neighbors(m.03gcp,chemistry.chemical_series.elements)", + "get_relations(#0)", + "get_neighbors(#0,chemistry.chemical_element.discoverer)", + "get_relations(m.025s6bf)", + "get_neighbors(m.025s6bf,chemistry.chemical_element.discoverer)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.0g68n", + "entity_name": "Carl Wilhelm Scheele" + } + ] + }, + { + "question": "The Bahamas was where Emanuel Lasker was born, but what type of government do they have?", + "qid": "WebQTrn-1245_3ce332b703593e71708a5604865c5758_cwq", + "source": "cwq", + "entities": { + "Bahamas": "m.0160w", + "Emanuel Lasker": "m.01kfm7" + }, + "s_expression": "(AND (JOIN (R location.country.form_of_government) m.0160w) (JOIN government.form_of_government.countries (JOIN location.location.people_born_here m.01kfm7)))", + "actions": [ + "get_relations(m.0160w)", + "get_neighbors(m.0160w,location.country.form_of_government)", + "get_relations(m.01kfm7)", + "get_neighbors(m.01kfm7,people.person.place_of_birth)", + "get_relations(#1)", + "get_neighbors(#1,location.country.form_of_government)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.01q20", + "answer_type": "Entity", + "entity_name": "Constitutional monarchy" + } + ] + }, + { + "question": "the culex tarsalis transmits how many infectious diseases?", + "qid": "4303160007000_grailqa", + "source": "grailqa", + "entities": { + "Culex tarsalis": "m.0gfmf55" + }, + "s_expression": "(COUNT (AND medicine.infectious_disease (JOIN (R medicine.type_of_infectious_agent.diseases) (JOIN (R medicine.infectious_disease.infectious_agent_type) (JOIN (R medicine.vector_of_disease.disease) m.0gfmf55)))))", + "actions": [ + "get_relations(m.0gfmf55)", + "get_neighbors(m.0gfmf55,medicine.vector_of_disease.disease)", + "get_relations(#0)", + "get_neighbors(#0,medicine.infectious_disease.infectious_agent_type)", + "get_relations(#1)", + "get_neighbors(#1,medicine.type_of_infectious_agent.diseases)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "30" + } + ] + }, + { + "question": "what isos are currently supported by d40x cameras from unknown?", + "qid": "4304013004000_grailqa", + "source": "grailqa", + "entities": { + "d40x": "m.02pv_hy", + "Unknown": "m.01xrf_0" + }, + "s_expression": "(AND digicams.camera_iso (AND (JOIN digicams.camera_iso.cameras m.02pv_hy) (JOIN (R digicams.digital_camera.iso_setting) (JOIN (R digicams.camera_sensor_manufacturer.cameras) m.01xrf_0))))", + "actions": [ + "get_relations(m.02pv_hy)", + "get_neighbors(m.02pv_hy,digicams.digital_camera.iso_setting)", + "get_relations(m.01xrf_0)", + "get_neighbors(m.01xrf_0,digicams.camera_sensor_manufacturer.cameras)", + "get_relations(#1)", + "get_neighbors(#1,digicams.digital_camera.iso_setting)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01xrf_x", + "entity_name": "100" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrf_7", + "entity_name": "Auto" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrf_g", + "entity_name": "400" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrf_p", + "entity_name": "200" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrg51", + "entity_name": "1600" + }, + { + "answer_type": "Entity", + "answer_argument": "m.01xrg58", + "entity_name": "800" + } + ] + }, + { + "question": "what are the number of religious practices that practice hinduism and taoism?", + "qid": "3204573003000_grailqa", + "source": "grailqa", + "entities": { + "Hinduism": "m.03j6c", + "Taoism": "m.07gvx" + }, + "s_expression": "(COUNT (AND religion.religious_practice (AND (JOIN (R religion.religion.practices) m.03j6c) (JOIN (R religion.religion.practices) m.07gvx))))", + "actions": [ + "get_relations(m.03j6c)", + "get_neighbors(m.03j6c,religion.religion.practices)", + "get_relations(m.07gvx)", + "get_neighbors(m.07gvx,religion.religion.practices)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "1" + } + ] + }, + { + "question": "What kind of guitar is played by the lyracist who wrote Second Hand News?", + "qid": "WebQTrn-3122_2b191a52aba771c6c8ea676fadf7b51e_cwq", + "source": "cwq", + "entities": { + "Guitar": "m.0342h", + "Second Hand News": "m.0bb7st6" + }, + "s_expression": "(AND (JOIN (R music.group_member.instruments_played) (JOIN music.lyricist.lyrics_written m.0bb7st6)) (JOIN music.instrument.family m.0342h))", + "actions": [ + "get_relations(m.0bb7st6)", + "get_neighbors(m.0bb7st6,music.composition.lyricist)", + "get_relations(#0)", + "get_neighbors(#0,music.group_member.instruments_played)", + "get_relations(m.0342h)", + "get_neighbors(m.0342h,music.instrument.variation)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_argument": "m.018vs", + "answer_type": "Entity", + "entity_name": "Bass guitar" + } + ] + }, + { + "question": "In what stadium does the team who is owned by William DeWitt, Jr. play?", + "qid": "WebQTrn-2444_e5059ff268415917df330817b9c8ef8c_cwq", + "source": "cwq", + "entities": { + "William DeWitt, Jr.": "m.05qblx" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.arena_stadium) (JOIN sports.professional_sports_team.owner_s m.05qblx)) architecture.structure.opened)", + "actions": [ + "get_relations(m.05qblx)", + "get_neighbors(m.05qblx,sports.sports_team_owner.teams_owned)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.arena_stadium)", + "get_attributes(#1)", + "argmax(#1,architecture.structure.opened)" + ], + "answer": [ + { + "answer_argument": "m.06k1v5" + } + ] + }, + { + "question": "What is the name of the Facebook founder that was influenced by Jeff Bezos?", + "qid": "WebQTrn-1071_6ee3bfab441c52883f7bde45cbcb4612_cwq", + "source": "cwq", + "entities": { + "facebook": "m.0hmyfsv", + "Jeff Bezos": "m.011z69" + }, + "s_expression": "(AND (JOIN (R organization.organization.founders) m.0hmyfsv) (JOIN influence.influence_node.influenced (JOIN influence.influence_node.influenced_by m.011z69)))", + "actions": [ + "get_relations(m.0hmyfsv)", + "get_neighbors(m.0hmyfsv,organization.organization.founders)", + "get_relations(m.011z69)", + "get_neighbors(m.011z69,influence.influence_node.influenced)", + "get_relations(#1)", + "get_neighbors(#1,influence.influence_node.influenced_by)", + "intersection(#0,#2)" + ], + "answer": [ + { + "answer_argument": "m.086dny", + "answer_type": "Entity", + "entity_name": "Mark Zuckerberg" + } + ] + }, + { + "question": "hersbrucker and chinook use how many beer styles?", + "qid": "3202749007000_grailqa", + "source": "grailqa", + "entities": { + "Hersbrucker": "m.0115gwl7", + "Chinook": "m.0115gh_g" + }, + "s_expression": "(COUNT (AND base.lightweight.beer_style (AND (JOIN (R base.lightweight.beer_hop.beer_styles_used_in) m.0115gwl7) (JOIN (R base.lightweight.beer_hop.beer_styles_used_in) m.0115gh_g))))", + "actions": [ + "get_relations(m.0115gwl7)", + "get_neighbors(m.0115gwl7,base.lightweight.beer_hop.beer_styles_used_in)", + "get_relations(m.0115gh_g)", + "get_neighbors(m.0115gh_g,base.lightweight.beer_hop.beer_styles_used_in)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "2" + } + ] + }, + { + "question": "where is the version developed by first star software and distributed through virtual console released?", + "qid": "4301141025000_grailqa", + "source": "grailqa", + "entities": { + "Virtual Console": "m.07sg3j", + "First Star Software": "m.02pzfw" + }, + "s_expression": "(AND cvg.computer_game_region (JOIN (R cvg.game_version.regions) (AND (JOIN cvg.game_version.distributed_through m.07sg3j) (JOIN (R cvg.cvg_developer.game_versions_developed) m.02pzfw))))", + "actions": [ + "get_relations(m.07sg3j)", + "get_neighbors(m.07sg3j,cvg.computer_game_distribution_system.games_distributed)", + "get_relations(m.02pzfw)", + "get_neighbors(m.02pzfw,cvg.cvg_developer.game_versions_developed)", + "intersection(#0,#1)", + "get_relations(#2)", + "get_neighbors(#2,cvg.game_version.regions)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.09c7w0", + "entity_name": "United States of America" + } + ] + }, + { + "question": "there exists a musical release produced by angel in my heart and labelled virgin records, what is it?", + "qid": "4301990013000_grailqa", + "source": "grailqa", + "entities": { + "Angel in My Heart": "m.0mw22q", + "Virgin Records": "m.0n85g" + }, + "s_expression": "(AND music.release (AND (JOIN music.release.producers (JOIN (R music.recording.producer) m.0mw22q)) (JOIN music.release.label m.0n85g)))", + "actions": [ + "get_relations(m.0mw22q)", + "get_neighbors(m.0mw22q,music.recording.producer)", + "get_relations(#0)", + "get_neighbors(#0,music.producer.releases_produced)", + "get_relations(m.0n85g)", + "get_neighbors(m.0n85g,music.record_label.releases)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_type": "Entity", + "answer_argument": "m.01kf2vl", + "entity_name": "Northern Star" + } + ] + }, + { + "question": "in united states of america how many games published by electronic arts are available?", + "qid": "444000100_graphquestions", + "source": "graphquestions", + "entities": { + "Electronic Arts": "m.01n073", + "United States of America": "m.09c7w0" + }, + "s_expression": "(COUNT (AND cvg.game_version (AND (JOIN (R cvg.cvg_publisher.game_versions_published) m.01n073) (JOIN cvg.game_version.regions m.09c7w0))))", + "actions": [ + "get_relations(m.01n073)", + "get_neighbors(m.01n073,cvg.cvg_publisher.game_versions_published)", + "get_relations(m.09c7w0)", + "get_neighbors(m.09c7w0,cvg.computer_game_region.versions_released_in_this_region)", + "intersection(#0,#1)", + "count(#2)" + ], + "answer": [ + { + "answer_type": "Value", + "answer_argument": "5" + } + ] + }, + { + "question": "Where is the Busch Stadium arena?", + "qid": "WebQTrn-2444_f3c80ccd9895d93f017cd1f0d310d378_cwq", + "source": "cwq", + "entities": { + "Busch Stadium": "m.06k1v5" + }, + "s_expression": "(ARGMAX (JOIN (R sports.sports_team.arena_stadium) (JOIN sports.sports_team.arena_stadium m.06k1v5)) architecture.structure.opened)", + "actions": [ + "get_relations(m.06k1v5)", + "get_neighbors(m.06k1v5,sports.sports_facility.teams)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.arena_stadium)", + "get_attributes(#1)", + "argmax(#1,architecture.structure.opened)" + ], + "answer": [ + { + "answer_argument": "m.06k1v5" + } + ] + }, + { + "question": "Which suprbowls were won by an NFL team that played in the New York Metropolitan area?", + "qid": "WebQTrn-3290_a15467d9386227fe2f79084c647b588b_cwq", + "source": "cwq", + "entities": { + "suprbowls": "m.06x5s", + "New York metropolitan area": "m.01t12z" + }, + "s_expression": "(AND (JOIN (R sports.sports_team.championships) (JOIN sports.sports_team.location m.01t12z)) (JOIN sports.sports_championship_event.championship m.06x5s))", + "actions": [ + "get_relations(m.01t12z)", + "get_neighbors(m.01t12z,sports.sports_team_location.teams)", + "get_relations(#0)", + "get_neighbors(#0,sports.sports_team.championships)", + "get_relations(m.06x5s)", + "get_neighbors(m.06x5s,sports.sports_championship.events)", + "intersection(#1,#2)" + ], + "answer": [ + { + "answer_argument": "m.043t_rh", + "answer_type": "Entity", + "entity_name": "Super Bowl XLVI" + }, + { + "answer_argument": "m.04myq1", + "answer_type": "Entity", + "entity_name": "Super Bowl XLII" + }, + { + "answer_argument": "m.076sw", + "answer_type": "Entity", + "entity_name": "Super Bowl XXI" + }, + { + "answer_argument": "m.076v7", + "answer_type": "Entity", + "entity_name": "Super Bowl XXV" + } + ] + } +] \ No newline at end of file diff --git a/AgentBench.old/data/mind2web/prompt/llm_prompt.json b/AgentBench.old/data/mind2web/prompt/llm_prompt.json new file mode 100644 index 0000000..ca82796 --- /dev/null +++ b/AgentBench.old/data/mind2web/prompt/llm_prompt.json @@ -0,0 +1,30 @@ +[ + { + "role": "user", + "content": "'''\n
\n'''\n\nBased on the HTML webpage above, try to complete the following task:\nTask: Check for pickup restaurant available in Boston, NY on March 18, 5pm with just one guest\nPrevious actions:\nNone\nWhat should be the next action? Please select from the following choices (If the correct action is not in the page above, please select A. 'None of the above'):\n\nA. None of the above\nB.