combined_text
stringlengths
106
1.05k
###question:What was the score when they had 62 points?###answer:SELECT score FROM table_23453931_8 WHERE points = 62###context:CREATE TABLE table_23453931_8 (score VARCHAR, points VARCHAR)
###question:What team did the Maple Leafs score 9 points against?###answer:SELECT opponent FROM table_23453931_4 WHERE points = 9###context:CREATE TABLE table_23453931_4 (opponent VARCHAR, points VARCHAR)
###question:What time was achieved on Saturday 29th August by the rider who recorded 23' 18.82 97.102mph on Tuesday 25th August?###answer:SELECT sat_29_aug FROM table_23465864_4 WHERE tues_25_aug = "23' 18.82 97.102mph"###context:CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, tues_25_aug VARCHAR)
###question:What time was achieved on Saturday 29th August by the rider who recorded 24' 17.26 93.208mph on Monday 24th August?###answer:SELECT sat_29_aug FROM table_23465864_4 WHERE mon_24_aug = "24' 17.26 93.208mph"###context:CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, mon_24_aug VARCHAR)
###question:What time was achieved on Saturday 29th August by the rider who recorded 22' 54.20 98.842mph on Tuesday 25th August?###answer:SELECT sat_29_aug FROM table_23465864_4 WHERE tues_25_aug = "22' 54.20 98.842mph"###context:CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, tues_25_aug VARCHAR)
###question:What time was achieved on Saturday 29th August by the rider who recorded 25' 01.89 90.438mph on Friday 28th August?###answer:SELECT sat_29_aug FROM table_23465864_4 WHERE fri_28_aug = "25' 01.89 90.438mph"###context:CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, fri_28_aug VARCHAR)
###question:What was the event on Wed 26 Aug where rider is Andrew Farrell 400cc Kawasaki?###answer:SELECT wed_26_aug FROM table_23465864_6 WHERE rider = "Andrew Farrell 400cc Kawasaki"###context:CREATE TABLE table_23465864_6 (wed_26_aug VARCHAR, rider VARCHAR)
###question:What was the event on Thurs 27 Aug when Tues 25 Aug was 23' 00.59 98.384mph?###answer:SELECT thurs_27_aug FROM table_23465864_6 WHERE tues_25_aug = "23' 00.59 98.384mph"###context:CREATE TABLE table_23465864_6 (thurs_27_aug VARCHAR, tues_25_aug VARCHAR)
###question:What was the Tues 25 Aug time and speed when Mon 24 Aug was 22' 24.56 101.021mph?###answer:SELECT tues_25_aug FROM table_23465864_6 WHERE mon_24_aug = "22' 24.56 101.021mph"###context:CREATE TABLE table_23465864_6 (tues_25_aug VARCHAR, mon_24_aug VARCHAR)
###question:Who was the rider when Fri 28 Aug was 24' 23.36 92.820mph?###answer:SELECT rider FROM table_23465864_6 WHERE fri_28_aug = "24' 23.36 92.820mph"###context:CREATE TABLE table_23465864_6 (rider VARCHAR, fri_28_aug VARCHAR)
###question:Which opponent has 32194 as the attendance?###answer:SELECT opponent FROM table_23466021_4 WHERE attendance = 32194###context:CREATE TABLE table_23466021_4 (opponent VARCHAR, attendance VARCHAR)
###question:Which opponent has 36102 is the attendance?###answer:SELECT opponent FROM table_23466021_4 WHERE attendance = 36102###context:CREATE TABLE table_23466021_4 (opponent VARCHAR, attendance VARCHAR)
###question:What is the attendance?###answer:SELECT MAX(attendance) FROM table_23466021_4###context:CREATE TABLE table_23466021_4 (attendance INTEGER)
###question:What is the hometown of contestants who are from the province of Huesca?###answer:SELECT hometown FROM table_23476629_2 WHERE province = "Huesca"###context:CREATE TABLE table_23476629_2 (hometown VARCHAR, province VARCHAR)
###question:What is the height in inches of contestants who are from the province of La Rioja?###answer:SELECT height__in_ FROM table_23476629_2 WHERE province = "La Rioja"###context:CREATE TABLE table_23476629_2 (height__in_ VARCHAR, province VARCHAR)
###question:How many contestants of whatever age are there whose hometown of Andujar?###answer:SELECT COUNT(age) FROM table_23476629_2 WHERE hometown = "Andujar"###context:CREATE TABLE table_23476629_2 (age VARCHAR, hometown VARCHAR)
###question:What's the service number of the Jammu Duronto train? ###answer:SELECT MAX(service) FROM table_23477312_1 WHERE train_name = "Jammu Duronto"###context:CREATE TABLE table_23477312_1 (service INTEGER, train_name VARCHAR)
###question:What's the name of the train to Madurai Junction?###answer:SELECT train_name FROM table_23477312_1 WHERE destination = "Madurai Junction"###context:CREATE TABLE table_23477312_1 (train_name VARCHAR, destination VARCHAR)
###question:What's the service number of the Pune Duronto train that departures at 21:35?###answer:SELECT service FROM table_23477312_1 WHERE train_name = "Pune Duronto" AND departure = "21:35"###context:CREATE TABLE table_23477312_1 (service VARCHAR, train_name VARCHAR, departure VARCHAR)
###question:What's the name of the train that goes to Bhubaneswar?###answer:SELECT train_name FROM table_23477312_1 WHERE destination = "Bhubaneswar"###context:CREATE TABLE table_23477312_1 (train_name VARCHAR, destination VARCHAR)
###question:What is the record when the opposing team was the Pittsburgh Penguins?###answer:SELECT record FROM table_23486853_6 WHERE opponent = "Pittsburgh Penguins"###context:CREATE TABLE table_23486853_6 (record VARCHAR, opponent VARCHAR)
###question:What was the game number when the opposing team was the Buffalo Sabres?###answer:SELECT MIN(game) FROM table_23486853_6 WHERE opponent = "Buffalo Sabres"###context:CREATE TABLE table_23486853_6 (game INTEGER, opponent VARCHAR)
###question:Who directed episode no. 44 in the series?###answer:SELECT directed_by FROM table_234886_3 WHERE no_in_series = 44###context:CREATE TABLE table_234886_3 (directed_by VARCHAR, no_in_series VARCHAR)
###question:What is the number in the season of the episode with a production code of 2-05?###answer:SELECT COUNT(no_in_season) FROM table_234886_3 WHERE prod_code = "2-05"###context:CREATE TABLE table_234886_3 (no_in_season VARCHAR, prod_code VARCHAR)
###question:What is the title of the episode with the production code 2-19?###answer:SELECT title FROM table_234886_3 WHERE prod_code = "2-19"###context:CREATE TABLE table_234886_3 (title VARCHAR, prod_code VARCHAR)
###question:What is the total number of titles for the episode numbered 29 in the series?###answer:SELECT COUNT(title) FROM table_234886_3 WHERE no_in_series = 29###context:CREATE TABLE table_234886_3 (title VARCHAR, no_in_series VARCHAR)
###question:What was the name of the episode directed by Jessica Yu?###answer:SELECT title FROM table_23492454_1 WHERE directed_by = "Jessica Yu"###context:CREATE TABLE table_23492454_1 (title VARCHAR, directed_by VARCHAR)
###question:who directed the episode written by Shonda Rhimes?###answer:SELECT directed_by FROM table_23492454_1 WHERE written_by = "Shonda Rhimes"###context:CREATE TABLE table_23492454_1 (directed_by VARCHAR, written_by VARCHAR)
###question:How many episodes in the series are also episode 18 in the season?###answer:SELECT COUNT(no_in_series) FROM table_23492454_1 WHERE no_in_season = 18###context:CREATE TABLE table_23492454_1 (no_in_series VARCHAR, no_in_season VARCHAR)
###question:Who is every opponent on the date of March 16?###answer:SELECT opponent FROM table_23486853_8 WHERE date = "March 16"###context:CREATE TABLE table_23486853_8 (opponent VARCHAR, date VARCHAR)
###question:What is every score for the opponent of Atlanta Thrashers?###answer:SELECT score FROM table_23486853_8 WHERE opponent = "Atlanta Thrashers"###context:CREATE TABLE table_23486853_8 (score VARCHAR, opponent VARCHAR)
###question:What is every location for the date of March 20?###answer:SELECT location FROM table_23486853_8 WHERE date = "March 20"###context:CREATE TABLE table_23486853_8 (location VARCHAR, date VARCHAR)
###question:What is every score at the location of Verizon Center and points of 68?###answer:SELECT score FROM table_23486853_8 WHERE location = "Verizon Center" AND points = 68###context:CREATE TABLE table_23486853_8 (score VARCHAR, location VARCHAR, points VARCHAR)
###question:What is every date with a record of 30–34–12?###answer:SELECT date FROM table_23486853_8 WHERE record = "30–34–12"###context:CREATE TABLE table_23486853_8 (date VARCHAR, record VARCHAR)
###question:How many officers o/s were there on the day when the number of USAAF was 2373882?###answer:SELECT MAX(officers_o_s) FROM table_23508196_2 WHERE total_usaaf = 2373882###context:CREATE TABLE table_23508196_2 (officers_o_s INTEGER, total_usaaf VARCHAR)
###question:How many different numbers of Tot enlisted are there on the dates when the number of Enlisted o/s was 801471?###answer:SELECT COUNT(tot_enlisted) FROM table_23508196_2 WHERE enlisted_o_s = 801471###context:CREATE TABLE table_23508196_2 (tot_enlisted VARCHAR, enlisted_o_s VARCHAR)
###question:How many tot officers were there on the date when the number of tot enlisted was 329640?###answer:SELECT tot_officers FROM table_23508196_2 WHERE tot_enlisted = 329640###context:CREATE TABLE table_23508196_2 (tot_officers VARCHAR, tot_enlisted VARCHAR)
###question:How many Tot enlisted were there on the day when the number of total USAAF was 2329534?###answer:SELECT MAX(tot_enlisted) FROM table_23508196_2 WHERE total_usaaf = 2329534###context:CREATE TABLE table_23508196_2 (tot_enlisted INTEGER, total_usaaf VARCHAR)
###question:How many contestants where from mitteldeutschland?###answer:SELECT COUNT(age) FROM table_23495048_2 WHERE represent = "Mitteldeutschland"###context:CREATE TABLE table_23495048_2 (age VARCHAR, represent VARCHAR)
###question:How many meters tall is Ulrike Wolful?###answer:SELECT height__mtr_ FROM table_23495048_2 WHERE contestant = "Ulrike Wolful"###context:CREATE TABLE table_23495048_2 (height__mtr_ VARCHAR, contestant VARCHAR)
###question:Which country had a contestant that was 1.76 meters tall?###answer:SELECT represent FROM table_23495048_2 WHERE height__mtr_ = "1.76"###context:CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR)
###question:What country had a contestant that was 1.70 meters tall?###answer:SELECT represent FROM table_23495048_2 WHERE height__mtr_ = "1.70"###context:CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR)
###question:If seed number is 2, what is the maximum amount of points?###answer:SELECT MAX(points) FROM table_23501776_18 WHERE seed = 2###context:CREATE TABLE table_23501776_18 (points INTEGER, seed VARCHAR)
###question:If new points is 1720, what is the status?###answer:SELECT status FROM table_23501776_18 WHERE new_points = 1720###context:CREATE TABLE table_23501776_18 (status VARCHAR, new_points VARCHAR)
###question:Who is the winning party/coalition name in election year 1980?###answer:SELECT winning_party_coalition FROM table_23512864_4 WHERE election_year = 1980###context:CREATE TABLE table_23512864_4 (winning_party_coalition VARCHAR, election_year VARCHAR)
###question:If the speaker is Munu Adhi (2) K. Rajaram, what is the election year maximum?###answer:SELECT MAX(election_year) FROM table_23512864_4 WHERE speaker = "Munu Adhi (2) K. Rajaram"###context:CREATE TABLE table_23512864_4 (election_year INTEGER, speaker VARCHAR)
###question:If the speaker is R. Muthiah, what is the election year maximum?###answer:SELECT MAX(election_year) FROM table_23512864_4 WHERE speaker = "R. Muthiah"###context:CREATE TABLE table_23512864_4 (election_year INTEGER, speaker VARCHAR)
###question:What is the name of the speaker if the chief minister is M.G. Ramachandran?###answer:SELECT speaker FROM table_23512864_4 WHERE chief_minister = "M.G. Ramachandran"###context:CREATE TABLE table_23512864_4 (speaker VARCHAR, chief_minister VARCHAR)
###question:If the assembly is the sixth assembly, what is the maximum election year?###answer:SELECT MAX(election_year) FROM table_23512864_4 WHERE assembly = "Sixth assembly"###context:CREATE TABLE table_23512864_4 (election_year INTEGER, assembly VARCHAR)
###question:Name the number of crews for light bombardment group###answer:SELECT number_of_crews FROM table_23508196_5 WHERE type_of_unit = "Light bombardment group"###context:CREATE TABLE table_23508196_5 (number_of_crews VARCHAR, type_of_unit VARCHAR)
###question:What is the aircraft for 21 crews?###answer:SELECT type_of_aircraft FROM table_23508196_5 WHERE number_of_crews = "21"###context:CREATE TABLE table_23508196_5 (type_of_aircraft VARCHAR, number_of_crews VARCHAR)
###question:Nam ethe enlisted for troop carrier group###answer:SELECT enlisted FROM table_23508196_5 WHERE type_of_unit = "Troop carrier group"###context:CREATE TABLE table_23508196_5 (enlisted VARCHAR, type_of_unit VARCHAR)
###question:What was the title when 1.121 million US people watched it?###answer:SELECT title FROM table_23513241_5 WHERE us_viewers__millions_ = "1.121"###context:CREATE TABLE table_23513241_5 (title VARCHAR, us_viewers__millions_ VARCHAR)
###question:What is the lowest series episode with a production code of 406?###answer:SELECT MIN(series_episode) FROM table_23513241_5 WHERE prod_code = 406###context:CREATE TABLE table_23513241_5 (series_episode INTEGER, prod_code VARCHAR)
###question:List the title of series episode 38.###answer:SELECT title FROM table_23513241_5 WHERE series_episode = 38###context:CREATE TABLE table_23513241_5 (title VARCHAR, series_episode VARCHAR)
###question:What type of formula did Stirling Moss drive?###answer:SELECT formula FROM table_23548160_1 WHERE driver = "Stirling Moss"###context:CREATE TABLE table_23548160_1 (formula VARCHAR, driver VARCHAR)
###question:What year did Randy Lewis drive?###answer:SELECT year FROM table_23548160_1 WHERE driver = "Randy Lewis"###context:CREATE TABLE table_23548160_1 (year VARCHAR, driver VARCHAR)
###question:What was the constructor in 1975?###answer:SELECT constructor FROM table_23548160_1 WHERE year = 1975###context:CREATE TABLE table_23548160_1 (constructor VARCHAR, year VARCHAR)
###question:If the market name is Xperia U, what is the weight?###answer:SELECT weight FROM table WHERE market_name = "Xperia U"###context:CREATE TABLE table (weight VARCHAR, market_name VARCHAR)
###question:What is the release date if the code name is Aoba?###answer:SELECT release_date FROM table WHERE code_name = "Aoba"###context:CREATE TABLE table (release_date VARCHAR, code_name VARCHAR)
###question:If the weight is 126g and the NFC is yes, what is the battery (MAH)?###answer:SELECT battery___mah__ FROM table WHERE nfc = "Yes" AND weight = "126g"###context:CREATE TABLE table (battery___mah__ VARCHAR, nfc VARCHAR, weight VARCHAR)
###question:What is the platform if the weight is 131.5g?###answer:SELECT platform FROM table WHERE weight = "131.5g"###context:CREATE TABLE table (platform VARCHAR, weight VARCHAR)
###question:What is the Android version is the code name is Lotus?###answer:SELECT android_version FROM table WHERE code_name = "Lotus"###context:CREATE TABLE table (android_version VARCHAR, code_name VARCHAR)
###question:When middle assyrian empire is the ubaid period in mesopotamia what is the copper age?###answer:SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Middle Assyrian Empire"###context:CREATE TABLE table_23537091_1 (copper_age VARCHAR, ubaid_period_in_mesopotamia VARCHAR)
###question:When hittite old kingdom , minoan eruption is the ubaid period in mesopotamia what is the copper age?###answer:SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Hittite Old Kingdom , Minoan eruption"###context:CREATE TABLE table_23537091_1 (copper_age VARCHAR, ubaid_period_in_mes...
###question:When hittite middle kingdom , new kingdom of egypt is the ubaid period in mesopotamia how many early chalcolithics are there?###answer:SELECT COUNT(early_chalcolithic) FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Hittite Middle Kingdom , New Kingdom of Egypt"###context:CREATE TABLE table_23537...
###question:When the second intermediate period of egypt is the ubaid period in mesopotamia how many early calcolithics are there?###answer:SELECT COUNT(early_chalcolithic) FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Second Intermediate Period of Egypt"###context:CREATE TABLE table_23537091_1 (early_cha...
###question:What was the score against Loic Didavi?###answer:SELECT result FROM table_23563375_11 WHERE opponent = "Loic Didavi"###context:CREATE TABLE table_23563375_11 (result VARCHAR, opponent VARCHAR)
###question:Who was played against when there was a loss and in the gi po round?###answer:SELECT against FROM table_23563375_11 WHERE w_l = "Loss" AND round = "GI PO"###context:CREATE TABLE table_23563375_11 (against VARCHAR, w_l VARCHAR, round VARCHAR)
###question:What were the w/l when the final score was 2–6, 5–7, 7–6 (11–9) , 1–6?###answer:SELECT w_l FROM table_23563375_11 WHERE result = "2–6, 5–7, 7–6 (11–9) , 1–6"###context:CREATE TABLE table_23563375_11 (w_l VARCHAR, result VARCHAR)
###question:When Cleveland was 2nd, great lakes in the regular season what did they get to in the playoffs?###answer:SELECT playoffs FROM table_2357201_1 WHERE regular_season = "2nd, Great Lakes"###context:CREATE TABLE table_2357201_1 (playoffs VARCHAR, regular_season VARCHAR)
###question:What is the lowest numbered division Cleveland played in? ###answer:SELECT MIN(division) FROM table_2357201_1###context:CREATE TABLE table_2357201_1 (division INTEGER)
###question:How did Cleveland do in the regular season in 2006?###answer:SELECT regular_season FROM table_2357201_1 WHERE year = 2006###context:CREATE TABLE table_2357201_1 (regular_season VARCHAR, year VARCHAR)
###question:How did Cleveland do in the Open Cup in 2009?###answer:SELECT open_cup FROM table_2357201_1 WHERE year = 2009###context:CREATE TABLE table_2357201_1 (open_cup VARCHAR, year VARCHAR)
###question:When victoria coren and rhod gilbert are both on the lees team what is the score?###answer:SELECT scores FROM table_23575917_6 WHERE lees_team = "Victoria Coren and Rhod Gilbert"###context:CREATE TABLE table_23575917_6 (scores VARCHAR, lees_team VARCHAR)
###question:When david o'doherty and katherine parkinson are both on the davids team when is the first broadcast?###answer:SELECT first_broadcast FROM table_23575917_6 WHERE davids_team = "David O'Doherty and Katherine Parkinson"###context:CREATE TABLE table_23575917_6 (first_broadcast VARCHAR, davids_team VARCHAR)
###question:When bill oddie and frank skinner are both on the davids team what is the episode?###answer:SELECT episode FROM table_23575917_6 WHERE davids_team = "Bill Oddie and Frank Skinner"###context:CREATE TABLE table_23575917_6 (episode VARCHAR, davids_team VARCHAR)
###question:When kevin bridges and katy wix are both on the less team what is the score?###answer:SELECT scores FROM table_23575917_6 WHERE lees_team = "Kevin Bridges and Katy Wix"###context:CREATE TABLE table_23575917_6 (scores VARCHAR, lees_team VARCHAR)
###question:How many shows did team David consist of vernon kay and dara Γ³ briain###answer:SELECT COUNT(episode) FROM table_23575917_8 WHERE davids_team = "Vernon Kay and Dara Γ“ Briain"###context:CREATE TABLE table_23575917_8 (episode VARCHAR, davids_team VARCHAR)
###question:If the hometown is Windhoek, what is the represented?###answer:SELECT represented FROM table_23576576_2 WHERE hometown = "Windhoek"###context:CREATE TABLE table_23576576_2 (represented VARCHAR, hometown VARCHAR)
###question:If the hometown is Omuthiya, what is the contestant name?###answer:SELECT contestant FROM table_23576576_2 WHERE hometown = "Omuthiya"###context:CREATE TABLE table_23576576_2 (contestant VARCHAR, hometown VARCHAR)
###question:What is the height in inches if the represented is Erongo?###answer:SELECT height__in_ FROM table_23576576_2 WHERE represented = "Erongo"###context:CREATE TABLE table_23576576_2 (height__in_ VARCHAR, represented VARCHAR)
###question:What week did September 29 fall in?###answer:SELECT COUNT(week) FROM table_23601267_2 WHERE date = "September 29"###context:CREATE TABLE table_23601267_2 (week VARCHAR, date VARCHAR)
###question:What was the score on the October 28 game?###answer:SELECT final_score FROM table_23601267_2 WHERE date = "October 28"###context:CREATE TABLE table_23601267_2 (final_score VARCHAR, date VARCHAR)
###question:What was the score on September 20?###answer:SELECT final_score FROM table_23601267_2 WHERE date = "September 20"###context:CREATE TABLE table_23601267_2 (final_score VARCHAR, date VARCHAR)
###question:What's Blanco Encalada's main artillery?###answer:SELECT main_artillery FROM table_23614702_1 WHERE warship = "Blanco Encalada"###context:CREATE TABLE table_23614702_1 (main_artillery VARCHAR, warship VARCHAR)
###question:How many different horse-powers does the Cochrane have?###answer:SELECT COUNT(horse__power) FROM table_23614702_1 WHERE warship = "Cochrane"###context:CREATE TABLE table_23614702_1 (horse__power VARCHAR, warship VARCHAR)
###question:What warship has horse-power of 1500?###answer:SELECT warship FROM table_23614702_1 WHERE horse__power = 1500###context:CREATE TABLE table_23614702_1 (warship VARCHAR, horse__power VARCHAR)
###question:How much does the Independencia weight?###answer:SELECT MIN(tons___lton__) FROM table_23614702_1 WHERE warship = "Independencia"###context:CREATE TABLE table_23614702_1 (tons___lton__ INTEGER, warship VARCHAR)
###question:In how many different years was the warship that weights 1130 tons built?###answer:SELECT COUNT(built_year) FROM table_23614702_1 WHERE tons___lton__ = 1130###context:CREATE TABLE table_23614702_1 (built_year VARCHAR, tons___lton__ VARCHAR)
###question:What is every value for % 20-39 if % 60-74 is 10,46%?###answer:SELECT _percentage_20_39 FROM table_23606500_4 WHERE _percentage_60_74 = "10,46%"###context:CREATE TABLE table_23606500_4 (_percentage_20_39 VARCHAR, _percentage_60_74 VARCHAR)
###question:What is every value for % 40-59 if % 60-74 is 12,42%?###answer:SELECT _percentage_40_59 FROM table_23606500_4 WHERE _percentage_60_74 = "12,42%"###context:CREATE TABLE table_23606500_4 (_percentage_40_59 VARCHAR, _percentage_60_74 VARCHAR)
###question:What is every value for % 20-39 if % 0-19 is 21,11%?###answer:SELECT _percentage_20_39 FROM table_23606500_4 WHERE _percentage_0_19 = "21,11%"###context:CREATE TABLE table_23606500_4 (_percentage_20_39 VARCHAR, _percentage_0_19 VARCHAR)
###question:What is every value for % 40-59 if % 60-74 is 12,40%?###answer:SELECT _percentage_40_59 FROM table_23606500_4 WHERE _percentage_60_74 = "12,40%"###context:CREATE TABLE table_23606500_4 (_percentage_40_59 VARCHAR, _percentage_60_74 VARCHAR)
###question:How man horse power did the ship covadonga have?###answer:SELECT horse__power FROM table_23614702_2 WHERE warship = "Covadonga"###context:CREATE TABLE table_23614702_2 (horse__power VARCHAR, warship VARCHAR)
###question:What is the primary artillery for the 1,051 ships?###answer:SELECT main_artillery FROM table_23614702_2 WHERE tons___lton__ = "1,051"###context:CREATE TABLE table_23614702_2 (main_artillery VARCHAR, tons___lton__ VARCHAR)
###question:List the maximum speed for the 1.150 ton ships?###answer:SELECT speed___knots__ FROM table_23614702_2 WHERE tons___lton__ = "1.150"###context:CREATE TABLE table_23614702_2 (speed___knots__ VARCHAR, tons___lton__ VARCHAR)
###question:List the ship with 1x115-2x70-2x12-pounders for primary artillery.###answer:SELECT warship FROM table_23614702_2 WHERE main_artillery = "1x115-2x70-2x12-pounders"###context:CREATE TABLE table_23614702_2 (warship VARCHAR, main_artillery VARCHAR)
###question:Which location has the date of October 28?###answer:SELECT location FROM table_23612439_2 WHERE date = "October 28"###context:CREATE TABLE table_23612439_2 (location VARCHAR, date VARCHAR)
###question:What is the final score when 22210 is the attendance?###answer:SELECT final_score FROM table_23612439_2 WHERE attendance = 22210###context:CREATE TABLE table_23612439_2 (final_score VARCHAR, attendance VARCHAR)